test_user 1 year ago
parent
commit
244eb0cd88
1 changed files with 15 additions and 3 deletions
  1. 15 3
      src/xt_pages/outpatientRecord/outpatientRecord.vue

+ 15 - 3
src/xt_pages/outpatientRecord/outpatientRecord.vue View File

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