|
@@ -381,11 +381,11 @@ export default {
|
|
|
if (this.status === 'taskFormDetail') {
|
|
|
this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit')
|
|
|
} else if (this.status === 'audit') {
|
|
|
- this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit', null, null, true, this.$store.state.user.name)
|
|
|
+ this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit', 500, null, true, this.$store.state.user.name)
|
|
|
} else if (this.method === 'view') {
|
|
|
this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit')
|
|
|
} else {
|
|
|
- this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit', null, null, true, this.$store.state.user.name)
|
|
|
+ this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'program_audit', 500, null, true, this.$store.state.user.name)
|
|
|
}
|
|
|
this.loading = false
|
|
|
})
|
|
@@ -394,7 +394,7 @@ export default {
|
|
|
reapplyForm(callback) {
|
|
|
this.loading = true
|
|
|
this.programProjectListInfoService.findByIdAudit(this.inputForm.id).then((data) => {
|
|
|
- if (data.status !== '4') { // 审核状态不是“驳回”,就弹出提示 2
|
|
|
+ if (data.status !== '4') { // 审核状态不是“驳回”,就弹出提示 2
|
|
|
taskService.getTaskAuditUsersByprocInstId(this.$route.query.procInsId).then(res => {
|
|
|
let userInfo = this.$TOOL.data.get("USER_INFO");
|
|
|
// 如果审核人是本人的话,则跳过数据状态的限制
|