123456789101112131415161718192021222324252627282930313233343536 |
- export const MOD = '/order'
- export const GETSYSFILED = "/sys-dict/getListByCode";
- export const GETPERSONNEL = "/user/getSimpleActiveUserList";
- export const GETGENERATEFOEM = `/sys-form/getListByCode${MOD}`
- export const GETALLPRODUCT = `/sys-form/getListByCode/product`
- export const GETTABLELIST = `${MOD}/list`
- export const actionButtons: any[] = [
- { text: '新建订单' },
- { text: '批量转移' },
- { text: '批量删除' },
- { text: '回收站' },
- { text: '导入' },
- { text: '导出' },
- ]
- export const tableColumns: TableColumn[] = [
- { prop: 'name', label: '订单编号', event: 'toDetali', width: '150' },
- { prop: 'mobile', label: '订单名称', width: '150' },
- { prop: 'email', label: '客户名称', width: '200' },
- { prop: 'wechat', label: '商机名称', width: '200' },
- { prop: 'position', label: '订单金额', width: '100' },
- { prop: 'company', label: '已回款', width: '100' },
- { prop: 'companya', label: '未回款', width: '100' },
- { prop: 'companyb', label: '回放状态', width: '100' },
- { prop: 'companyc', label: '订单类型', width: '200' },
- { prop: 'companyd', label: '下单时间', width: '200' },
- { prop: 'companye', label: '订单开始时间', width: '200' },
- { prop: 'companyf', label: '订单结束时间', width: '200' },
- { prop: 'companyg', label: '客户签的人', width: '200' },
- { prop: 'companyh', label: '公司签的人', width: '200' },
- { prop: 'companyj', label: '负责人', width: '200' },
- { prop: 'companyk', label: '创建人', width: '200' },
- { prop: 'companyl', label: '创建时间', width: '200' },
- ]
|