Browse Source

信件查询当前处理对象条目添加

master
21819 2 years ago
parent
commit
2dc9d70971
  1. 7
      src/views/work/Query.vue

7
src/views/work/Query.vue

@ -125,8 +125,9 @@
<span>{{ getDictLable(dictData.mail_state, row.mailState) }}</span> <span>{{ getDictLable(dictData.mail_state, row.mailState) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="threeDeptName" label="办理单位" width="160" /> <el-table-column prop="threeDeptName" label="办理单位" width="140" />
<el-table-column label="流程节点"> <el-table-column prop="handlingDeptName" label="当前处理对象" width="140"/>
<el-table-column label="流程节点" width="120">
<template #default="{ row }"> <template #default="{ row }">
<el-tag :type="getFlowTagType(row.flowName)" v-if="row.flowName">{{ row.flowName <el-tag :type="getFlowTagType(row.flowName)" v-if="row.flowName">{{ row.flowName
@ -148,7 +149,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="mailLabels" label="信件标签" width="160" /> <el-table-column prop="mailLabels" label="信件标签" width="160" />
<el-table-column label="操作"> <el-table-column label="操作" width="120">
<template #default="{ row }"> <template #default="{ row }">
<el-button type="primary" link @click="handleMail(row.id)">详情</el-button> <el-button type="primary" link @click="handleMail(row.id)">详情</el-button>

Loading…
Cancel
Save