2 Commits a1d4133649 ... ac9aff1c2e

Autor SHA1 Mensagem Data
  陈少旭 ac9aff1c2e Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch 1 dia atrás
  陈少旭 421754db96 1111 1 dia atrás
1 arquivos alterados com 33 adições e 1 exclusões
  1. 33 1
      src/xt_pages/hospitalStation/index.vue

+ 33 - 1
src/xt_pages/hospitalStation/index.vue Ver arquivo

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