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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
| <template>
| <a-modal
| :title="title"
| :visible="visible"
| centered
| :confirm-loading="confirmLoading"
| width="50%"
| cancelText="取消"
| okText="确认"
| @ok="onSubmit"
| @cancel="handleCancel"
| :afterClose="clearMod"
| >
| <a-form-model ref="ruleForm" :rules="rules" :model="form" :label-col="labelCol" :wrapper-col="wrapperCol" :colon="false">
| <a-form-model-item label="姓名或称呼" prop="name">
| <a-input v-model="form.name"/>
| </a-form-model-item>
| <a-form-model-item label="单位名称(备注)" prop="depName">
| <a-input v-model="form.depName"/>
| </a-form-model-item>
| <a-form-model-item label="手机号码" prop="phone">
| <a-input v-model="form.phone"/>
| </a-form-model-item>
| <a-form-model-item label="选择级别" prop="level">
| <a-select v-model="form.level" placeholder="监管级别">
| <a-select-option :value="1">
| 省级
| </a-select-option>
| <a-select-option :value="2">
| 地(市、州)级
| </a-select-option>
| <a-select-option :value="3">
| 区县级
| </a-select-option>
| <a-select-option :value="4">
| 村(乡、镇)级
| </a-select-option>
| </a-select>
| </a-form-model-item>
| <a-form-model-item label="所属地区" prop="area">
| <a-tree-select
| v-model="form.area"
| style="width: 100%"
| :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
| :tree-data="areaData"
| placeholder="行政区划"
| >
| </a-tree-select>
| </a-form-model-item>
| </a-form-model>
| </a-modal>
| </template>
|
| <script>
| import { addUser } from '@/api/user'
| export default {
| name: 'userMod',
| data () {
| return {
| title: '新增用户',
| visible: false,
| confirmLoading: false,
| labelCol: { span: 4 },
| wrapperCol: { span: 14 },
| areaData: [],
| unitName: '',
| form: {
| name: '',
| depName: '',
| phone: '',
| level: null,
| area: null
| },
| rules: {
| name: [{ required: true, message: '请输入姓名', trigger: 'blur'}],
| phone: [{ required: true, message: '请输入手机号', trigger: 'blur'}],
| depName: [{ required: true, message: '请输入单位名称', trigger: 'blur'}],
| level: [{ required: true, message: '请选择监管级别', trigger: 'change'}],
| area: [{ required: true, message: '请选择行政区划', trigger: 'change'}]
| }
| }
| },
| created() {
| const t = this
| },
| methods:{
| openDialog(type,data){
| const t = this
| if(type == 'add'){
| t.title = '新增用户'
| t.form = {
| name: '',
| depName: '',
| phone: '',
| level: null,
| area: null
| }
| }else{
| t.title = '编辑用户'
| t.form = data
| }
| t.visible = true
| },
|
| clearMod(){
| this.$refs.ruleForm.clearValidate()
| },
|
| onSubmit() {
| this.$refs.ruleForm.validate(valid => {
| if (valid) {
| alert('submit!');
| this.visible = false
| } else {
| return false;
| }
| });
| },
|
| handleOk(e) {
| const t = this
| t.confirmLoading = true;
| },
| handleCancel(e) {
| const t = this
| t.visible = false;
| },
| onChange(value) {
| console.log(value);
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
|
| </style>
|
|