diff --git a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue index 1d54e3fdc..4ab746639 100644 --- a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue @@ -233,20 +233,20 @@ label="标准号/政策号" width="170" align="center"> - - {{ scope.row.standNumSplit }} - {{ scope.row.showNumber }} - + + + + - - {{ scope.row.standNameSplit }} - {{ scope.row.standName }} - + + + + @@ -287,20 +287,20 @@ label="标准号/政策号" width="170" align="center"> - - {{ scope.row.standNumSplit }} - {{ scope.row.showNumber }} - + + + + - - {{ scope.row.standNameSplit }} - {{ scope.row.standName }} - + + + + @@ -374,7 +374,7 @@ page: 1, pageSize: this.$store.getters.userInfo.configContent, result: '1', - sarType: 'INLAND' + standType: 'INLAND' }, spinShow: false, standInfoList: [], @@ -513,15 +513,17 @@ for (let i = 0; i < this.selectedList.length; i++) { bringData.push(deposit.get(this.selectedList[i])); } - if (bringData[0].splitStatus === '0') { - this.form.itemsNum = bringData[0].standNumSplit - this.form.itemsName = bringData[0].standNameSplit - } else { - this.form.itemsNum = bringData[0].showNumber - this.form.itemsName = bringData[0].standName - } + this.form.itemsNum = bringData[0].showNumber + this.form.itemsName = bringData[0].standName + // if (bringData[0].splitStatus === '0') { + // this.form.itemsNum = bringData[0].standNumSplit + // this.form.itemsName = bringData[0].standNameSplit + // } else { + // this.form.itemsNum = bringData[0].showNumber + // this.form.itemsName = bringData[0].standName + // } this.form.standId = bringData[0].id - this.sarType = bringData[0].sarType + this.sarType = bringData[0].standType this.standId = bringData[0].standId this.listModel = false; this.listModel2 = true @@ -560,13 +562,15 @@ for (let i = 0; i < this.selectedList2.length; i++) { bringData.push(deposit.get(this.selectedList2[i])); } - if (bringData[0].splitStatus === '0') { - this.form.itemsNum1 = bringData[0].standNumSplit - this.form.itemsName1 = bringData[0].standNameSplit - } else { - this.form.itemsNum1 = bringData[0].showNumber - this.form.itemsName1 = bringData[0].standName - } + // if (bringData[0].splitStatus === '0') { + // this.form.itemsNum1 = bringData[0].standNumSplit + // this.form.itemsName1 = bringData[0].standNameSplit + // } else { + // this.form.itemsNum1 = bringData[0].showNumber + // this.form.itemsName1 = bringData[0].standName + // } + this.form.itemsNum1 = bringData[0].showNumber + this.form.itemsName1 = bringData[0].standName this.form.oldNumber = bringData[0].id this.listModel2 = false } else if (this.selectedList2.length > 1) { diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue index 73e8b0114..fd24218c6 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue @@ -1607,14 +1607,14 @@ const json = Object.assign(bringData, bringData.attrInfoCaseMap); this.form = JSON.parse(JSON.stringify(json)) console.log(json,'AAAAAAA') - this.form.qcdw = JSON.parse(JSON.stringify(json)).qcdw ? JSON.parse(JSON.stringify(json)).qcdw.split(',') : [] - this.form.wssmr = JSON.parse(JSON.stringify(json)).wssmr ? JSON.parse(JSON.stringify(json)).wssmr.split(',') : [] - this.form.zrgcs = JSON.parse(JSON.stringify(json)).zrgcs ? JSON.parse(JSON.stringify(json)).zrgcs.split(',') : [] - this.form.zrbm = JSON.parse(JSON.stringify(json)).zrbm ? JSON.parse(JSON.stringify(json)).zrbm.split(',') : [] - this.form.syrz = JSON.parse(JSON.stringify(json)).syrz ? JSON.parse(JSON.stringify(json)).syrz.split(',') : [] - this.form.sycpx = JSON.parse(JSON.stringify(json)).sycpx ? JSON.parse(JSON.stringify(json)).sycpx.split(',') : [] - this.form.nylx = JSON.parse(JSON.stringify(json)).nylx ? JSON.parse(JSON.stringify(json)).nylx.split(',') : [] - this.form.cllx = JSON.parse(JSON.stringify(json)).cllx ? JSON.parse(JSON.stringify(json)).cllx.split(',') : [] + this.form.qcdw = JSON.parse(JSON.stringify(json)).qcdw && JSON.parse(JSON.stringify(json)).qcdw !== '[]' ? JSON.parse(JSON.stringify(json)).qcdw.split(',') : [] + this.form.wssmr = JSON.parse(JSON.stringify(json)).wssmr && JSON.parse(JSON.stringify(json)).wssmr !== '[]' ? JSON.parse(JSON.stringify(json)).wssmr.split(',') : [] + this.form.zrgcs = JSON.parse(JSON.stringify(json)).zrgcs && JSON.parse(JSON.stringify(json)).zrgcs !== '[]' ? JSON.parse(JSON.stringify(json)).zrgcs.split(',') : [] + this.form.zrbm = JSON.parse(JSON.stringify(json)).zrbm && JSON.parse(JSON.stringify(json)).zrbm !== '[]' ? JSON.parse(JSON.stringify(json)).zrbm.split(',') : [] + this.form.syrz = JSON.parse(JSON.stringify(json)).syrz && JSON.parse(JSON.stringify(json)).syrz !== '[]' ? JSON.parse(JSON.stringify(json)).syrz.split(',') : [] + this.form.sycpx = JSON.parse(JSON.stringify(json)).sycpx && JSON.parse(JSON.stringify(json)).sycpx !== '[]' ? JSON.parse(JSON.stringify(json)).sycpx.split(',') : [] + this.form.nylx = JSON.parse(JSON.stringify(json)).nylx && JSON.parse(JSON.stringify(json)).nylx !== '[]' ? JSON.parse(JSON.stringify(json)).nylx.split(',') : [] + this.form.cllx = JSON.parse(JSON.stringify(json)).cllx && JSON.parse(JSON.stringify(json)).cllx !== '[]' ? JSON.parse(JSON.stringify(json)).cllx.split(',') : [] this.defaultCheckedKeys = [this.form.standSystem]; this.defaultCheckedKeys1 = [this.form.cycvppsbm]; this.defaultCheckedKeys2 = [this.form.kccvppsbm]; diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue index 7c849de38..28fbcddac 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue @@ -666,13 +666,13 @@ - - - + + + + + + + {{'手动查找'}} - - - {{'手动查找'}} - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index e2efd0482..f14971026 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -4090,7 +4090,7 @@ export default { // 取最外层目录id search.menuId = this.selectSarMenu.id search.idlist = [] - search.sarType = 'INLAND' + search.standType = 'INLAND' if (flag === 1) { this.$confirm('确定移除该条标准?', '提示', { confirmButtonText: '确定', diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index e145d5c08..ee0c6fc78 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -3672,7 +3672,7 @@ export default { // 取最外层目录id search.menuId = this.selectSarMenu.id search.idlist = [] - search.sarType = 'FOREIGN' + search.standType = 'FOREIGN' if (flag === 1) { this.$confirm('确定移除该条标准?', '提示', { confirmButtonText: '确定', diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue index 2e94c804e..c6b031fc6 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue @@ -60,7 +60,7 @@ @@ -580,7 +580,7 @@ export default { this.active = -1 } } - // 考虑如果没有当前时间, 颜色怎么设置 + // 考虑如果没有当前时间,颜色怎么设置 }) this.selectTableDataList() }, @@ -611,8 +611,8 @@ export default { } const exportURL = interfaceUrl + 'sarStandProjectLibrary/exportStandAttrInfoExcel?' + 'exportType' + this.saveExportType + '&ids=' + ids + '&exportName=' + this.exportName + '&id=' + this.localProEO.id - console.log(exportURL) - window.open(exportURL) + console.log(exportURL,'_self') + window.open(exportURL,'_self') this.$message.success('导出信息成功') } } else if (this.saveExportType === 'all') { @@ -629,8 +629,8 @@ export default { } const exportURL = interfaceUrl + 'sarStandProjectLibrary/exportStandAttrInfoExcel?' + 'exportType' + this.saveExportType + '&ids=' + ids + '&exportName=' + this.exportName + '&id=' + this.localProEO.id - console.log(exportURL) - window.open(exportURL) + console.log(exportURL,'_self') + window.open(exportURL,'_self') this.$message.success('导出信息成功') } } diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue index 0dfe97778..9bab53613 100644 --- a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue +++ b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue @@ -119,7 +119,7 @@ align="center"> @@ -128,7 +128,7 @@ - {{ scope.row.standId }} + {{ scope.row.standSerialNumber }} - {{ scope.row.standName }} + {{ scope.row.standName }}