|
@@ -285,6 +285,11 @@ const columns1 = ref<any[]>([
|
|
]);
|
|
]);
|
|
const columns4 = ref<any[]>([
|
|
const columns4 = ref<any[]>([
|
|
{ prop: 'provinceNo', label: '省工单编码', align: 'center', minWidth: 200 },
|
|
{ prop: 'provinceNo', label: '省工单编码', align: 'center', minWidth: 200 },
|
|
|
|
+ {
|
|
|
|
+ prop: 'isOverdueText',
|
|
|
|
+ label: '是否超期',
|
|
|
|
+ align: 'center',
|
|
|
|
+ },
|
|
{
|
|
{
|
|
prop: 'expiredTime',
|
|
prop: 'expiredTime',
|
|
label: '期满时间',
|
|
label: '期满时间',
|
|
@@ -295,35 +300,30 @@ const columns4 = ref<any[]>([
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: 'firstTime',
|
|
|
|
- label: '初次推送时间',
|
|
|
|
|
|
+ prop: 'filedTime',
|
|
|
|
+ label: '办结时间',
|
|
align: 'center',
|
|
align: 'center',
|
|
width: 160,
|
|
width: 160,
|
|
render: (scope) => {
|
|
render: (scope) => {
|
|
- return <span>{formatDate(scope.row.firstTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
|
|
|
+ return <span>{formatDate(scope.row.filedTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: 'lastTime',
|
|
|
|
- label: '最近一次推送时间',
|
|
|
|
|
|
+ prop: 'firstTime',
|
|
|
|
+ label: '初次推送时间',
|
|
align: 'center',
|
|
align: 'center',
|
|
width: 160,
|
|
width: 160,
|
|
render: (scope) => {
|
|
render: (scope) => {
|
|
- return <span>{formatDate(scope.row.lastTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
|
|
|
+ return <span>{formatDate(scope.row.firstTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: 'isOverdueText',
|
|
|
|
- label: '是否超期',
|
|
|
|
- align: 'center',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- prop: 'filedTime',
|
|
|
|
- label: '办结时间',
|
|
|
|
|
|
+ prop: 'lastTime',
|
|
|
|
+ label: '最近一次推送时间',
|
|
align: 'center',
|
|
align: 'center',
|
|
width: 160,
|
|
width: 160,
|
|
render: (scope) => {
|
|
render: (scope) => {
|
|
- return <span>{formatDate(scope.row.filedTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
|
|
|
+ return <span>{formatDate(scope.row.lastTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|