您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

cardFillDo.ts 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. export const Data = {
  2. search: {
  3. fileOne: '',
  4. fileTwo: '',
  5. fileThree: ''
  6. },
  7. table: {
  8. style: '',
  9. customDialog: false, //自定义Dialog (默认false)
  10. titleDialog: '补卡信息', //自定义Dialog标题
  11. extend: [{
  12. type: 'index',
  13. label: '序号',
  14. width: '80'
  15. }],
  16. field: [ //表格
  17. {
  18. prop: 'name',
  19. label: '客户名称',
  20. width: '120',
  21. overflow: true,
  22. form: {
  23. required: true,
  24. type: 'input',
  25. placeholder: '请输入客户名称'
  26. }
  27. }, {
  28. prop: 'name',
  29. label: '车牌号码',
  30. width: '120',
  31. form: {
  32. required: true,
  33. type: 'input',
  34. placeholder: '请输入车牌号码'
  35. }
  36. }, {
  37. prop: 'name',
  38. label: '车牌颜色',
  39. width: '120',
  40. form: {
  41. required: true,
  42. type: 'input',
  43. placeholder: '请输入车牌颜色'
  44. }
  45. }, {
  46. prop: 'name',
  47. label: '卡号',
  48. width: '180',
  49. form: {
  50. required: true,
  51. type: 'input',
  52. placeholder: '卡号'
  53. }
  54. }, {
  55. prop: 'name',
  56. label: '卡片状态',
  57. width: '120',
  58. form: {
  59. required: true,
  60. type: 'input',
  61. placeholder: '请输入卡片状态'
  62. }
  63. }, {
  64. prop: 'name',
  65. label: '卡片类型',
  66. width: '120',
  67. form: {
  68. required: true,
  69. type: 'input',
  70. placeholder: '请输入卡片类型'
  71. }
  72. },
  73. {
  74. prop: 'name',
  75. label: 'OBU编号',
  76. width: '180',
  77. form: {
  78. required: true,
  79. type: 'input',
  80. placeholder: 'OBU编号'
  81. }
  82. }, {
  83. prop: 'name',
  84. label: 'OBU状态',
  85. width: '',
  86. form: {
  87. required: true,
  88. type: 'input',
  89. placeholder: 'OBU状态'
  90. }
  91. },
  92. ],
  93. border: true,
  94. operateTitle: '操作',
  95. operateFixed: true,
  96. isOperate: true,
  97. operateWidth: '80px',
  98. operate: {
  99. edit: true,
  100. delete: false
  101. }
  102. }
  103. }