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/addfuturesdialog.vue |   33 +++++++++++++++++----------------
 1 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/src/views/product/components/addfuturesdialog.vue b/src/views/product/components/addfuturesdialog.vue
index 8121538..3e1a842 100644
--- a/src/views/product/components/addfuturesdialog.vue
+++ b/src/views/product/components/addfuturesdialog.vue
@@ -152,8 +152,9 @@
                   placeholder="单位"
                   v-decorator="['futuresUnit', { rules: [{ required: true, message: '单位' }] }]"
                 />
-                <span style="width: 800px; margin-left: 10px; line-height: 30px; align-items: center"
-                  >例如美原油:1标准手 = 1000桶</span
+                <span
+                  style="width: 800px; margin-left: 10px; line-height: 30px; align-items: center"
+                >例如美原油:1标准手 = 1000桶</span
                 >
               </div>
             </a-form-item>
@@ -169,56 +170,56 @@
   props: {
     getinit: {
       type: Function,
-      default: function () {},
+      default: function () {}
     },
     coinlist: {
       type: Array,
       default: function () {
         return []
-      },
-    },
+      }
+    }
   },
-  data() {
+  data () {
     return {
       labelCol: {
         xs: { span: 10 },
         sm: { span: 10 },
-        md: { span: 10 },
+        md: { span: 10 }
       },
       wrapperCol: {
         xs: { span: 14 },
         sm: { span: 14 },
-        md: { span: 14 },
+        md: { span: 14 }
       },
       labelCol1: {
         xs: { span: 10 },
         sm: { span: 10 },
-        md: { span: 6 },
+        md: { span: 6 }
       },
       wrapperCol1: {
         xs: { span: 14 },
         sm: { span: 14 },
-        md: { span: 18 },
+        md: { span: 18 }
       },
       labelCol2: {
         xs: { span: 4 },
         sm: { span: 4 },
-        md: { span: 4 },
+        md: { span: 4 }
       },
       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) {
@@ -237,8 +238,8 @@
             })
         }
       })
-    },
-  },
+    }
+  }
 }
 </script>
 <style lang="less" scoped>

--
Gitblit v1.9.3