config.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. export const columns = [
  2. { title: window.$t('dataPackage.id'), dataIndex: 'id', align: 'center', ellipsis: true },
  3. { title: '供应商', dataIndex: 'source', align: 'center', ellipsis: true },
  4. { title: '流量包名称', dataIndex: 'productName', align: 'center', ellipsis: true },
  5. { title: '地区名称', dataIndex: 'dataZoneName', align: 'center', ellipsis: true },
  6. { title: '套餐有效天数', dataIndex: 'validDays', align: 'center', ellipsis: true },
  7. { title: '套餐可用流量', dataIndex: 'total', align: 'center', ellipsis: true },
  8. { title: '语音呼入流量', dataIndex: 'voiceMt', align: 'center', ellipsis: true},
  9. { title: '语音呼出流量', dataIndex: 'voiceMo', align: 'center', ellipsis: true },
  10. { title: '短信总条数', dataIndex: 'smsTotal', align: 'center', ellipsis: true },
  11. { title: '默认限速', dataIndex: 'dataSpeedDefault', align: 'center', ellipsis: true },
  12. { title: '单次请求可用流量', dataIndex: 'dataQuota', align: 'center', ellipsis: true },
  13. { title:'有效期类型', dataIndex: 'validDayType', align: 'center', ellipsis: true },
  14. { title: '费率组名称', dataIndex: 'rateGroupName', align: 'center', ellipsis: true },
  15. { title: '语音呼出地区名称', dataIndex: 'zoneVoiceMtName', align: 'center', ellipsis: true },
  16. { title: '语音呼入地区名称', dataIndex: 'zoneVoiceMoName', align: 'center', ellipsis: true },
  17. { title: '流量使用地区名称', dataIndex: 'zoneDataName', align: 'center', ellipsis: true },
  18. { title: '短信使用地区名称', dataIndex: 'zoneSmsName', align: 'center', ellipsis: true},
  19. // {
  20. // title: window.$t('global.common.operations'),
  21. // dataIndex: 'id',
  22. // slotName: 'id',
  23. // align: 'center',
  24. // width: 180,
  25. // fixed: "right",
  26. // }
  27. ]
  28. export const SearchFormList = [
  29. {
  30. type: "select",
  31. label: "供应商名称",
  32. field: "source",
  33. options: [], // 默认空,后面会通过字典加载
  34. dict: "source",
  35. value: "", // 双向绑定的值
  36. width: "200",
  37. },
  38. {
  39. type: "input",
  40. label: "流量包名称",
  41. field: "userName",
  42. value: "", // 双向绑定的值
  43. },
  44. {
  45. type: "input",
  46. label: "地区名称",
  47. field: "userName",
  48. value: "", // 双向绑定的值
  49. },
  50. {
  51. type: "input",
  52. label: "套餐有效天数",
  53. field: "userName",
  54. value: "", // 双向绑定的值
  55. },
  56. {
  57. type: "input",
  58. label: "套餐可用流量",
  59. field: "userName",
  60. value: "", // 双向绑定的值
  61. },
  62. {
  63. type: "input",
  64. label: "默认限速",
  65. field: "userName",
  66. value: "", // 双向绑定的值
  67. },
  68. {
  69. type: "input",
  70. label: "流量使用地区名称",
  71. field: "userName",
  72. value: "", // 双向绑定的值
  73. },
  74. {
  75. type: "input",
  76. label: "短信使用地区名称",
  77. field: "userName",
  78. value: "", // 双向绑定的值
  79. },
  80. {
  81. type: "input",
  82. label: "语音呼出地区名称",
  83. field: "userName",
  84. value: "", // 双向绑定的值
  85. },
  86. {
  87. type: "input",
  88. label: "语音呼入地区名称",
  89. field: "userName",
  90. value: "", // 双向绑定的值
  91. }
  92. ]