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/allotment/allotmentSetting.vue |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/views/allotment/allotmentSetting.vue b/src/views/allotment/allotmentSetting.vue
index ce9dffb..010fba0 100644
--- a/src/views/allotment/allotmentSetting.vue
+++ b/src/views/allotment/allotmentSetting.vue
@@ -106,9 +106,9 @@
 export default {
   name: 'Setting',
   components: {
-    FooterToolBar,
+    FooterToolBar
   },
-  data() {
+  data () {
     return {
       form: this.$form.createForm(this),
       loading: false,
@@ -128,15 +128,15 @@
         'tradingCommissionRate',
         'stampDutyRate',
         'profitSharingRatio',
-        'earlyTerminationInterest',
-      ],
+        'earlyTerminationInterest'
+      ]
     }
   },
-  mounted() {
+  mounted () {
     this.getdetail()
   },
   methods: {
-    handleSubmit(e) {
+    handleSubmit (e) {
       e.preventDefault()
       this.form.validateFields((err, values) => {
         var that = this
@@ -155,7 +155,7 @@
         })
       })
     },
-    getdetail() {
+    getdetail () {
       var that = this
       this.loading = true
       getFundsSetting().then((res) => {
@@ -166,8 +166,8 @@
           that.loading = false
         }, 500)
       })
-    },
-  },
+    }
+  }
 }
 </script>
 <style lang="less" scoped>

--
Gitblit v1.9.3