Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 4 years ago
parent
commit
8dbfb771e8

+ 1 - 1
src/xt_pages/outpatientCharges/components/registerDialog9504.vue View File

@@ -448,7 +448,7 @@
448 448
               if (that.form.id_card_type == 1) {
449 449
                 that.form.id = patient.id
450 450
                 that.form.name = patient.name
451
-                that.form.sex = patient.gender
451
+                that.form.sex = patient.gender.toString()
452 452
                 that.form.age = patient.age
453 453
                 that.form.birthday = uParseTime(patient.birthday, '{y}-{m}-{d}')
454 454
                 that.form.phone = patient.phone

+ 2 - 2
src/xt_pages/outpatientRegistration/index.vue View File

@@ -701,7 +701,7 @@
701 701
                 that.form.age = patient.age
702 702
                 that.form.birthday = uParseTime(patient.birthday, '{y}-{m}-{d}')
703 703
                 that.form.phone = patient.phone
704
-                that.form.id_card = patient.id_card_no
704
+                that.form.idCard = patient.id_card_no
705 705
                 that.form.medicalInsuranceCard = response.data.data.health_card_no
706 706
               } else if (that.form.id_card_type == 2) {
707 707
                 this.form.id = patient.id
@@ -710,7 +710,7 @@
710 710
                 that.form.age = patient.age
711 711
                 that.form.birthday = uParseTime(patient.birthday, '{y}-{m}-{d}')
712 712
                 that.form.phone = patient.phone
713
-                that.form.id_card = patient.id_card_no
713
+                that.form.idCard = patient.id_card_no
714 714
               }
715 715
               that.$message({ message: '读卡成功', type: 'success' })
716 716