diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index 45c74f610..a88f1d77d 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -19,7 +19,7 @@ 更新记录 标准问答 - 标准分解单 + 标准分解单
@@ -335,7 +335,7 @@ :loading="searching" icon="el-icon-search" type="primary" - round + size="mini" class="common-button-primary" @click="searchSarStandItems"> @@ -345,28 +345,17 @@ class="common-button-default" icon="el-icon-refresh-left" @click="clearAllSearch" - round> + size="mini">
- - - - - - - - - - - 导出 - 新增 批量删除
@@ -798,7 +787,7 @@ @@ -838,23 +827,19 @@ icon="el-icon-search" type="primary" class="common-button-primary" - round + size="mini" @click="getComparison()"> - 新增 + 新增
- - - -
@@ -909,7 +894,7 @@

数据获取中 @@ -933,8 +918,8 @@ > @@ -2217,7 +2202,7 @@ export default { confirmButtonText: '确定', confirmButtonClass: 'common-button-primary', cancelButtonText: '取消', - roundButton: true, + roundButton: false, type: 'warning' }).then(() => { if (this.selectedItemList != null && this.selectedItemList.length > 0) { @@ -2243,7 +2228,7 @@ export default { cancelButtonText: '取消', type: 'warning', confirmButtonClass: 'common-button-primary', - roundButton: true + roundButton: false }).then(() => { this.$http.post('lawss/sarStandItems/deleteStandItem', { id: ids, @@ -2387,7 +2372,7 @@ export default { */ getAddFormFieldList (isEdit) { return new Promise((resolve, reject) => { - this.$http.get('sarStandAttrDetails/sar-stand-attr-details/list', {}, {_this: this}, + this.$http.get('lawss/sarStandAttrDetails/list', {}, {_this: this}, res => { if (res.ok) { // const { data: { STAND: data } } = res diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index 039fe35a5..bda33b3c6 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -2305,7 +2305,7 @@ export default { } else { this.importModalshowflag = true this.showUploadlist = true - this.importExcelUrl = '/api/lawss/sarStandardsInfo/importZipStandardsInfo?standType=INLAND&menuId=' + menuId + this.importExcelUrl = '/api/sarStandardsInfo/sar-standards-info/importZipStandardsInfo?standType=INLAND&menuId=' + menuId } } else { this.importModalshowflag = true @@ -3582,8 +3582,7 @@ export default { }, async mounted () { // 进入页面后查询树形结构目录 - // await this.selectMenu() - + await this.selectMenu() this.treeReload = true // 从数据库中查询各下拉框数据 this.$http.get('sys/dictype/getDicTypeListCode', '', { diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index c05fe805c..c40f1b57e 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -236,6 +236,69 @@ 提交 + +
+ + + + + + + + + + + + + + + + + {{ opt.label}} + + + + + + + + + + + + + + + + + + {{ opt.label}} + + + + +
+
{ - this.$http.get('sarMenu/sar-menu/selectMenuByRole', {sorDivide: 'FOREIGN_STAND'}, { + this.$http.get('lawss/sarMenu/selectMenuByRole', {sorDivide: 'FOREIGN_STAND'}, { _this: this }, res => { let treeNode = [] @@ -1924,8 +2009,11 @@ export default { exportTestItem () { if (this.saveExportType === 'apart') { if (this.selectedList != null && this.selectedList !== '') { - window.open('/api/lawss/sarStandardsInfo/exportStandardsInfoExcel?exportType=' + this.saveExportType + '&exportContent=' + this.selectedList.join(',') + '&exportName=' + this.exportName + '&standType=' + this.standType) + const exportURL = interfaceUrl + 'sarStandardsInfo/sar-standards-info/exportStandardsInfoExcel?' + + 'exportType' + this.saveExportType + '&exportContent=' + this.selectedList.join(',') + '&exportName=' + this.exportName + '&standType=' + this.standType + window.open(exportURL) this.$message.success('导出信息成功') + } } else if (this.saveExportType === 'all') { let exportEOStr = JSON.stringify(this.SarExportSearchEo) @@ -2067,7 +2155,7 @@ export default { type: 'warning', roundButton: false }).then(() => { - this.$http.post('lawss/sarStandardsInfo/deleteSarStandards', {ids: itemid}, { + this.$http.post('sarStandardsInfo/sar-standards-info/deleteSarStandards', {ids: itemid}, { _this: this, loading: 'delLoading' }, res => { @@ -2099,7 +2187,7 @@ export default { roundButton: false, type: 'warning' }).then(() => { - this.$http.post('lawss/sarStandardsInfo/deleteSarStandards', {ids: this.selectedList.join(',')}, { + this.$http.post('sarStandardsInfo/sar-standards-info/deleteSarStandards', {ids: this.selectedList.join(',')}, { _this: this }, res => { this.getDomesticStandardTable(this.tableFlag) @@ -2116,7 +2204,7 @@ export default { }, // 模板下载 uploadImportModal (flag) { - window.open('/api/lawss/sarStandardsInfo/exportTemplate?standType=FOREIGN') + window.open('/api/sarStandardsInfo/sar-standards-info/exportTemplate?standType=FOREIGN') // if (flag === 1) { // } else { // window.open('/api/lawss/sarStandardsInfo/exportTemplate?fileName=标准条目导入模板.xlsx') @@ -2163,7 +2251,7 @@ export default { validateStandNumber (standInfo) { return new Promise((resolve, reject) => { let obj = JSON.parse(JSON.stringify(standInfo)) - this.$http.post('lawss/sarStandardsInfo/validateStandNumber', obj, { + this.$http.post('sarStandardsInfo/sar-standards-info/validateStandNumber', obj, { _this: this }, res => { if (res.ok) { @@ -3678,4 +3766,23 @@ export default { ::v-deep .el-drawer{ outline: none!important; } +.label-input-form { + &.table-lattice{ + /deep/.el-form-item__label { + width:100px; + height:30px; + border: 1px solid #DCDFE6; + border-right: none; + line-height:30px; + text-align: center; + margin-top: 6px; + background: #F9F9F9; + } + /deep/.el-input__inner { + height: 30px; + line-height: 30px; + border-radius: 0 !important; + } + } +}