personLinkManModal.vue
4.56 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<template>
<a-modal
:title="title"
:width="800"
:centered="true"
:visible="visible"
:confirmLoading="confirmLoading"
@ok="handleSubmit"
@cancel="handleCancel"
cancelText="关闭"
:maskClosable="false"
style="top:20px;"
class="scope-link-man"
>
<a-spin :spinning="confirmLoading">
<a-form :form="form">
<a-row :gutter="24">
<a-col :span="12">
<a-form-item label="联系人姓名" :labelCol="{span:8}" :wrapperCol="{span:16}">
<a-input
placeholder="请输入联系人姓名"
v-decorator="[ 'contactsName', validatorRules.contactsName]"
/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="联系人手机号" :labelCol="{span:8}" :wrapperCol="{span:16}" hasFeedback>
<a-input
placeholder="请输入联系人手机号"
v-decorator="[ 'mobilePhone', {'initialValue':model?model.mobilePhone:'', rules: [
{
required: true,
message: '请输入有效的手机号'
}
]}]"
/>
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="24">
<a-col :span="12">
<a-form-item label="与联系人关系" :labelCol="{span:8}" :wrapperCol="{span:16}">
<a-select v-decorator="[ 'relation', validatorRules.relation]" placeholder="请选择">
<a-select-option
v-for="(item, index) in selectTionRelation"
:key="index"
:value="item.name"
>{{item.title}}</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="联系人地址" :labelCol="{span:8}" :wrapperCol="{span:16}" hasFeedback>
<a-input placeholder="请输入联系人地址" v-decorator="[ 'address']" />
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-spin>
</a-modal>
</template>
<script>
import { modifyCollCusContactInfo } from '@/api/configApi'
import pick from 'lodash.pick'
export default {
name: 'personLinkManModal',
data() {
return {
visible: false,
confirmLoading: false,
selectTionRelation: JSON.parse(sessionStorage.getItem('SELECTION_RELATION')), // 联系关系
title: '',
validatorRules: {
contactsName: {
rules: [
{
required: true,
message: '请输入姓名'
}
]
},
relation: {
rules: [
{
required: true,
message: '请输入与联系人的关系'
}
]
},
address: {
rules: [
{
required: true,
message: '请输入地址!'
}
]
}
},
model: {},
form: this.$form.createForm(this)
}
},
methods: {
edit(data) {
this.form.resetFields()
this.model = Object.assign({}, data)
console.log(this.model)
this.visible = true
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.model, 'contactsName', 'relation', 'address'))
})
},
add(applyNo) {
let data = { applyNo: applyNo }
this.model = Object.assign({}, data)
this.form.resetFields()
this.visible = true
},
close() {
this.$emit('close')
this.visible = false
this.disableSubmit = false
this.selectedRole = []
},
handleSubmit() {
// 触发表单验证
this.form.validateFields((err, values) => {
console.log(err, values)
if (!err) {
this.confirmLoading = true
let formData = Object.assign(this.model, values)
delete formData.mobilePhoneView
console.log(formData)
modifyCollCusContactInfo(formData)
.then(res => {
if (res.status.statusCode == 0) {
this.$message.success(res.status.statusReason)
this.$emit('ok')
} else {
this.$message.warning(res.status.statusReason)
}
})
.finally(() => {
this.confirmLoading = false
this.close()
})
}
})
},
handleCancel() {
this.close()
}
}
}
</script>
<style>
.scope-link-man .ant-modal-body {
overflow-y: scroll;
overflow-x: hidden;
min-height: 200px;
}
</style>