From a94f19a21fe2098811339aa916869b0ab923536c Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 26 Dec 2022 17:15:08 +0800
Subject: [PATCH] 添加车辆变更审批

---
 src/const/applicationDelay/applicationDelay.js |  107 +++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 95 insertions(+), 12 deletions(-)

diff --git a/src/const/applicationDelay/applicationDelay.js b/src/const/applicationDelay/applicationDelay.js
index 8d2776b..2605279 100644
--- a/src/const/applicationDelay/applicationDelay.js
+++ b/src/const/applicationDelay/applicationDelay.js
@@ -14,6 +14,7 @@
   viewBtn: true,
   selection: true,
   dialogClickModal: false,
+  menu:false,
   column: [
     {
       label: "主键",
@@ -36,8 +37,7 @@
         label:"no",
         value:"no"
       },
-      typeformat(item, label, value) {
-        console.log(item,label,value)
+      typeformat(item, label) {
         return `${item[label]}`
       },
       rules: [{required: true, trigger: ['blur','change'],message:'请输入申请编号'}]
@@ -52,7 +52,7 @@
       disabled:false,
     },
     {
-      label: "通行开始时间",
+      label: "通行结束时间",
       labelWidth:labelWidth,
       prop: "delayEndTime",
       type: "date",
@@ -61,13 +61,48 @@
       disabled:false,
     },
     {
-      label: "行驶路线",
-      span:12,
-      row: true,
+      label: "起运机构",
+      prop: "transportDept",
+      type: "input",
       labelWidth:labelWidth,
-      prop: "pathWay",
+      disabled:false,
+    },
+    {
+      label: "途径省份",
+      prop: "passProvince",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:false,
+    },
+    {
+      label: "出发地",
+      prop: "departure",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:false,
+    },
+    {
+      label: "目的地",
+      prop: "destination",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:false,
+    },
+    {
+      label: "通行路线",
+      prop: "pathway",
       type: "textarea",
       minRows:2,
+      labelWidth:labelWidth,
+      disabled:false,
+    },
+    {
+      label: "通行桥涵",
+      prop: "passBridge",
+      type: "textarea",
+      minRows:2,
+      labelWidth:labelWidth,
+      disabled:false,
     },
     {
       label: "延期原因",
@@ -88,6 +123,20 @@
       prop: "remark",
       type: "textarea",
       minRows:2,
+    },
+    {
+      label: "办理进度",
+      prop: "status",
+      type: "select",
+      props: {
+        label: "dictValue",
+        value: "dictKey"
+      },
+      dicUrl:'/api/blade-system/dict-biz/dictionary?code=application_status',
+      addDisplay: false,
+      editDisplay: false,
+      viewDisplay: false,
+      display:false,
     },
   ]
 }
@@ -127,7 +176,7 @@
       disabled:true,
     },
     {
-      label: "通行开始时间",
+      label: "通行结束时间",
       labelWidth:labelWidth,
       prop: "delayEndTime",
       type: "date",
@@ -136,14 +185,48 @@
       disabled:true,
     },
     {
-      label: "行驶路线",
-      span:12,
-      row: true,
+      label: "起运机构",
+      prop: "transportDept",
+      type: "input",
       labelWidth:labelWidth,
       disabled:true,
-      prop: "pathWay",
+    },
+    {
+      label: "途径省份",
+      prop: "passProvince",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:true,
+    },
+    {
+      label: "出发地",
+      prop: "departure",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:true,
+    },
+    {
+      label: "目的地",
+      prop: "destination",
+      type: "input",
+      labelWidth:labelWidth,
+      disabled:true,
+    },
+    {
+      label: "通行路线",
+      prop: "pathway",
       type: "textarea",
       minRows:2,
+      labelWidth:labelWidth,
+      disabled:true,
+    },
+    {
+      label: "通行桥涵",
+      prop: "passBridge",
+      type: "textarea",
+      minRows:2,
+      labelWidth:labelWidth,
+      disabled:true,
     },
     {
       label: "延期原因",

--
Gitblit v1.9.3