2 Commits a1d4133649 ... ac9aff1c2e

Author SHA1 Message Date
  陈少旭 ac9aff1c2e Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch 1 day ago
  陈少旭 421754db96 1111 1 day ago
1 changed files with 33 additions and 1 deletions
  1. 33 1
      src/xt_pages/hospitalStation/index.vue

+ 33 - 1
src/xt_pages/hospitalStation/index.vue View File

61
             </el-select>
61
             </el-select>
62
           </el-form-item>
62
           </el-form-item>
63
 
63
 
64
+          <el-form-item label="是否已经申请无卡(广州地区用):" prop="id_no_card" >
65
+            <el-select v-model="form.id_no_card" placeholder="请选择">
66
+              <el-option
67
+                v-for="item in CardTypes"
68
+                :key="item.value"
69
+                :label="item.label"
70
+                :value="item.value">
71
+              </el-option>
72
+            </el-select>
73
+          </el-form-item>
74
+
64
 
75
 
65
           <el-form-item label="结算类型:">
76
           <el-form-item label="结算类型:">
66
             <el-select v-model="form.settlement_value" placeholder="请选择" style="width:100%;">
77
             <el-select v-model="form.settlement_value" placeholder="请选择" style="width:100%;">
267
         { path: false, name: '住院登记' }
278
         { path: false, name: '住院登记' }
268
       ],
279
       ],
269
       form: {
280
       form: {
281
+        id_no_card:0,
270
         social_type: '',
282
         social_type: '',
271
         psn_type: '',
283
         psn_type: '',
272
         start_time: '',
284
         start_time: '',
305
       }, {
317
       }, {
306
         value: 6,
318
         value: 6,
307
         label: '港澳地区身份证'
319
         label: '港澳地区身份证'
308
-      }],
320
+      }],CardTypes:[
321
+        {
322
+          value: 0,
323
+          label: '否'
324
+        },
325
+        {
326
+          value: 1,
327
+          label: '是'
328
+        }
329
+      ],
309
 
330
 
310
       IDCardTypes: [{
331
       IDCardTypes: [{
311
         value: 1,
332
         value: 1,
316
       }, {
337
       }, {
317
         value: 4,
338
         value: 4,
318
         label: '电子凭证'
339
         label: '电子凭证'
340
+      },{
341
+        value: 5,
342
+        label: '无卡就医申请(广州)'
319
       }],
343
       }],
320
       rules: {
344
       rules: {
321
         name: [{ required: true, message: '患者姓名不能为空', trigger: 'blur' }],
345
         name: [{ required: true, message: '患者姓名不能为空', trigger: 'blur' }],
786
         return
810
         return
787
       }
811
       }
788
 
812
 
813
+      if (this.form.insuplc_admdvs == '') {
814
+        this.$message.error('参保地不能为空')
815
+        return
816
+      }
817
+
789
       if (this.form.sick_type == '') {
818
       if (this.form.sick_type == '') {
790
         this.$message.error('大病类别不能为空')
819
         this.$message.error('大病类别不能为空')
791
         this.is_Name = true
820
         this.is_Name = true
832
             med_type: this.form.med_type,
861
             med_type: this.form.med_type,
833
             diagnosis: this.form.diagnosis,
862
             diagnosis: this.form.diagnosis,
834
             sick_type: this.form.sick_type,
863
             sick_type: this.form.sick_type,
864
+            is_no_card:this.form.id_no_card,
835
             start_time: this.form.start_time,
865
             start_time: this.form.start_time,
836
             social_type: this.form.social_type,
866
             social_type: this.form.social_type,
837
             psn_type: this.form.psn_type,
867
             psn_type: this.form.psn_type,
863
                 that.form.phone = ''
893
                 that.form.phone = ''
864
                 that.form.med_type = 14
894
                 that.form.med_type = 14
865
                 that.form.sick_type = that.sick[0].id
895
                 that.form.sick_type = that.sick[0].id
896
+                that.form.is_no_card = 0
866
                 that.form.diagnosis = that.diagnoses[0].id
897
                 that.form.diagnosis = that.diagnoses[0].id
867
               }
898
               }
868
             })
899
             })
898
                       that.form.department = ''
929
                       that.form.department = ''
899
                       that.form.phone = ''
930
                       that.form.phone = ''
900
                       that.form.med_type = 14
931
                       that.form.med_type = 14
932
+                      that.form.is_no_card = 0
901
                       that.form.sick_type = that.sick[0].id
933
                       that.form.sick_type = that.sick[0].id
902
                       that.form.diagnosis = that.diagnoses[0].id
934
                       that.form.diagnosis = that.diagnoses[0].id
903
                       that.form.certificates = 1
935
                       that.form.certificates = 1