Explorar o código

Signed-off-by: liuboyan <632697560@qq.com>
bug

liuboyan %!s(int64=4) %!d(string=hai) anos
pai
achega
32fc0eaf7f
Modificáronse 2 ficheiros con 14 adicións e 6 borrados
  1. 2 0
      pages/index/index.vue
  2. 12 6
      pagesEnroll/enrolledForm.vue

+ 2 - 0
pages/index/index.vue

@@ -311,6 +311,8 @@
 		.class-show-box {
 			width: calc(100% + 32px);
 			margin: 0 -16px;
+			float: left;
+			padding-bottom: 50px;
 
 			.class-show-card {
 				width: calc(50% - 16px);

+ 12 - 6
pagesEnroll/enrolledForm.vue

@@ -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({