test_user 1 yıl önce
ebeveyn
işleme
244eb0cd88

+ 15 - 3
src/xt_pages/outpatientRecord/outpatientRecord.vue Dosyayı Görüntüle

@@ -47,12 +47,17 @@
47 47
                 </el-table-column>
48 48
                 <el-table-column align="center" prop="name" label="地址">
49 49
                     <template slot-scope="scope">
50
-                        {{scope.row.home_address}}
50
+                        {{scope.row.homel__address}}
51 51
                     </template>
52 52
                 </el-table-column>
53
+              <el-table-column align="center" prop="name" width="160" label="鉴定定点医药机构编码">
54
+                <template slot-scope="scope">
55
+                  <el-input v-model="hospital_code"></el-input>
56
+                </template>
57
+              </el-table-column>
53 58
                 <el-table-column align="center" prop="name" width="160" label="鉴定定点医药机构">
54 59
                     <template slot-scope="scope">
55
-                        {{$store.getters.xt_user.org.org_name}}
60
+                       <el-input v-model="hospital_name"></el-input>
56 61
                     </template>
57 62
                 </el-table-column>
58 63
                 <el-table-column align="center" prop="name" label="医生">
@@ -225,6 +230,8 @@
225 230
         start_date:'',
226 231
         end_date:"",
227 232
         check_date:"",
233
+        hospital_code:"",
234
+        hospital_name:"",
228 235
         datas: [
229 236
           {
230 237
             id: 0,
@@ -558,6 +565,9 @@
558 565
           return
559 566
         }
560 567
 
568
+
569
+
570
+
561 571
         let params = {
562 572
           record_type: 0,
563 573
           patient_id: this.currentObject.id,
@@ -569,7 +579,9 @@
569 579
           sick_id: this.currentObject.record.sick_type,
570 580
           doctor_id: this.currentObject.record.doctor_id,
571 581
           department_id:this.currentObject.record.department_id,
572
-          admin_user_id: this.$store.getters.xt_user.user.id
582
+          admin_user_id: this.$store.getters.xt_user.user.id,
583
+          hospital_name:this.hospital_name,
584
+          hospital_code: this.hospital_code,
573 585
         };
574 586
 
575 587
         var that = this;