From 65f9fa5194c436c8ed81c597fed8d1171f2ef52b Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Fri, 20 Aug 2021 09:32:07 +0800
Subject: [PATCH] 许可审批

---
 src/views/record/record.vue |   42 +++++++++++++++++++++++++++++++++++++++---
 1 files changed, 39 insertions(+), 3 deletions(-)

diff --git a/src/views/record/record.vue b/src/views/record/record.vue
index 2569443..4db1e95 100644
--- a/src/views/record/record.vue
+++ b/src/views/record/record.vue
@@ -124,7 +124,7 @@
     </el-dialog>
   </basic-container>
 </template>
- 
+
 <script>
 import { getList, getDetail, add, update, remove } from "@/api/record/record";
 import { mapGetters } from "vuex";
@@ -200,7 +200,43 @@
             ],
           },
           {
+            label: "法定代表人电话",
+            width: 150,
+            prop: "representativecell",
+            rules: [
+              {
+                required: true,
+                message: "请输入法定代表人电话",
+                trigger: "blur",
+              },
+            ],
+          },
+          {
+            label: "联系人",
+            prop: "contacts",
+            rules: [
+              {
+                required: true,
+                message: "请输入联系人",
+                trigger: "blur",
+              },
+            ],
+          },
+          {
+            label: "联系人电话",
+            width: 150,
+            prop: "contactscell",
+            rules: [
+              {
+                required: true,
+                message: "请输入联系人电话",
+                trigger: "blur",
+              },
+            ],
+          },
+          {
             label: "注册时间",
+            hide: true,
             prop: "establishtime",
             type: "date",
             format: "yyyy-MM-dd",
@@ -637,7 +673,7 @@
   },
 };
 </script>
- 
+
 <style scoped lang="scss">
 .dtype {
   width: 80px;
@@ -748,4 +784,4 @@
   align-content: center;
   justify-content: center;
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3