config.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. export const SearchFormBuyOrder = [
  2. {
  3. type: "input",
  4. label: "订单编号",
  5. field: "id",
  6. value: "", // 双向绑定的值
  7. },
  8. {
  9. type: "select",
  10. label: "审核状态",
  11. field: "moderationStatus",
  12. options: [], // 默认空,后面会通过字典加载
  13. dict: "orderType",
  14. value: "", // 双向绑定的值
  15. width: "200",
  16. },
  17. {
  18. type: "input",
  19. label: "客户名称",
  20. field: "userName",
  21. value: "", // 双向绑定的值
  22. },
  23. {
  24. type: "select",
  25. label: "沉默期",
  26. field: "periodOfSilence",
  27. options: [], // 默认空,后面会通过字典加载
  28. dict: "silenceOf",
  29. value: "", // 双向绑定的值
  30. width: "200",
  31. },
  32. {
  33. type: "select",
  34. label: "卡类型",
  35. field: "simType",
  36. options: [], // 默认空,后面会通过字典加载
  37. dict: "cardType",
  38. value: "", // 双向绑定的值
  39. width: "200",
  40. },
  41. {
  42. type: "select",
  43. label: "运营商名称",
  44. field: "source",
  45. options: [], // 默认空,后面会通过字典加载
  46. dict: "source",
  47. value: "", // 双向绑定的值
  48. width: "200",
  49. },
  50. {
  51. type: "date-picker",
  52. label: "下单时间",
  53. field: "createdAt",
  54. value: "", // 双向绑定的值
  55. width: "200",
  56. },
  57. {
  58. type: "date-picker",
  59. label: "有效期",
  60. field: "endData",
  61. value: "", // 双向绑定的值
  62. width: "200",
  63. },
  64. ];