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" >