Browse Source

审核流程,删除已完结的

feature-bug
是小王呀\24601 11 months ago
parent
commit
a9ec89818d
  1. 15
      src/views/modules/shequzhili/event/cpts/event-info.vue
  2. 4
      src/views/modules/shequzhili/event/cpts/process-form-complete.vue
  3. 4
      src/views/modules/shequzhili/event/cpts/process-form.vue

15
src/views/modules/shequzhili/event/cpts/event-info.vue

@ -80,7 +80,7 @@
</div>
<template v-if="item.internalFile && item.internalFile.length > 0"
v-for="i in item.internalFile">
<template v-if="i.uploadType === '1'">
<template v-if="i.type === 'image'">
<div class="detail">
<div class="detail-field">图片</div>
<div
@ -91,7 +91,7 @@
</div>
</div>
</template>
<template v-if="i.uploadType === '0'">
<template v-if="i.type === 'voice'">
<div class="detail">
<div class="detail-field">录音</div>
<div
@ -102,7 +102,7 @@
</div>
</div>
</template>
<template v-if="i.uploadType === '2'||i.uploadTyp==null">
<template v-if="i.type === 'doc'">
<div class="detail">
<div class="detail-field">附件</div>
<div
@ -187,11 +187,6 @@
<div class="detail-field">热线专班回访结果</div>
<div class="detail-value">{{ satisfactionResult.find(v => v.value ==item.returnResult).label }}</div>
</div>
<!--
-->
<div class="detail" v-if="item.processName==='已退件'">
<div class="detail-field">是否已联系</div>
<div class="detail-value">{{ item.returnLoseContact===1?'已联系当事人':'未联系当事人' }}</div>
@ -238,7 +233,7 @@
</audio>
</div>
</template>
<template v-if="i.uploadType === 2||i.uploadType==null">
<template v-if="i.uploadType === 2">
<div
:class="['m-info-prop', { 'm-info-prop-vis': source === 'visiual' }]">
<span class="u-info-title-2">附件</span>
@ -437,7 +432,7 @@ changeName(val) {
},
async handelDispose() {
console.log("handelDispose......");
console.log("handelDispose......",this.pageTypeCopy);
this.$refs.ref_processinfo_dispose.getProcessInfo();
if (this.$refs.ref_processinfo_dispose.okflag) {
this.formData.operationType = this.$refs.ref_processinfo_dispose.operationType;

4
src/views/modules/shequzhili/event/cpts/process-form-complete.vue

@ -659,7 +659,6 @@ showHotline:false,
console.log(this.examineImgList);
},
handleExamineImgSuccess(res, file, fileList) {
console.log("res.data.url", file);
if (res.code === 0 && res.msg === "success") {
console.log("res.data.url", res.data.url);
this.examineImgList.push({
@ -668,9 +667,8 @@ showHotline:false,
size: file.size,
attachmentType: file.raw.type,
attachmentUrl: res.data.url,
uploadType:2
uploadType:1
});
console.log(this.formData.files);
} else {
this.$message.error(res.msg);
}

4
src/views/modules/shequzhili/event/cpts/process-form.vue

@ -171,12 +171,10 @@ export default {
} else if (this.operationType === '11' || this.pageType === 'check') {
this.$refs.ref_process_form_complete.getReplayInfo()
this.replayInfo = this.$refs.ref_process_form_complete.formData;
console.log(this.replayInfo,"sdlkjgdslkjlksgjlk");
this.replayInfo.files = [...this.$refs.ref_process_form_complete.imgList,...this.$refs.ref_process_form_complete.audioList,...this.$refs.ref_process_form_complete.docList]
if(this.pageType === 'check'){
this.replayInfo.operationType = '12';
this.replayInfo.files = [...this.replayInfo.files,...this.$refs.ref_process_form_complete.examineImgList]
this.replayInfo.files = [...this.$refs.ref_process_form_complete.examineImgList]
}
if (this.$refs.ref_process_form_complete.okflag) {
this.replayInfo = this.$refs.ref_process_form_complete.formData

Loading…
Cancel
Save