From 8c3fe58c2e0afbd60cb8e197bbdf7a7ef295e77f Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Tue, 11 Jun 2024 16:24:56 +0800
Subject: [PATCH] 123
---
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