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/product/components/editindexdialog.vue |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/views/product/components/editindexdialog.vue b/src/views/product/components/editindexdialog.vue
index 63b8133..45ff30c 100644
--- a/src/views/product/components/editindexdialog.vue
+++ b/src/views/product/components/editindexdialog.vue
@@ -78,44 +78,44 @@
   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 }
       },
       editUserform: this.$form.createForm(this),
       editUserdialog: false,
       editUserDialogloading: false,
       fields: ['depositAmt', 'transFee', 'eachPoint', 'maxNum', 'minNum', 'homeShow', 'listShow', 'transState'],
-      currentDetails: {},
+      currentDetails: {}
     }
   },
   methods: {
-    getEditorder(val) {
+    getEditorder (val) {
       this.currentDetails = val
       this.editUserdialog = true
       this.fields.forEach((v) => this.editUserform.getFieldDecorator(v))
       this.editUserform.setFieldsValue(pick(val, this.fields))
     },
     // 新增用户取消弹窗
-    CanceleditUserdialog() {
+    CanceleditUserdialog () {
       this.editUserdialog = false
       const form = this.$refs.editUserform.form
       form.resetFields()
     },
     // 新增用户确定
-    OkeditUserdialog() {
+    OkeditUserdialog () {
       const form = this.$refs.editUserform.form
       form.validateFields((errors, values) => {
         if (!errors) {
@@ -134,7 +134,7 @@
           })
         }
       })
-    },
-  },
+    }
+  }
 }
 </script>

--
Gitblit v1.9.3