From ada877c31c2a8cf0c16222a03fdd45e6e60f6cee Mon Sep 17 00:00:00 2001 From: zyn Date: Thu, 12 Jan 2023 16:51:35 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E4=BA=A7=E5=93=81=E6=A0=87=E5=87=86?= =?UTF-8?q?=E6=B5=81=E7=A8=8B-=E4=BC=81=E4=B8=9A=E6=A0=87=E5=87=86?= =?UTF-8?q?=E5=8F=B7=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/qbrk-product/step13.vue | 10 +++++----- .../pages/creatProcess/qbrk-product/step3.vue | 10 +++++----- .../pages/creatProcess/qbrk-product/step6.vue | 10 +++++----- .../pages/creatProcess/qbrk-product/stepC3.vue | 10 +++++----- .../pages/creatProcess/qbrk-product/stepC6.vue | 10 +++++----- 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue index 323d3fb99..e9b75c5ea 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue @@ -2720,17 +2720,17 @@ if(this.form.standStatus === '2'){ this.form.id = "" this.formKey++ - this.form.standSn = this.form.standNum - this.form.standNumber = this.form.standNum + this.form.standSn = this.form.standNum? this.form.standNum : this.form.standNumber + this.form.standNumber = this.form.standNum? this.form.standNum : this.form.standNumber this.form.standYear = year //此处因企标编号中带有空格所以此处不再补充添加空格,如果企标编码中没有空格则补充空格 但是产品标准除外 let judgeFn = new RegExp(/\s+/g); if(judgeFn.test(this.form.standSort)){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else if(this.form.standSort === 'Q/QCBFC'){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else { - this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + ' ' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) } this.formKey++ }else if(this.form.standStatus === '1' ){ diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step3.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step3.vue index 267666c86..41e302f3e 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step3.vue @@ -1138,17 +1138,17 @@ if(this.form.standStatus === '2'){ this.form.id = "" this.formKey++ - this.form.standSn = this.form.standNum - this.form.standNumber = this.form.standNum + this.form.standSn = this.form.standNum ? this.form.standNum : this.form.standNumber + this.form.standNumber = this.form.standNum ? this.form.standNum : this.form.standNumber this.form.standYear = year //此处因企标编号中带有空格所以此处不再补充添加空格,如果企标编码中没有空格则补充空格 但是产品标准除外 var judgeFn = new RegExp(/\s+/g); if(judgeFn.test(this.form.standSort)){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else if(this.form.standSort === 'Q/QCBFC'){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else { - this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + ' ' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) } this.formKey++ }else if(this.form.standStatus === '1' ){ diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step6.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step6.vue index c18f5b8a7..2e9cad37b 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step6.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step6.vue @@ -1216,17 +1216,17 @@ if(this.form.standStatus === '2'){ this.form.id = "" this.formKey++ - this.form.standSn = this.form.standNum - this.form.standNumber = this.form.standNum + this.form.standSn = this.form.standNum ? this.form.standNum : this.form.standNumber + this.form.standNumber = this.form.standNum ? this.form.standNum : this.form.standNumber this.form.standYear = year //此处因企标编号中带有空格所以此处不再补充添加空格,如果企标编码中没有空格则补充空格 但是产品标准除外 var judgeFn = new RegExp(/\s+/g); if(judgeFn.test(this.form.standSort)){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else if(this.form.standSort === 'Q/QCBFC'){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else { - this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + ' ' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) } this.formKey++ }else if(this.form.standStatus === '1' ){ diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC3.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC3.vue index 25dddc583..5b51b158a 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC3.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC3.vue @@ -1138,17 +1138,17 @@ if(this.form.standStatus === '2'){ this.form.id = "" this.formKey++ - this.form.standSn = this.form.standNum - this.form.standNumber = this.form.standNum + this.form.standSn = this.form.standNum? this.form.standNum : this.form.standNumber + this.form.standNumber = this.form.standNum? this.form.standNum : this.form.standNumber this.form.standYear = year //此处因企标编号中带有空格所以此处不再补充添加空格,如果企标编码中没有空格则补充空格 但是产品标准除外 var judgeFn = new RegExp(/\s+/g); if(judgeFn.test(this.form.standSort)){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else if(this.form.standSort === 'Q/QCBFC'){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else { - this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + ' ' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) } this.formKey++ }else if(this.form.standStatus === '1' ){ diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC6.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC6.vue index e70bc8a2f..4d0d4c99d 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC6.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/stepC6.vue @@ -1226,17 +1226,17 @@ if(this.form.standStatus === '2'){ this.form.id = "" this.formKey++ - this.form.standSn = this.form.standNum - this.form.standNumber = this.form.standNum + this.form.standSn = this.form.standNum ? this.form.standNum : this.form.standNumber + this.form.standNumber = this.form.standNum ? this.form.standNum : this.form.standNumber this.form.standYear = year //此处因企标编号中带有空格所以此处不再补充添加空格,如果企标编码中没有空格则补充空格 但是产品标准除外 var judgeFn = new RegExp(/\s+/g); if(judgeFn.test(this.form.standSort)){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else if(this.form.standSort === 'Q/QCBFC'){ - this.form.standCode = this.form.standSort + '' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + '' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) }else { - this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) + this.form.standCode = this.form.standSort + ' ' + (this.form.standNum ? this.form.standNum : this.form.standNumber) + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) } this.formKey++ }else if(this.form.standStatus === '1' ){ From 9f2441a8c6c4a22f87b7f93541a2ffd6a6580f0b Mon Sep 17 00:00:00 2001 From: zyn Date: Thu, 12 Jan 2023 17:27:05 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BA=A7=E5=93=81=E6=A0=87=E5=87=86?= =?UTF-8?q?=E6=B5=81=E7=A8=8B-=E5=BE=81=E6=B1=82=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E8=8A=82=E7=82=B9-=E6=B2=A1=E6=9C=89=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E5=BC=B9=E5=87=BA=E6=8F=90=E7=A4=BA=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/qbrk-product/step5.vue | 153 +++++++++++------- 1 file changed, 99 insertions(+), 54 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step5.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step5.vue index 52c1ecfc6..232df3c52 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step5.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step5.vue @@ -2657,61 +2657,106 @@ this.rules.commentText[0].required = true; } }, - handleSubmit() { - // this.getRule() - // const val= this.form.country; - // if (val !== '' && val !== null && typeof (val) !== 'undefined') { - // if (val instanceof Array) { - // this.form.country = val.join(","); - // } else { - // this.form.country = val - // } - // } else if (val === '') { - // this.form.country = [] - // } - this.$refs['form'].validate((valid) => { - if (valid) { - this.$refs['formTongGuo'].validate((valid) => { - if (valid) { - this.isSubmit = true - this.saveLoading = true - - // this.summary=this.summaryList.map(item => item.id).join(",") - // this.summaryName=this.summaryList.map(item => item.name).join(",") - - this.form.commentText = this.formTongGuo.commentText - // this.form.approvalOpinion = this.formTongGuo.approvalOpinion - // 会签意见存储 - const json = JSON.stringify(this.form); - this.$http.post('lawss/activiti/completeTask', { - taskIds: this.taskIds, - userId : this.userId, - json: json - }, { - _this: this - }, res => { - if (res.success) { - this.$message.success(res.message) - // 流程提交之后,应该流转至待办任务页面 - this.isSubmit = false - this.saveLoading = false - this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) - // if(this.formTongGuo.approvalOpinion === '1'){ - // this.$message.warning("驳回成功") - // this.isSubmit = false - // // 流程提交之后,应该流转至待办任务页面 - // this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) - // }else{ - // this.processCreateLaws(json) - // } - }else { - this.$message.success(res.message) - } - }) - }}) - } + // handleSubmit() { + // // this.getRule() + // // const val= this.form.country; + // // if (val !== '' && val !== null && typeof (val) !== 'undefined') { + // // if (val instanceof Array) { + // // this.form.country = val.join(","); + // // } else { + // // this.form.country = val + // // } + // // } else if (val === '') { + // // this.form.country = [] + // // } + // this.$refs['form'].validate((valid) => { + // if (valid) { + // this.$refs['formTongGuo'].validate((valid) => { + // if (valid) { + // this.isSubmit = true + // this.saveLoading = true + // + // // this.summary=this.summaryList.map(item => item.id).join(",") + // // this.summaryName=this.summaryList.map(item => item.name).join(",") + // + // this.form.commentText = this.formTongGuo.commentText + // // this.form.approvalOpinion = this.formTongGuo.approvalOpinion + // // 会签意见存储 + // const json = JSON.stringify(this.form); + // this.$http.post('lawss/activiti/completeTask', { + // taskIds: this.taskIds, + // userId : this.userId, + // json: json + // }, { + // _this: this + // }, res => { + // if (res.success) { + // this.$message.success(res.message) + // // 流程提交之后,应该流转至待办任务页面 + // this.isSubmit = false + // this.saveLoading = false + // this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) + // // if(this.formTongGuo.approvalOpinion === '1'){ + // // this.$message.warning("驳回成功") + // // this.isSubmit = false + // // // 流程提交之后,应该流转至待办任务页面 + // // this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) + // // }else{ + // // this.processCreateLaws(json) + // // } + // }else { + // this.$message.success(res.message) + // } + // }) + // } + // }) + // } + // }) + // }, + verifyHandle(){ + this.$refs['form'].validate((valid) => { + if (valid) { + this.$refs['formTongGuo'].validate((valid) => { + if (valid) { + this.isSubmit = true + this.saveLoading = true + this.form.commentText = this.formTongGuo.commentText + const json = JSON.stringify(this.form); + this.$http.post('lawss/activiti/completeTask', { + taskIds: this.taskIds, + userId : this.userId, + json: json + }, { + _this: this + }, res => { + if (res.success) { + this.$message.success(res.message) + // 流程提交之后,应该流转至待办任务页面 + this.isSubmit = false + this.saveLoading = false + this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) + }else { + this.$message.success(res.message) + } + }) + } }) - }, + } + }) + }, + handleSubmit() { + if(this.form.modelData.length>0){ + this.verifyHandle(); + }else{ + this.$confirm('您暂未填写意见,如有意见,请选择取消,如无意见,请选择确认', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + this.verifyHandle(); + }).catch(() => {}); + } + }, busVsFunc(){ this.$http.get('sarVppsTree/list', '', { _this: this From 470a3ef06352c3beba93afc06bd9c006b9e0ac34 Mon Sep 17 00:00:00 2001 From: zyn Date: Fri, 13 Jan 2023 14:33:30 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E4=BA=A7=E5=93=81=E6=A0=87=E5=87=86?= =?UTF-8?q?=E6=B5=81=E7=A8=8B-=E5=8F=91=E5=B8=83-=E9=99=84=E4=BB=B6?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E6=94=AF=E6=8C=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qbrk-product/common/uploadFile.vue | 186 ++++++++++++++++++ .../creatProcess/qbrk-product/step13.vue | 114 ++++++----- 2 files changed, 256 insertions(+), 44 deletions(-) create mode 100644 src/pages/processCenter/pages/creatProcess/qbrk-product/common/uploadFile.vue diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/uploadFile.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/uploadFile.vue new file mode 100644 index 000000000..bc559fbdc --- /dev/null +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/uploadFile.vue @@ -0,0 +1,186 @@ + + + + + diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue index e9b75c5ea..c6982c76b 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step13.vue @@ -232,25 +232,37 @@ > - + + + + + + + + + + + + + + + + + + + -
- -

点击或拖拽上传文件

-
-
+ +
{ @@ -2087,7 +2101,7 @@ }, // 文件预览及下载 handleFilePreview(file) { - const attId = file.response.data.id + const attId = file.response ? file.response.data.id : file.id if (this.preview) { if (attId) { window.location.href = '/api/att/attFile/downloadFileForSarNew?fileId=' + attId @@ -2095,22 +2109,23 @@ this.$message.warning('文件不存在,下载失败') } } else { - this.getBusStandFileByAttId(attId) - .then(res => { - if(res){ - const editFileInfo = res - if(editFileInfo.fileSuffix === 'pdg' || editFileInfo.fileSuffix === 'PDG'){ - window.open('book://ssreader/e0?url='+editFileInfo.downLoadUrl) - }else { - const nowTime = new Date().getTime() - // window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(Base64.encode(editFileInfo.downLoadUrl))); - window.open(onlyOfficeUrl+'/onlyOffice?oldFileName=' + editFileInfo.oldFileName + '&fileType=' + editFileInfo.fileSuffix + '&attId=' + editFileInfo.id + '&fileUrl=' + editFileInfo.downLoadUrl + '&key=' + editFileInfo.id + nowTime+'&filePath='+editFileInfo.filePath+'&fileName='+editFileInfo.fileName) - } - } - }).catch(e => { - console.log(e) - this.$message.warning('文件不存在,预览失败') - }) + this.$preview(attId) + // this.getBusStandFileByAttId(attId) + // .then(res => { + // if(res){ + // const editFileInfo = res + // if(editFileInfo.fileSuffix === 'pdg' || editFileInfo.fileSuffix === 'PDG'){ + // window.open('book://ssreader/e0?url='+editFileInfo.downLoadUrl) + // }else { + // const nowTime = new Date().getTime() + // // window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(Base64.encode(editFileInfo.downLoadUrl))); + // window.open(onlyOfficeUrl+'/onlyOffice?oldFileName=' + editFileInfo.oldFileName + '&fileType=' + editFileInfo.fileSuffix + '&attId=' + editFileInfo.id + '&fileUrl=' + editFileInfo.downLoadUrl + '&key=' + editFileInfo.id + nowTime+'&filePath='+editFileInfo.filePath+'&fileName='+editFileInfo.fileName) + // } + // } + // }).catch(e => { + // console.log(e) + // this.$message.warning('文件不存在,预览失败') + // }) } }, // 导入标准数据成功后执行 @@ -2126,35 +2141,43 @@ switch (this.fileType){ case 'FBGBUSS': this.FBGBUSSFileList = this.FBGBUSSFileList.filter ( item => item.response === undefined); - this.FBGBUSSFileList.push(fileObj) + if(this.FBGBUSSFileList.every(item => item.id !== fileObj.id)) + this.FBGBUSSFileList.push(fileObj) break; case 'BZSMBUSS' : this.BZSMBUSSFileList = this.BZSMBUSSFileList.filter ( item => item.response === undefined); - this.BZSMBUSSFileList.push(fileObj) + if(this.BZSMBUSSFileList.every(item => item.id !== fileObj.id)) + this.BZSMBUSSFileList.push(fileObj) break; case 'LSBBBUSS': this.LSBBBUSSFileList = this.LSBBBUSSFileList.filter ( item => item.response === undefined); - this.LSBBBUSSFileList.push(fileObj) + if(this.LSBBBUSSFileList.every(item => item.id !== fileObj.id)) + this.LSBBBUSSFileList.push(fileObj) break; case 'QTWJBUSS': this.QTWJBUSSFileList = this.QTWJBUSSFileList.filter ( item => item.response === undefined); - this.QTWJBUSSFileList.push(fileObj) + if(this.QTWJBUSSFileList.every(item => item.id !== fileObj.id)) + this.QTWJBUSSFileList.push(fileObj) break; case 'GLWJBUSS': this.GLWJBUSSFileList = this.GLWJBUSSFileList.filter ( item => item.response === undefined); - this.GLWJBUSSFileList.push(fileObj) + if(this.GLWJBUSSFileList.every(item => item.id !== fileObj.id)) + this.GLWJBUSSFileList.push(fileObj) break; case 'summaryFile': this.summaryFileList = this.summaryFileList.filter ( item => item.response === undefined); - this.summaryFileList.push(fileObj) + if(this.summaryFileList.every(item => item.id !== fileObj.id)) + this.summaryFileList.push(fileObj) break; case 'madelSub': this.madelSubList = this.madelSubList.filter ( item => item.response === undefined); - this.madelSubList.push(fileObj) + if(this.madelSubList.every(item => item.id !== fileObj.id)) + this.madelSubList.push(fileObj) break; case 'XGD': this.XGDFileList = this.XGDFileList.filter ( item => item.response === undefined); - this.XGDFileList.push(fileObj) + if(this.XGDFileList.every(item => item.id !== fileObj.id)) + this.XGDFileList.push(fileObj) break; default : ; } @@ -2164,6 +2187,8 @@ message: response.message, type: 'success' }) + // 关闭上传弹框 + this.fileMadel = false } }, downloadFile (data) { @@ -2235,6 +2260,7 @@ default : ; } this.formKey++ + this.fileMadel = false }, popoverHideBusVs (checkedIds, checkedData,isShow,isLoadChild,topId) { if(checkedData) { From d794beac7ff5c591f8a3387668cfb89cf4b640d7 Mon Sep 17 00:00:00 2001 From: zyn Date: Fri, 13 Jan 2023 15:02:57 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E5=A4=87=E6=A1=88?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E5=AD=97=E6=AE=B5=E4=BA=86=EF=BC=88=E4=BC=81?= =?UTF-8?q?=E6=A0=87=E5=B1=9E=E6=80=A7=E5=92=8C=E4=BA=A7=E5=93=81=E6=A0=87?= =?UTF-8?q?=E5=87=86=E6=B5=81=E7=A8=8B=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qbrk-product/common/formEditList-1.vue | 14 ++++----- .../qbrk-product/common/formEditList.vue | 14 ++++----- .../qbrk-product/common/formList.vue | 8 ++--- .../qbrk-product/common/formListIn.vue | 8 ++--- .../pages/creatProcess/qbrk-product/step1.vue | 14 ++++----- .../components/EnterpriseStandardDatabase.vue | 29 ++++++++++--------- 6 files changed, 44 insertions(+), 43 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList-1.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList-1.vue index 5ca6258f6..2c1603a59 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList-1.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList-1.vue @@ -29,13 +29,13 @@ :editable="false" disabled > - - - + + + + + + + diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList.vue index 31419e2d5..418a7fac4 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formEditList.vue @@ -29,13 +29,13 @@ :editable="false" > - - - + + + + + + + diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formList.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formList.vue index cfd299649..d7a03d72d 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formList.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formList.vue @@ -27,10 +27,10 @@ :editable="false" > - - - + + + + diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formListIn.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formListIn.vue index 79755ec61..854853630 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formListIn.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/common/formListIn.vue @@ -27,10 +27,10 @@ clearable > - - - + + + + diff --git a/src/pages/processCenter/pages/creatProcess/qbrk-product/step1.vue b/src/pages/processCenter/pages/creatProcess/qbrk-product/step1.vue index b2e08633d..7411d23b4 100644 --- a/src/pages/processCenter/pages/creatProcess/qbrk-product/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/qbrk-product/step1.vue @@ -58,13 +58,13 @@ :editable="false" > - - - + + + + + + + diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index fb672e1b3..5823e087b 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -834,20 +834,21 @@ > - - + + + + + + + + + + + + + + +