提交修改
This commit is contained in:
parent
963d9e5133
commit
f4a3807d13
@ -41,16 +41,16 @@
|
||||
<p><span style="" @click="commitApprovalYes('你要确认得分吗?')">确认得分</span></p>
|
||||
</div>
|
||||
|
||||
<div class="bottom" v-show="this.auth.reject == 1">
|
||||
<div class="bottom" v-show="this.auth.reject === 1">
|
||||
<p><span @click="commitApprovalAddOrUpdate(5)" ><label :class="'label bg-danger my_pointer'">驳回</label></span></p>
|
||||
</div>
|
||||
|
||||
<div class="bottom">
|
||||
<p><span @click="uploadDownFile(1)" ><label :class="'label bg-info my_pointer'">上传附件(0)</label></span></p>
|
||||
<div class="bottom" v-show="this.auth.uploadFile === 1 ">
|
||||
<p><span @click="uploadDownFile(1)" ><label :class="'label bg-info my_pointer'">上传附件({{fileCount}})</label></span></p>
|
||||
</div>
|
||||
|
||||
<div class="bottom">
|
||||
<p><span @click="uploadDownFile(2)" ><label :class="'label bg-info my_pointer'">下载附件(0)</label></span></p>
|
||||
<div class="bottom" >
|
||||
<p><span @click="uploadDownFile(2)" ><label :class="'label bg-info my_pointer'">下载附件({{fileCount}})</label></span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -170,6 +170,7 @@ export default {
|
||||
loading: false,
|
||||
auth: [],
|
||||
recordType: 0,
|
||||
fileCount: 0
|
||||
}
|
||||
},
|
||||
components: {
|
||||
@ -178,9 +179,7 @@ export default {
|
||||
UploadAddOrUpdate
|
||||
},
|
||||
activated () {
|
||||
if (this.$route.query.id > 0) {
|
||||
this.recordResultId = this.$route.query.id
|
||||
}
|
||||
this.recordResultId = this.$route.query.id
|
||||
this.recordType = this.$route.query.recordType
|
||||
this.getDataList()
|
||||
},
|
||||
@ -216,6 +215,7 @@ export default {
|
||||
this.dataListLoading = false
|
||||
this.addOrUpdateVisible = false
|
||||
this.approvalVisible = false
|
||||
this.fileCount = data.fileCount || 0
|
||||
})
|
||||
},
|
||||
// 新增 / 编辑
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user