|
@@ -1,11 +1,12 @@
|
|
|
import { BasicColumn } from '/@/components/Table';
|
|
|
+import { getAction } from '@/api/manage/manage';
|
|
|
//列表数据
|
|
|
export const columns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '站点名称',
|
|
|
align: 'left',
|
|
|
dataIndex: 'siteName',
|
|
|
- defaultHidden: true
|
|
|
+ defaultHidden: true,
|
|
|
},
|
|
|
{
|
|
|
title: '姓名',
|
|
@@ -49,7 +50,7 @@ export const columns: BasicColumn[] = [
|
|
|
dataIndex: 'fromIp',
|
|
|
defaultHidden: true,
|
|
|
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
|
return '--';
|
|
|
} else {
|
|
@@ -89,7 +90,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '来源国家',
|
|
|
align: 'left',
|
|
|
dataIndex: 'countryName',
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
|
return '--';
|
|
|
} else {
|
|
@@ -101,7 +102,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '来源插件',
|
|
|
align: 'left',
|
|
|
dataIndex: 'pluginName',
|
|
|
- defaultHidden: true
|
|
|
+ defaultHidden: true,
|
|
|
},
|
|
|
{
|
|
|
title: '询盘时间',
|
|
@@ -119,6 +120,12 @@ export const columns: BasicColumn[] = [
|
|
|
return !text ? '' : text.length > 16 ? text.substr(0, 16) : text;
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '跟进人',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'principalUid',
|
|
|
+ width: 200,
|
|
|
+ },
|
|
|
];
|
|
|
|
|
|
export const wasteColumns: BasicColumn[] = [
|
|
@@ -126,7 +133,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
title: '站点名称',
|
|
|
align: 'left',
|
|
|
dataIndex: 'siteName',
|
|
|
- defaultHidden: true
|
|
|
+ defaultHidden: true,
|
|
|
},
|
|
|
{
|
|
|
title: '姓名',
|
|
@@ -143,7 +150,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
title: '手机号',
|
|
|
align: 'left',
|
|
|
dataIndex: 'phone',
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
|
return '--';
|
|
|
} else {
|
|
@@ -157,7 +164,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
align: 'left',
|
|
|
dataIndex: 'fromIp',
|
|
|
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
|
return '--';
|
|
|
} else {
|
|
@@ -197,7 +204,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
title: '来源国家',
|
|
|
align: 'left',
|
|
|
dataIndex: 'countryName',
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
if (text == null || text == '' || text == undefined) {
|
|
|
return '--';
|
|
|
} else {
|
|
@@ -210,7 +217,7 @@ export const wasteColumns: BasicColumn[] = [
|
|
|
align: 'left',
|
|
|
|
|
|
dataIndex: 'recordCtime',
|
|
|
- customRender: function ({ text, record }) {
|
|
|
+ customRender: function ({ text }) {
|
|
|
return !text ? '' : text.length > 16 ? text.substr(0, 16) : text;
|
|
|
},
|
|
|
},
|
|
@@ -271,7 +278,7 @@ export const superQuerySchema = {
|
|
|
name: { title: '姓名', order: 42, view: 'text', type: 'string' },
|
|
|
email: { title: '邮箱地址', order: 43, view: 'text', type: 'string' },
|
|
|
message: { title: '询盘信息', order: 44, view: 'textarea', type: 'string' },
|
|
|
- company: { title: '公司名称', order: 45, view: 'text', type: 'string' },
|
|
|
+ company: { title: '用户名称', order: 45, view: 'text', type: 'string' },
|
|
|
fromPage: { title: '来源页面', order: 46, view: 'text', type: 'string' },
|
|
|
customerIp: { title: 'form表单传入Ip', order: 47, view: 'text', type: 'string' },
|
|
|
phone: { title: '手机号', order: 48, view: 'text', type: 'string' },
|