api.ts 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. export const MOD = '/order'
  2. export const IMPOERMOD = 'Order'
  3. export const GETSYSFILED = "/sys-dict/getListByCode";
  4. export const GETPERSONNEL = "/user/getSimpleActiveUserList";
  5. export const GETGENERATEFOEM = `/sys-form/getListByCode${MOD}`
  6. export const GETALLPRODUCT = `/sys-form/getListByCode/Order`
  7. export const GETTABLELISTPRODUCT = `/product/list`
  8. export const GETTABLELIST = `${MOD}/list`
  9. export const URL_OEDERUPDATE = `${MOD}/addOrUpdate`
  10. export const URL_PRODUTWITHORDER = `${MOD}/productWithOrder`
  11. export const tableColumns: TableColumn[] = [
  12. { prop: 'orderCode', label: '订单编号', event: 'toDetali', width: '150' },
  13. { prop: 'orderName', label: '订单名称', width: '150' },
  14. { prop: 'customName', label: '客户名称', width: '200' },
  15. { prop: 'businessOpportunityName', label: '商机名称', width: '200' },
  16. { prop: 'price', label: '订单金额', width: '100' },
  17. { prop: 'receivedPayment', label: '已回款', width: '100' },
  18. { prop: 'unReceivedPayment', label: '未回款', width: '100' },
  19. { prop: 'status', label: '回放状态', width: '100' },
  20. { prop: 'typeName', label: '订单类型', width: '200' },
  21. { prop: 'placeTime', label: '下单时间', width: '200' },
  22. { prop: 'orderStartDate', label: '订单开始时间', width: '200' },
  23. { prop: 'orderEndDate', label: '订单结束时间', width: '200' },
  24. { prop: 'customSigner', label: '客户签的人', width: '200' },
  25. { prop: 'companySigner', label: '公司签的人', width: '200' },
  26. { prop: 'inchargerName', label: '负责人', width: '200' },
  27. { prop: 'creatorName', label: '创建人', width: '200' },
  28. { prop: 'createTime', label: '创建时间', width: '200' },
  29. ]