123456789101112131415161718192021222324252627282930313233343536373839 |
- export const MOD = "/business";
- export const MODURL = "business";
- export const prefix = "/clue";
- export const GETSYSFILED = "/sys-dict/getListByCode";
- export const GETPERSONNEL = "/user/getSimpleActiveUserList";
- export const GETGENERATEFOEM = `/sys-form/getListByCode${MOD}`
- export const GETBUSINESSLIST = `/business-opportunity/list`
- export const UPDATEINSET = `/business-opportunity/insertAndUpdate`
- export const BUSINESSDETELE = `/business-opportunity/delete`
- export const BATCHTRANSFER = `/business-opportunity/claim`
- export const BUSIESS_DETELELIST = `/business-opportunity/deleterList`
- export const BUSIESS_ROWBACK = `/business-opportunity/rollBack`
- export const BUSIESS_PERDETELE = `/business-opportunity/deleterDelete`
- export const BUSIESS_GETSATE = `/business-opportunity/getStage`
- export const BUSIESS_SAVESAIE = `/business-opportunity/saveStage`
- export const BUSIESS_ALL = `/business-opportunity/getAll`
- export const BUSIESS_INFO = `/business-opportunity/getInfo`
- export const DETELEFILEFILE = `/business-opportunity/deleteFile`
- export const REFIENAMEFILE = `/business-opportunity/reFileName`
- export const UPLOADFILEFILE = `/business-opportunity/uploadFile`
- export const stageStatus = [
- { id: 1, name: "赢单", progress: "100%" },
- { id: 2, name: "输单", progress: "0%" },
- { id: 3, name: "无效", progress: "0%" }
- ]
- export const tableColumn: businessTableColumnInterface[] = [
- { prop: "name", label: "商机名称", width: "180", eventName: "toClueTableDetail" },
- { prop: "customerName", label: "客户名称", width: "180" },
- { prop: "contactsName", label: "联系人", width: "180", eventName: "showName" },
- { prop: "amountOfMoney", label: "商机金额", width: "180" },
- { prop: "stageValue", label: "商机阶段", width: "180" },
- { prop: "expectedTransactionDate", label: "预计成交", width: "180" },
- { prop: "inchargerName", label: "负责人", width: "180" },
- { prop: "creatorName", label: "创建人", width: "180" },
- { prop: "createTime", label: "创建时间", width: "180" }
- ]
|