|
@@ -0,0 +1,372 @@
|
|
|
+import {BasicColumn} from '/@/components/Table';
|
|
|
+import {FormSchema} from '/@/components/Table';
|
|
|
+import { rules} from '/@/utils/helper/validator';
|
|
|
+import { render } from '/@/utils/common/renderUtils';
|
|
|
+import { getWeekMonthQuarterYear } from '/@/utils';
|
|
|
+//列表数据
|
|
|
+export const columns: BasicColumn[] = [
|
|
|
+ {
|
|
|
+ title: '询盘来源IP',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'fromIp'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘发送者邮箱账号',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'fromEmail'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘模块:admp_web:admp网站询盘 ;email:邮件询盘 ;diy_element:自定义组件询盘',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'modular'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '发送人姓名',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'fromUser'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '0删除,1有效,默认值1 2:待解析 3:数据解析中 4.解析失败',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'status'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '数据解析次数',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'dealCount'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '系统有效性 0:无效 1;有效 后台字段',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'sysEffective'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '用户有效性 0:无效 1:有效 2 : 待定 取自字典表',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'userEffective'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '敏感信息',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'sensitiveMessage'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'phase'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'trackStatus'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘所属用户主账号ID',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'uid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘跟进人 id',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'tracker'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘创建时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'recordCtime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'ADMP平台创建时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'ctime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '国家/地区(根据ip获取)',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'country'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '通过ip解析获得国家码',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'countryIsoCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '通过ip解析获得区域码',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'areaIsoCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘插件名称,名称小写,如:wpforms',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'pluginName'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '站点code,关联站点表',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'siteCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '站点token',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'siteToken'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘来自站点的域名',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'siteHost'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘原站点记录ID',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'recordId'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '状态更新时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'utime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '回复时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'replyTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '转发状态:0未转发,1已转发,默认值0',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'forward'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '转发时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'forwardTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '访客id',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'visitId'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '来源于站点的id',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'siteId'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '公司id',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'companyId'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '联系人id,字符串组合',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'contactIds'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '定时器任务修改查询唯一标识(10位随机数)',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'jobId'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '回复状态',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'replayStatus'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '外部编号',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'noOut'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '处理后的询盘当地时间字段',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'modifyRecordCtime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'transContent',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'transContent'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '国家code',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'countryCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '国家名',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'countryName'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'whatsApp',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'whatsApp'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '0:不是;1:是',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'wasteEnquiry'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '推送状态,0:待发送,1:成功,2不予发送',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'pushStatus'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '推送错误次数',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'pushErrorNum'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '姓名',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'name'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '邮箱地址',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'email'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘信息',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'message'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '公司名称',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'company'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '来源页面',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'fromPage'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'form表单传入Ip',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'customerIp'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '手机号',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'phone'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'whatsapp',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'whatsapp'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '阅读状态,0是未阅读,1是已阅读',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'readStatus'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '负责人的id',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'principalUid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '0代表系统根据规则分配,1代表主账户指定',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'principalType'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'form表单中的地址',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'address'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '客户自定义字段',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'specialField'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '向Wp发送请求时间',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'requestTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'Adweb实时获取WebHookS消息时间,定时器无该值',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'acquireMessageTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '疑似垃圾询盘理由',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'effectiveReason'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'wasteEnquiryType'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '询盘关联产品',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'cartItems'
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+// 高级查询数据
|
|
|
+export const superQuerySchema = {
|
|
|
+ fromIp: {title: '询盘来源IP',order: 0,view: 'text', type: 'string',},
|
|
|
+ fromEmail: {title: '询盘发送者邮箱账号',order: 1,view: 'text', type: 'string',},
|
|
|
+ modular: {title: '询盘模块:admp_web:admp网站询盘 ;email:邮件询盘 ;diy_element:自定义组件询盘',order: 2,view: 'text', type: 'string',},
|
|
|
+ fromUser: {title: '发送人姓名',order: 3,view: 'text', type: 'string',},
|
|
|
+ status: {title: '0删除,1有效,默认值1 2:待解析 3:数据解析中 4.解析失败',order: 4,view: 'number', type: 'number',},
|
|
|
+ dealCount: {title: '数据解析次数',order: 5,view: 'number', type: 'number',},
|
|
|
+ sysEffective: {title: '系统有效性 0:无效 1;有效 后台字段',order: 6,view: 'number', type: 'number',},
|
|
|
+ userEffective: {title: '用户有效性 0:无效 1:有效 2 : 待定 取自字典表',order: 7,view: 'number', type: 'number',},
|
|
|
+ sensitiveMessage: {title: '敏感信息',order: 8,view: 'textarea', type: 'string',},
|
|
|
+ phase: {title: '询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)',order: 9,view: 'text', type: 'string',},
|
|
|
+ trackStatus: {title: '跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)',order: 10,view: 'text', type: 'string',},
|
|
|
+ uid: {title: '询盘所属用户主账号ID',order: 11,view: 'text', type: 'string',},
|
|
|
+ tracker: {title: '询盘跟进人 id',order: 12,view: 'number', type: 'number',},
|
|
|
+ recordCtime: {title: '询盘创建时间',order: 13,view: 'datetime', type: 'string',},
|
|
|
+ ctime: {title: 'ADMP平台创建时间',order: 14,view: 'datetime', type: 'string',},
|
|
|
+ country: {title: '国家/地区(根据ip获取)',order: 15,view: 'text', type: 'string',},
|
|
|
+ countryIsoCode: {title: '通过ip解析获得国家码',order: 16,view: 'text', type: 'string',},
|
|
|
+ areaIsoCode: {title: '通过ip解析获得区域码',order: 17,view: 'text', type: 'string',},
|
|
|
+ pluginName: {title: '询盘插件名称,名称小写,如:wpforms',order: 18,view: 'text', type: 'string',},
|
|
|
+ siteCode: {title: '站点code,关联站点表',order: 19,view: 'text', type: 'string',},
|
|
|
+ siteToken: {title: '站点token',order: 20,view: 'text', type: 'string',},
|
|
|
+ siteHost: {title: '询盘来自站点的域名',order: 21,view: 'text', type: 'string',},
|
|
|
+ recordId: {title: '询盘原站点记录ID',order: 22,view: 'text', type: 'string',},
|
|
|
+ utime: {title: '状态更新时间',order: 23,view: 'datetime', type: 'string',},
|
|
|
+ replyTime: {title: '回复时间',order: 24,view: 'datetime', type: 'string',},
|
|
|
+ forward: {title: '转发状态:0未转发,1已转发,默认值0',order: 25,view: 'number', type: 'number',},
|
|
|
+ forwardTime: {title: '转发时间',order: 26,view: 'datetime', type: 'string',},
|
|
|
+ visitId: {title: '访客id',order: 27,view: 'text', type: 'string',},
|
|
|
+ siteId: {title: '来源于站点的id',order: 28,view: 'number', type: 'number',},
|
|
|
+ companyId: {title: '公司id',order: 29,view: 'number', type: 'number',},
|
|
|
+ contactIds: {title: '联系人id,字符串组合',order: 30,view: 'text', type: 'string',},
|
|
|
+ jobId: {title: '定时器任务修改查询唯一标识(10位随机数)',order: 31,view: 'text', type: 'string',},
|
|
|
+ replayStatus: {title: '回复状态',order: 32,view: 'text', type: 'string',},
|
|
|
+ noOut: {title: '外部编号',order: 33,view: 'text', type: 'string',},
|
|
|
+ modifyRecordCtime: {title: '处理后的询盘当地时间字段',order: 34,view: 'datetime', type: 'string',},
|
|
|
+ transContent: {title: 'transContent',order: 35,view: 'textarea', type: 'string',},
|
|
|
+ countryCode: {title: '国家code',order: 36,view: 'text', type: 'string',},
|
|
|
+ countryName: {title: '国家名',order: 37,view: 'text', type: 'string',},
|
|
|
+ whatsApp: {title: 'whatsApp',order: 38,view: 'text', type: 'string',},
|
|
|
+ wasteEnquiry: {title: '0:不是;1:是',order: 39,view: 'number', type: 'number',},
|
|
|
+ pushStatus: {title: '推送状态,0:待发送,1:成功,2不予发送',order: 40,view: 'number', type: 'number',},
|
|
|
+ pushErrorNum: {title: '推送错误次数',order: 41,view: 'number', type: 'number',},
|
|
|
+ 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',},
|
|
|
+ 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',},
|
|
|
+ whatsapp: {title: 'whatsapp',order: 49,view: 'text', type: 'string',},
|
|
|
+ readStatus: {title: '阅读状态,0是未阅读,1是已阅读',order: 50,view: 'number', type: 'number',},
|
|
|
+ principalUid: {title: '负责人的id',order: 51,view: 'text', type: 'string',},
|
|
|
+ principalType: {title: '0代表系统根据规则分配,1代表主账户指定',order: 52,view: 'number', type: 'number',},
|
|
|
+ address: {title: 'form表单中的地址',order: 53,view: 'textarea', type: 'string',},
|
|
|
+ specialField: {title: '客户自定义字段',order: 54,view: 'textarea', type: 'string',},
|
|
|
+ requestTime: {title: '向Wp发送请求时间',order: 55,view: 'datetime', type: 'string',},
|
|
|
+ acquireMessageTime: {title: 'Adweb实时获取WebHookS消息时间,定时器无该值',order: 56,view: 'datetime', type: 'string',},
|
|
|
+ effectiveReason: {title: '疑似垃圾询盘理由',order: 57,view: 'text', type: 'string',},
|
|
|
+ wasteEnquiryType: {title: '垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other',order: 58,view: 'text', type: 'string',},
|
|
|
+ cartItems: {title: '询盘关联产品',order: 59,view: 'textarea', type: 'string',},
|
|
|
+};
|