大件运输联网系统前端代码
guoshilong
2022-12-26 a94f19a21fe2098811339aa916869b0ab923536c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export default {
  height:'auto',
  calcHeight: 30,
  tip: false,
  searchShow: true,
  searchMenuSpan: 6,
  border: true,
  index: true,
  viewBtn: true,
  selection: true,
  dialogClickModal: false,
  submitBtn:false,
  emptyBtn:false,
  column: [
    {
      label: "经办人姓名",
      prop: "name",
      type: "input",
      labelPosition:'left',
    },
    {
      label: "经办人身份证号",
      prop: "idCard",
      type: "input",
    },
    {
      label: "手机号",
      prop: "phone",
      type: "input",
    },
    {
      label: "通行开始时间",
      prop: "startPassTime",
      type: "input",
    },
    {
      label: "通行结束时间",
      prop: "endPassTime",
      type: "input",
    },
    {
      label: "起运机构",
      prop: "transportDept",
      type: "input",
    },
    {
      label: "途径省份",
      prop: "passProvince",
      type: "input",
    },
    {
      label: "出发地",
      prop: "departure",
      type: "input",
    },
    {
      label: "目的地",
      prop: "destination",
      type: "input",
    },
    {
      label: "通行路线",
      prop: "pathway",
      type: "input",
    },
    {
      label: "通行桥涵",
      prop: "passBirdge",
      type: "input",
    },
  ]
}