|
@@ -70,12 +70,12 @@
|
|
|
min-width="250"
|
|
|
prop="companyName"
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
+ <!-- <el-table-column
|
|
|
label="税号"
|
|
|
align="center"
|
|
|
prop="socialCreditCode"
|
|
|
min-width="150"
|
|
|
- />
|
|
|
+ /> -->
|
|
|
<el-table-column label="工单类型" align="center" prop="amount" width="80">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.type === 1 ? "循环工单" : "代办工单" }}
|
|
@@ -87,16 +87,18 @@
|
|
|
prop="taskTypeName"
|
|
|
width="200"
|
|
|
>
|
|
|
- <template #default="scope">
|
|
|
- {{ scope.row.noContract === 1 ? scope.row.remark : "" }}
|
|
|
- {{ scope.row.taskTypeName }}
|
|
|
- {{
|
|
|
- scope.row.taskTypeDetailName
|
|
|
- ? `-${scope.row.taskTypeDetailName}`
|
|
|
- : ""
|
|
|
- }}
|
|
|
- </template>
|
|
|
+ <template #default="scope">
|
|
|
+ {{
|
|
|
+ scope.row.noContract === 1? scope.row.remark: `${scope.row.taskTypeName}${scope.row.alterType ?`-${scope.row.alterType}` : ""}${scope.row.taskTypeDetailName? `-${scope.row.taskTypeDetailName}` : ""}`
|
|
|
+ }}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="说明"
|
|
|
+ align="center"
|
|
|
+ prop="explain"
|
|
|
+ min-width="180"
|
|
|
+ />
|
|
|
<el-table-column label="执行人" align="center" width="100">
|
|
|
<template #default="scope">
|
|
|
{{
|