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/product/components/addindexdialog.vue | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/views/product/components/addindexdialog.vue b/src/views/product/components/addindexdialog.vue
index 2f58a52..e434704 100644
--- a/src/views/product/components/addindexdialog.vue
+++ b/src/views/product/components/addindexdialog.vue
@@ -127,35 +127,35 @@
props: {
getinit: {
type: Function,
- default: function () {},
- },
+ default: function () {}
+ }
},
- 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 }
},
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) {
@@ -179,7 +179,7 @@
})
}
})
- },
- },
+ }
+ }
}
</script>
--
Gitblit v1.9.3