|
@@ -12,6 +12,7 @@ export const columns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '公司名称',
|
|
|
align:"center",
|
|
|
+ width:'300px',
|
|
|
dataIndex: 'companyName'
|
|
|
},
|
|
|
{
|
|
@@ -19,6 +20,11 @@ export const columns: BasicColumn[] = [
|
|
|
align:"center",
|
|
|
dataIndex: 'status_dictText'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '创建日期',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'createTime'
|
|
|
+ },
|
|
|
{
|
|
|
title: '初始化的域名',
|
|
|
align:"center",
|
|
@@ -110,6 +116,7 @@ export const superQuerySchema = {
|
|
|
siteId: {title: '站点id',order: 0,view: 'number', type: 'number',},
|
|
|
companyName: {title: '公司名称',order: 1,view: 'text', type: 'string',},
|
|
|
status: {title: '状态',order: 2,view: 'number', type: 'number',},
|
|
|
+ createTime: {title: '创建日期',order: 0,view: 'datetime', type: 'string',},
|
|
|
domain: {title: '初始化的域名',order: 3,view: 'text', type: 'string',},
|
|
|
tel: {title: '联系方式',order: 4,view: 'text', type: 'string',},
|
|
|
contact: {title: '联系人',order: 5,view: 'text', type: 'string',},
|