|
@@ -89,14 +89,15 @@ const closeHandler = (row) => {
|
|
|
};
|
|
|
const columns = [
|
|
|
// { colKey: 'a', title: '违规流水号' },
|
|
|
- { colKey: 'sopNo', title: 'SOP流水号' },
|
|
|
- { colKey: 'userName', title: '节点负责人' },
|
|
|
- { colKey: 'custom', title: '客户名称' },
|
|
|
- { colKey: 'crmNo', title: '项目单号' },
|
|
|
+ { colKey: 'sopNo', title: 'SOP流水号', width: 160 },
|
|
|
+ { colKey: 'userName', title: '节点负责人', width: 120 },
|
|
|
+ { colKey: 'custom', title: '客户名称', width: 120 },
|
|
|
+ { colKey: 'crmNo', title: '项目单号', width: 140 },
|
|
|
{ colKey: 'crmName', title: '项目名称' },
|
|
|
{
|
|
|
colKey: 'type',
|
|
|
title: '违规类型',
|
|
|
+ width: 130,
|
|
|
cell: (h, { row }) => {
|
|
|
return <span>{VIOLATION_TYPE[row.type] || row.type}</span>;
|
|
|
},
|
|
@@ -110,12 +111,12 @@ const columns = [
|
|
|
},
|
|
|
},
|
|
|
{ colKey: 'createTime', title: '登记时间' },
|
|
|
- { colKey: 'createName', title: '登记人' },
|
|
|
+ { colKey: 'createName', title: '登记人', width: 120 },
|
|
|
{
|
|
|
title: '管理',
|
|
|
colKey: 'operate',
|
|
|
fixed: 'right',
|
|
|
- width: 200,
|
|
|
+ width: 130,
|
|
|
cell: (h, { row }) => {
|
|
|
return (
|
|
|
<div class="table-operations">
|