RepayAccountModal.vue
8.84 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<template>
<a-modal
:title="title"
:width="800"
:centered="true"
:visible="visible"
:confirmLoading="confirmLoading"
@ok="handleSubmit"
@cancel="handleCancel"
cancelText="关闭"
style="top:20px;"
:maskClosable="false"
>
<a-spin :spinning="confirmLoading">
<a-form :form="form">
<a-form-item label="还款类型:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select
v-decorator="[ 'repaymentType', validatorRules.repaymentType]"
@change="handleChange"
placeholder="请选择还款类型"
>
<!-- <a-select-option value=''>请选择</a-select-option> -->
<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>
</a-form-item>
<template v-if="show != ''">
<a-form-item label="编号:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入编号" :disabled="type=='edit'"
v-decorator="[ 'repaymentAccountNo', {rules: [{required: true,message: '请输入编号'}]}]"
/>
</a-form-item>
<a-form-item label="名称:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入名称" :disabled="type=='edit'"
v-decorator="[ 'repaymentAccountName', {rules: [{required: true,message: '请输入名称'}]}]"
/>
</a-form-item>
</template>
<template v-if="show == 1">
<a-form-item label="开户名:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入开户名"
v-decorator="[ 'offlineBankAccountName', {rules: [{required: true,message: '请输入编号'}]}]"
/>
</a-form-item>
<a-form-item label="帐号:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入帐号"
v-decorator="[ 'offlineBankAccountNo', {rules: [{required: true,message: '请输入帐号'}]}]"
/>
</a-form-item>
<a-form-item label="开户支行:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入开户支行"
v-decorator="[ 'offlineBankBranchName', {rules: [{required: true,message: '请输入开户支行'}]}]"
/>
</a-form-item>
<a-form-item label="开户行:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
placeholder="请输入开户行"
v-decorator="[ 'offlineBankName', {rules: [{required: true,message: '请输入开户行'}]}]"
/>
</a-form-item>
<!-- <a-form-item label="还款备注:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select
v-decorator="[ 'offlineRemark', {rules: [{required: true,message: '请选择还款备注'}]}]"
>
<a-select-option value>请选择</a-select-option>
<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>
</a-form-item>-->
</template>
<template v-else-if="show != ''">
<a-form-item label="还款商户" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select
v-decorator="[ 'onlineAccountType', {rules: [{required: true,message: '请选择还款备注'}]}]"
>
<a-select-option value=''>请选择</a-select-option>
<!-- <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>
</a-form-item>
</template>
<template v-if="show != ''">
<a-form-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-textarea rows="4" placeholder="备注" v-decorator="['remark', {}]" />
</a-form-item>
</template>
</a-form>
</a-spin>
</a-modal>
</template>
<script>
import { insertRepaymentAccount, updateRepaymentAccount } from '@/api/configApi'
import pick from 'lodash.pick'
export default {
name: 'PasswordModal',
data() {
return {
visible: false,
confirmLoading: false,
confirmDirty: false,
title: '',
show: false,
type:'add',
validatorRules: {
repaymentType: {
// initialValue:repaymentType,
rules: [
{
required: true,
message: '请选择还款类型'
}
]
}
},
model: {
repaymentType:'',
repaymentAccountNo: '',
repaymentAccountName: '',
offlineBankAccountName: '',
offlineBankAccountNo: '',
offlineBankBranchName: '',
offlineBankName: '',
offlineRemark: '',
remark: '',
onlineAccountType: ''
},
labelCol: {
xs: { span: 24 },
sm: { span: 5 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 }
},
form: this.$form.createForm(this)
}
},
beforeCreate() {
// this.from = this.$form.createForm(this)
},
created() {},
watch: {
'model.repaymentType': {
handler(newName, oldName) {
this.model.repaymentType = newName
},
deep: true,
immediate: true
}
},
methods: {
edit(recodes) {
this.form.resetFields()
this.show = recodes.repaymentType
this.visible = true
this.model = recodes
// switch (this.model.repaymentType) {
// // 还款类型:1线下还款、2支付宝代扣、3银行卡代扣
// case 1:
// this.model.defaultValue = '线下还款'
// break
// case 2:
// this.model.defaultValue = '支付宝代扣'
// break
// case 3:
// this.model.defaultValue = '银行卡代扣'
// break
// default:
// this.model.defaultValue = '请选择'
// break
// }
this.type = 'edit'
console.log(recodes)
this.$nextTick(() => {
this.form.setFieldsValue(recodes)
})
},
add(recodes) {
this.form.resetFields()
this.visible = true
this.show = '';
this.type = 'add'
this.$nextTick(() => {
this.form.setFieldsValue()
})
},
onChange() {},
handleChange(value) {
this.show = value
},
close() {
this.$emit('close')
this.visible = false
this.disableSubmit = false
this.selectedRole = []
},
changeChart(key) {
switch (key) {
// 还款类型:1线下还款、2支付宝代扣、3银行卡代扣
case "1":
case '线下还款':
this.model.repaymentType = 1
break;
case "2":
case '支付宝代扣':
this.model.repaymentType = 2
break;
case "3":
case '银行卡代扣':
this.model.repaymentType = 3
break;
default:
this.model.repaymentType = ''
break;
}
},
handleSubmit() {
// 触发表单验证
this.form.validateFields((err, values) => {
console.log(values)
if (!err) {
this.confirmLoading = true
// this.changeChart(values.defaultValue);
let formData = Object.assign(values)
console.log(formData)
if (this.type == 'add') {
insertRepaymentAccount(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()
})
} else {
updateRepaymentAccount(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>