|
@@ -5,6 +5,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '站点名称',
|
|
|
align: 'left',
|
|
|
dataIndex: 'siteName',
|
|
|
+ defaultHidden: true
|
|
|
},
|
|
|
{
|
|
|
title: '姓名',
|
|
@@ -46,6 +47,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '来源IP',
|
|
|
align: 'left',
|
|
|
dataIndex: 'fromIp',
|
|
|
+ defaultHidden: true,
|
|
|
|
|
|
customRender: function ({ text, record }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
@@ -99,6 +101,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '来源插件',
|
|
|
align: 'left',
|
|
|
dataIndex: 'pluginName',
|
|
|
+ defaultHidden: true
|
|
|
},
|
|
|
{
|
|
|
title: '询盘时间',
|
|
@@ -109,7 +112,7 @@ export const columns: BasicColumn[] = [
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- title: '入库时间',
|
|
|
+ title: '创建时间',
|
|
|
align: 'left',
|
|
|
dataIndex: 'ctime',
|
|
|
customRender: function ({ text }) {
|
|
@@ -123,6 +126,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
title: '站点名称',
|
|
|
align: 'left',
|
|
|
dataIndex: 'siteName',
|
|
|
+ defaultHidden: true
|
|
|
},
|
|
|
{
|
|
|
title: '姓名',
|
|
@@ -211,7 +215,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- title: '入库时间',
|
|
|
+ title: '创建时间',
|
|
|
align: 'left',
|
|
|
dataIndex: 'ctime',
|
|
|
customRender: function ({ text }) {
|