From abcf89c0931fc453f4fd8e1d4d48b8b469d0f3c7 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Tue, 07 May 2024 10:19:31 +0800
Subject: [PATCH] xxx

---
 src/views/userlist/agentcomponents/addagentdialog.vue |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/views/userlist/agentcomponents/addagentdialog.vue b/src/views/userlist/agentcomponents/addagentdialog.vue
index 8c6d819..07519a0 100644
--- a/src/views/userlist/agentcomponents/addagentdialog.vue
+++ b/src/views/userlist/agentcomponents/addagentdialog.vue
@@ -58,36 +58,36 @@
   props: {
     getinit: {
       type: Function,
-      default: function () {},
+      default: function () {}
     },
     agentlist: {
-      type: Array,
-    },
+      type: Array
+    }
   },
-  data() {
+  data () {
     return {
       labelCol: {
         xs: { span: 24 },
-        sm: { span: 7 },
+        sm: { span: 7 }
       },
       wrapperCol: {
         xs: { span: 24 },
-        sm: { span: 13 },
+        sm: { span: 13 }
       },
       addUserform: this.$form.createForm(this),
       addUserdialog: false,
-      addUserDialogloading: false,
+      addUserDialogloading: false
     }
   },
   methods: {
     // 新增用户取消弹窗
-    CanceladdUserdialog() {
+    CanceladdUserdialog () {
       this.addUserdialog = false
       const form = this.$refs.addUserform.form
       form.resetFields()
     },
     // 新增用户确定
-    OkaddUserdialog() {
+    OkaddUserdialog () {
       const form = this.$refs.addUserform.form
       form.validateFields((errors, values) => {
         if (!errors) {
@@ -105,7 +105,7 @@
           })
         }
       })
-    },
-  },
+    }
+  }
 }
 </script>

--
Gitblit v1.9.3