From 3d50e49525e10273ac130a09a5cd4dfe1217fe2a Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Tue, 4 Jun 2024 11:18:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AllTypeFile/update.vue | 26 ++++++++++++++++++--- src/views/contributionAward/aduit/index.vue | 10 +++++++- src/views/contributionAward/apply/index.vue | 12 +++++++++- src/views/contributionAward/score/index.vue | 17 +++++++++++--- src/views/principalAward/aduit/index.vue | 12 +++++++--- src/views/principalAward/apply/index.vue | 12 +++++++++- src/views/principalAward/score/index.vue | 17 +++++++++++--- src/views/reward/aduit/index.vue | 10 +++++++- src/views/reward/apply/index.vue | 12 +++++++++- src/views/reward/score/index.vue | 17 +++++++++++--- src/views/teacherAward/aduit/index.vue | 10 +++++++- src/views/teacherAward/apply/index.vue | 12 +++++++++- src/views/teacherAward/score/index.vue | 16 ++++++++++--- src/views/trainAward/aduit/index.vue | 10 +++++++- src/views/trainAward/apply/index.vue | 12 +++++++++- src/views/trainAward/score/index.vue | 17 +++++++++++--- 16 files changed, 192 insertions(+), 30 deletions(-) diff --git a/src/components/AllTypeFile/update.vue b/src/components/AllTypeFile/update.vue index 73b84ca..e0227ef 100644 --- a/src/components/AllTypeFile/update.vue +++ b/src/components/AllTypeFile/update.vue @@ -26,7 +26,7 @@ - + + @@ -61,10 +64,18 @@ - + + + + @@ -114,6 +125,12 @@ export default { isShowUploadButton:{ type:Boolean, }, + modalType: { + type:String, + }, + view:{ + type:Boolean, + } }, data() { return { @@ -126,6 +143,9 @@ export default { console.log(this.templateType) }, methods:{ + checkAllUploaded(childrenList) { + return childrenList.every(child => child.state === 1); + }, filePassMethod(row,status){ if (status === 'pass'){ filePass(row.fileId,'1').then((res) => { diff --git a/src/views/contributionAward/aduit/index.vue b/src/views/contributionAward/aduit/index.vue index e144853..3944a18 100644 --- a/src/views/contributionAward/aduit/index.vue +++ b/src/views/contributionAward/aduit/index.vue @@ -64,6 +64,7 @@ :isShowButton="isShowButton" :isShowUploadButton="isShowUploadButton" :template-type="templateType" + :modal-type="modalType" ref="childComponent" > @@ -98,6 +99,7 @@ export default { return { templateType:'aduit', dialogType: 'edit', + modalType:'', isShowUploadButton:false, //列数据 tableColumns: [ @@ -241,7 +243,10 @@ export default { this.editOpen = true; this.title = "查看申请"; const applyId = row.applyId || this.ids - this.isShowButton = false + this.isShowButton = true + this.dialogType = 'view' + this.modalType = 'score' + this.templateType = 'applyView' getDetail(applyId).then(response => { this.form = response.data; console.log(this.form) @@ -277,6 +282,9 @@ export default { this.isReadOnly = true this.isShowButton = true this.isShowUploadButton = false + this.dialogType = 'edit' + this.modalType = 'aduit' + this.templateType = 'aduit' const applyId = row.applyId || this.ids getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; diff --git a/src/views/contributionAward/apply/index.vue b/src/views/contributionAward/apply/index.vue index 8cf1582..2ef740a 100644 --- a/src/views/contributionAward/apply/index.vue +++ b/src/views/contributionAward/apply/index.vue @@ -87,6 +87,8 @@ :isShowButton="isShowButton" :isShowUploadButton="isShowUploadButton" :template-type="templateType" + :dialog-type="dialogType" + :modal-type="modalType" > @@ -119,6 +121,7 @@ :isShowButton="isShowButton" :isShowUploadButton="isShowUploadButton" :template-type="templateType" + :modal-type="modalType" ref="childComponent" > @@ -152,6 +155,7 @@ export default { return { templateType:'apply', dialogType:'edit', + modalType:'', isShowUploadButton:false, //列数据 tableColumns: [ @@ -312,7 +316,9 @@ export default { this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false - this.isShowButton = false + this.isShowButton = true + this.modalType = 'score' + this.templateType = 'applyView' getDetail(applyId).then(response => { this.form = response.data; console.log(this.form) @@ -348,6 +354,8 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true + this.modalType = 'apply' + this.templateType = 'apply' this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { @@ -369,6 +377,8 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true + this.modalType = 'apply' + this.templateType = 'apply' const applyId = row.applyId || this.ids getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; diff --git a/src/views/contributionAward/score/index.vue b/src/views/contributionAward/score/index.vue index 7058078..2d82e64 100644 --- a/src/views/contributionAward/score/index.vue +++ b/src/views/contributionAward/score/index.vue @@ -67,6 +67,8 @@ :isShowButton="isShowButton" :isShowUploadButton="isShowUploadButton" :template-type="templateType" + :modal-type="'score'" + :view="view" ref="childComponent" >