123456789101112131415161718192021222324252627282930313233343536 |
- export const MOD = '/order'
- export const IMPORTMOD = '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/Order`
- export const GETTABLELISTPRODUCT = `/product/list`
- export const GETTABLELIST = `${MOD}/list`
- export const URL_OEDERUPDATE = `${MOD}/addOrUpdate`
- export const URL_PRODUTWITHORDER = `${MOD}/productWithOrder`
- export const URL_DETELEITEM = `${MOD}/delete`
- export const EXPORTTIME = `${MOD}/exportData`
- export const IMPORITEM = `${MOD}/importData`
- export const URL_BATCHDELETE = `${MOD}/batchDeleteOrder`
- export const URL_RECOVER = `${MOD}/recover`
- export const tableColumns: TableColumn[] = [
- { prop: 'orderCode', label: '订单编号', event: 'toDetali', width: '150' },
- { prop: 'orderName', label: '订单名称', width: '150' },
- { prop: 'customName', label: '客户名称', width: '200' },
- { prop: 'businessOpportunityName', label: '商机名称', width: '200' },
- { prop: 'price', label: '订单金额', width: '100' },
- { prop: 'receivedPayment', label: '已回款', width: '100' },
- { prop: 'unReceivedPayment', label: '未回款', width: '100' },
- { prop: 'status', label: '回放状态', width: '100' },
- { prop: 'typeName', label: '订单类型', width: '200' },
- { prop: 'placeTime', label: '下单时间', width: '200' },
- { prop: 'orderStartDate', label: '订单开始时间', width: '200' },
- { prop: 'orderEndDate', label: '订单结束时间', width: '200' },
- { prop: 'customSigner', label: '客户签的人', width: '200' },
- { prop: 'companySigner', label: '公司签的人', width: '200' },
- { prop: 'inchargerName', label: '负责人', width: '200' },
- { prop: 'creatorName', label: '创建人', width: '200' },
- { prop: 'createTime', label: '创建时间', width: '200' },
- ]
|