|
@@ -327,18 +327,24 @@
|
|
|
NET.request(API.getQrCodeInfo, {
|
|
|
orderNo: res.result
|
|
|
}, 'POST').then(res => {
|
|
|
- this.form.imageFileId = res.data.imageFileId
|
|
|
- this.fileList = [{
|
|
|
- url: res.data.imageFileUrl
|
|
|
- }]
|
|
|
this.form.parentsName = res.data.parentsName
|
|
|
this.form.studentName = res.data.studentName
|
|
|
this.form.sex = res.data.sex
|
|
|
this.form.age = res.data.age
|
|
|
this.form.birthday = res.data.birthday
|
|
|
this.form.phone = res.data.phone
|
|
|
- this.form.payTypeId = res.data.payTypeId
|
|
|
- this.form.payTypeName = res.data.payTypeName
|
|
|
+ if (res.data.payTypeId) {
|
|
|
+ let payType = this.payTypeList.find(site => site.id == res.data.payTypeId)
|
|
|
+ this.form.payTypeId = res.data.payTypeId
|
|
|
+ this.form.payTypeName = payType.id
|
|
|
+ this.form.payTypeCode = payType.other
|
|
|
+ }
|
|
|
+ if (res.data.imageFileId) {
|
|
|
+ this.form.imageFileId = res.data.imageFileId
|
|
|
+ this.fileList = [{
|
|
|
+ url: res.data.imageFileUrl
|
|
|
+ }]
|
|
|
+ }
|
|
|
this.form.orderNo = res.data.orderNo
|
|
|
}).catch(error => {
|
|
|
this.$refs.uTips.show({
|