|
@@ -70,8 +70,19 @@
|
|
|
:params="{ exportMethod: departmentSatisfactionListExport, exportParams: requestParams }"
|
|
|
>
|
|
|
<vxe-column type="checkbox" width="60" align="center"></vxe-column>
|
|
|
+ <vxe-column field="isProvinceText" title="省/市工单" width="90"></vxe-column>
|
|
|
+ <vxe-column field="visitTime" title="回访时间" sortable width="160">
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ formatDate(row.visitTime, 'YYYY-mm-dd HH:MM:SS') }}
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column field="visitOrgName" title="回访部门" width="140"></vxe-column>
|
|
|
<vxe-column field="no" title="工单编码" width="140"></vxe-column>
|
|
|
- <vxe-column field="isProvinceText" title="省/市工单" width="90"></vxe-column>
|
|
|
+ <vxe-column field="title" title="工单标题" width="200">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <order-detail :order="{ ...row, id: row.orderId }" @updateList="queryList">{{ row.title }}</order-detail>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
<vxe-column field="reTransactNum" title="重办次数" width="90"></vxe-column>
|
|
|
<vxe-column field="orderScreenStatusText" title="甄别" width="90"></vxe-column>
|
|
|
<vxe-column field="visitContent" title="回访信息" width="150"></vxe-column>
|
|
@@ -83,20 +94,9 @@
|
|
|
{{ formatDate(row.creationTime, 'YYYY-mm-dd HH:MM:SS') }}
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
- <vxe-column field="title" title="工单标题" width="200">
|
|
|
- <template #default="{ row }">
|
|
|
- <order-detail :order="{ ...row, id: row.orderId }" @updateList="queryList">{{ row.title }}</order-detail>
|
|
|
- </template>
|
|
|
- </vxe-column>
|
|
|
<!-- <vxe-column field="order.orderTag" title="工单标签" width="120" v-if="['ZiGong', 'LuZhou'].includes(themeConfig.appScope)"></vxe-column>-->
|
|
|
<vxe-column field="visitUser" title="回访人" width="120"></vxe-column>
|
|
|
- <vxe-column field="visitOrgName" title="回访部门" width="140"></vxe-column>
|
|
|
<vxe-column field="visitTypeText" title="回访方式" width="110"></vxe-column>
|
|
|
- <vxe-column field="visitTime" title="回访时间" sortable width="160">
|
|
|
- <template #default="{ row }">
|
|
|
- {{ formatDate(row.visitTime, 'YYYY-mm-dd HH:MM:SS') }}
|
|
|
- </template>
|
|
|
- </vxe-column>
|
|
|
<vxe-column field="orgProcessingResults" title="满意度" width="120"></vxe-column>
|
|
|
<vxe-column field="content" title="受理内容" width="150"></vxe-column>
|
|
|
<vxe-column field="fileOpinion" title="承办意见" width="150"></vxe-column>
|