|
@@ -223,9 +223,31 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="endTime" label="审核时间"></el-table-column>
|
|
<el-table-column prop="endTime" label="审核时间"></el-table-column>
|
|
<el-table-column prop="auditMind" label="审核意见"></el-table-column>
|
|
<el-table-column prop="auditMind" label="审核意见"></el-table-column>
|
|
|
|
+ <el-table-column prop="auditMind" label="审核附件">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
|
|
|
|
+ src="../../../public/img/fujian.png" @click="fujian(scope.row)" alt="" />
|
|
|
|
+ <span v-if="scope.row.auditImg != null">
|
|
|
|
+ {{
|
|
|
|
+ scope.row.auditImg.length == 0
|
|
|
|
+ ? ''
|
|
|
|
+ : scope.row.auditImg.length
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</ws-form>
|
|
</ws-form>
|
|
-
|
|
|
|
|
|
+ <WinseaContentModal v-model="accessoryTFs" :title="$t('system.noticeCircular.information')"
|
|
|
|
+ @on-cancel="handleClose">
|
|
|
|
+ <div v-for="item in appendixIdss">
|
|
|
|
+ <el-image
|
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
|
+ :src="item"
|
|
|
|
+ :preview-src-list="appendixIdss">
|
|
|
|
+ </el-image>
|
|
|
|
+ </div>
|
|
|
|
+ </WinseaContentModal>
|
|
<div style="text-align: right; padding: 10px">
|
|
<div style="text-align: right; padding: 10px">
|
|
<el-button class="bg-bottom" type="primary" size="small" @click="returnsales()">关闭</el-button>
|
|
<el-button class="bg-bottom" type="primary" size="small" @click="returnsales()">关闭</el-button>
|
|
</div>
|
|
</div>
|
|
@@ -279,6 +301,8 @@
|
|
contractProcessInfo: {},
|
|
contractProcessInfo: {},
|
|
contractGoodsInfo: {},
|
|
contractGoodsInfo: {},
|
|
},
|
|
},
|
|
|
|
+ accessoryTFs:false,
|
|
|
|
+ appendixIdss:[],
|
|
mainReportAdd: {},
|
|
mainReportAdd: {},
|
|
list: {},
|
|
list: {},
|
|
compId: localStorage.getItem('ws-pf_compId'),
|
|
compId: localStorage.getItem('ws-pf_compId'),
|
|
@@ -291,12 +315,44 @@
|
|
this.showType = this.isShow
|
|
this.showType = this.isShow
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ fujian(row) {
|
|
|
|
+ this.id = row.id
|
|
|
|
+ this.accessoryTFs = true
|
|
|
|
+ this.appendixIdss = row.auditImg
|
|
|
|
+ console.log(this.appendixIdss)
|
|
|
|
+ },
|
|
|
|
+ handleCloseq() {
|
|
|
|
+ this.accessoryTFs = false
|
|
|
|
+ },
|
|
loaddata() {
|
|
loaddata() {
|
|
gettaskhistories({
|
|
gettaskhistories({
|
|
businessKey: this.$route.query.id,
|
|
businessKey: this.$route.query.id,
|
|
workflowId: this.$route.query.workflowId
|
|
workflowId: this.$route.query.workflowId
|
|
}).toPromise()
|
|
}).toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
|
|
+ if(response){
|
|
|
|
+ for (let i = 0; i < response.length; i++) {
|
|
|
|
+ if(response[i].auditMind){
|
|
|
|
+ response[i].auditImg=[]
|
|
|
|
+ var auditMind=response[i].auditMind.split('#')
|
|
|
|
+ if(auditMind[2]!=''){
|
|
|
|
+ var img=auditMind[2].split(',')
|
|
|
|
+ for (let q = 0; q < img.length; q++) {
|
|
|
|
+ if(img[q]!=''){
|
|
|
|
+ response[i].auditImg.push(img[q])
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if(auditMind[1]){
|
|
|
|
+ response[i].auditMind=auditMind[1]
|
|
|
|
+ }else{
|
|
|
|
+ response[i].auditMind=''
|
|
|
|
+ }
|
|
|
|
+ console.log(auditMind[1],1111,auditMind[2])
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
this.taskhistories = response
|
|
this.taskhistories = response
|
|
})
|
|
})
|
|
// 数据
|
|
// 数据
|