소스 검색

结算单

test_user 2 년 전
부모
커밋
83ea416cda
2개의 변경된 파일47개의 추가작업 그리고 2개의 파일을 삭제
  1. 19 0
      src/xt_pages/outpatientCharges/components/chargeDialog.vue
  2. 28 2
      src/xt_pages/outpatientCharges/outpatientChargesManagement.vue

+ 19 - 0
src/xt_pages/outpatientCharges/components/chargeDialog.vue 파일 보기

@@ -58,6 +58,19 @@
58 58
       </el-form-item>
59 59
 
60 60
 
61
+      <el-form-item label="个账使用标识:" prop="acct_used_flag" v-if="this.$store.getters.xt_user.org_id == 10387">
62
+        <el-select style="margin-right:5px;width:100px;"
63
+                   v-model="form.acct_used_flag"  placeholder="">
64
+          <el-option
65
+            v-for="(item,index) in acct_used_flags"
66
+            :key="index"
67
+            :label="item.name"
68
+            :value="item.id">
69
+          </el-option>
70
+        </el-select>
71
+      </el-form-item>
72
+
73
+
61 74
       <el-form-item label="" style="width:100%;">
62 75
 
63 76
         <el-radio-group v-model="form.pay_way">
@@ -137,6 +150,11 @@
137 150
         id:0,
138 151
         decimal:0,//当前押金余额
139 152
         record_date:'',
153
+        acct_used_flags: [
154
+          { id: 0, name: '不使用' },
155
+          { id: 1, name: '使用本人个账' },
156
+          { id: 2, name: '使用共济个账' },
157
+        ],
140 158
         form: {
141 159
           medical_insurance_price:0,
142 160
           private_price:'',//自费12
@@ -158,6 +176,7 @@
158 176
           overlmt_self_pay:'',
159 177
           acct_mulaid_pay:'',
160 178
           fulamt_ownpay_amt:'',
179
+          acct_used_flag:'',
161 180
         },
162 181
         payWays: [
163 182
           {value: 1, label: '现金'},

+ 28 - 2
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue 파일 보기

@@ -5,8 +5,8 @@
5 5
        element-loading-background="rgba(0, 0, 0, 0.8)">
6 6
     <div class="position">
7 7
       <bread-crumb :crumbs='crumbs'></bread-crumb>
8
-    </div>
9 8
 
9
+    </div>
10 10
 
11 11
     <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
12 12
       <div class="mainLeft">
@@ -758,6 +758,18 @@
758 758
                             value-format="yyyy-MM-dd HH:mm:ss">
759 759
                         </el-date-picker>
760 760
                       </el-form-item>
761
+                      <el-form-item label="个账使用标识:" prop="acct_used_flag">
762
+                        <el-select style="margin-right:5px;width:100px;"
763
+                                   v-model="form.acct_used_flag"  placeholder="">
764
+                          <el-option
765
+                            v-for="(item,index) in acct_used_flags"
766
+                            :key="index"
767
+                            :label="item.name"
768
+                            :value="item.id">
769
+                          </el-option>
770
+                        </el-select>
771
+                      </el-form-item>
772
+
761 773
                     </el-form>
762 774
                   </div>
763 775
                   <p class="centerRightTitle">人员信息</p>
@@ -955,7 +967,8 @@ export default {
955 967
         sick_type: '',
956 968
         diagnosis: [],
957 969
         medical_care: '',
958
-        diagnosis_time: ''
970
+        diagnosis_time: '',
971
+        acct_used_flag:0,
959 972
       },
960 973
       current_med_type: '',
961 974
       rules: {
@@ -1101,6 +1114,12 @@ export default {
1101 1114
 
1102 1115
       sick: [],
1103 1116
       diagnoses: [],
1117
+      acct_used_flags: [
1118
+        { id: 0, name: '不使用' },
1119
+        { id: 1, name: '使用本人个账' },
1120
+        { id: 2, name: '使用共济个账' },
1121
+      ],
1122
+
1104 1123
       manufacturers: [],
1105 1124
 
1106 1125
       department: [],
@@ -5390,5 +5409,12 @@ li {
5390 5409
 ::-webkit-scrollbar {
5391 5410
   height: 20px;
5392 5411
 }
5412
+
5413
+.diagonal-header {
5414
+  background-image: linear-gradient(-45deg, #fff 50%, #eef1f6 50%), linear-gradient(45deg, #fff 50%, #eef1f6 50%);
5415
+  background-size: 100% 1px;
5416
+  background-position: 0% 0%, 100% 0%;
5417
+  background-repeat: no-repeat;
5418
+}
5393 5419
 </style>
5394 5420