1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
| <template>
| <a-modal
| title="操作"
| :width="600"
| :visible="visible"
| :confirmLoading="confirmLoading"
| @ok="handleOk"
| @cancel="handleCancel"
| >
| <a-spin :spinning="confirmLoading">
| <a-form :form="form">
|
| <a-form-item
| label="父级ID"
| >
| <a-input v-decorator="['parentId', {}]" disabled />
| </a-form-item>
|
| <a-form-item
| label="机构名称"
| >
| <a-input v-decorator="['orgName', {}]" />
| </a-form-item>
| </a-form>
| </a-spin>
| </a-modal>
| </template>
|
| <script>
| export default {
| name: 'OrgModal',
| data () {
| return {
| labelCol: {
| xs: { span: 24 },
| sm: { span: 5 }
| },
| wrapperCol: {
| xs: { span: 24 },
| sm: { span: 16 }
| },
| visible: false,
| confirmLoading: false,
| mdl: {}
| }
| },
| beforeCreate () {
| this.form = this.$form.createForm(this)
| console.log('form::', this.form)
| },
| created () {
|
| },
| methods: {
| add (id) {
| this.edit({ parentId: id })
| },
| edit (record) {
| this.mdl = Object.assign({}, record)
| this.visible = true
| this.$nextTick(() => {
| this.form.setFieldsValue({ ...record })
| })
| },
| close () {
| this.$emit('close')
| this.visible = false
| },
| handleOk () {
| const _this = this
| // 触发表单验证
| this.form.validateFields((err, values) => {
| // 验证表单没错误
| if (!err) {
| console.log('form values', values)
|
| _this.confirmLoading = true
| // 模拟后端请求 2000 毫秒延迟
| new Promise((resolve) => {
| setTimeout(() => resolve(), 2000)
| }).then(() => {
| // Do something
| _this.$message.success('保存成功')
| _this.$emit('ok')
| }).catch(() => {
| // Do something
| }).finally(() => {
| _this.confirmLoading = false
| _this.close()
| })
| }
| })
| },
| handleCancel () {
| this.close()
| }
|
| }
| }
| </script>
|
|