|
@@ -48,7 +48,6 @@
|
|
|
<!-- 表格操作 -->
|
|
|
<template #operation="{ row }">
|
|
|
<el-button link type="primary" @click="onQualityInspection(row)" v-auth="'quality:inspection'" title="质检"> 质检 </el-button>
|
|
|
- <order-detail :order="row.order" />
|
|
|
</template>
|
|
|
</ProTable>
|
|
|
<ProTable
|
|
@@ -95,7 +94,6 @@
|
|
|
<!-- 表格操作 -->
|
|
|
<template #operation="{ row }">
|
|
|
<el-button link type="primary" @click="onQualityInspection(row)" v-auth="'quality:inspection'" title="质检"> 质检 </el-button>
|
|
|
- <order-detail :order="row.order" />
|
|
|
</template>
|
|
|
</ProTable>
|
|
|
<ProTable
|
|
@@ -142,7 +140,6 @@
|
|
|
<!-- 表格操作 -->
|
|
|
<template #operation="{ row }">
|
|
|
<el-button link type="primary" @click="onQualityInspection(row)" v-auth="'quality:inspection'" title="质检"> 质检 </el-button>
|
|
|
- <order-detail :order="row.order" />
|
|
|
</template>
|
|
|
</ProTable>
|
|
|
</div>
|
|
@@ -214,7 +211,7 @@ const acceptQualityColumns = [
|
|
|
minWidth: 120,
|
|
|
},
|
|
|
{ prop: 'order.fromPhone', label: '来电电话', minWidth: 140 },
|
|
|
- { label: '操作', width: 140, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
+ { label: '操作', width: 80, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
];
|
|
|
// 交办待质检表头
|
|
|
const assignQualityColumns = [
|
|
@@ -239,7 +236,7 @@ const assignQualityColumns = [
|
|
|
render: (scope: any) => formatDate(scope.row.centerToOrgTime?.creationTime, 'YYYY-mm-dd HH:MM:SS'),
|
|
|
},
|
|
|
{ prop: 'order.fromPhone', label: '来电电话', minWidth: 140 },
|
|
|
- { label: '操作', width: 140, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
+ { label: '操作', width: 80, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
];
|
|
|
// 回访待质检表头
|
|
|
const visitQualityColumns = [
|
|
@@ -285,7 +282,7 @@ const visitQualityColumns = [
|
|
|
render: (scope: any) => formatDate(scope.row.visit?.visitTime, 'YYYY-mm-dd HH:MM:SS'),
|
|
|
},
|
|
|
{ prop: 'order.counterSignTypeText', label: '是否会签', minWidth: 90 },
|
|
|
- { label: '操作', width: 140, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
+ { label: '操作', width: 80, fixed: 'right', align: 'center', prop: 'operation' },
|
|
|
];
|
|
|
// 手动查询,将页码设置为1
|
|
|
const handleQuery = () => {
|