소스 검색

结算单

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
       </el-form-item>
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
       <el-form-item label="" style="width:100%;">
74
       <el-form-item label="" style="width:100%;">
62
 
75
 
63
         <el-radio-group v-model="form.pay_way">
76
         <el-radio-group v-model="form.pay_way">
137
         id:0,
150
         id:0,
138
         decimal:0,//当前押金余额
151
         decimal:0,//当前押金余额
139
         record_date:'',
152
         record_date:'',
153
+        acct_used_flags: [
154
+          { id: 0, name: '不使用' },
155
+          { id: 1, name: '使用本人个账' },
156
+          { id: 2, name: '使用共济个账' },
157
+        ],
140
         form: {
158
         form: {
141
           medical_insurance_price:0,
159
           medical_insurance_price:0,
142
           private_price:'',//自费12
160
           private_price:'',//自费12
158
           overlmt_self_pay:'',
176
           overlmt_self_pay:'',
159
           acct_mulaid_pay:'',
177
           acct_mulaid_pay:'',
160
           fulamt_ownpay_amt:'',
178
           fulamt_ownpay_amt:'',
179
+          acct_used_flag:'',
161
         },
180
         },
162
         payWays: [
181
         payWays: [
163
           {value: 1, label: '现金'},
182
           {value: 1, label: '现金'},

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

5
        element-loading-background="rgba(0, 0, 0, 0.8)">
5
        element-loading-background="rgba(0, 0, 0, 0.8)">
6
     <div class="position">
6
     <div class="position">
7
       <bread-crumb :crumbs='crumbs'></bread-crumb>
7
       <bread-crumb :crumbs='crumbs'></bread-crumb>
8
-    </div>
9
 
8
 
9
+    </div>
10
 
10
 
11
     <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
11
     <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
12
       <div class="mainLeft">
12
       <div class="mainLeft">
758
                             value-format="yyyy-MM-dd HH:mm:ss">
758
                             value-format="yyyy-MM-dd HH:mm:ss">
759
                         </el-date-picker>
759
                         </el-date-picker>
760
                       </el-form-item>
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
                     </el-form>
773
                     </el-form>
762
                   </div>
774
                   </div>
763
                   <p class="centerRightTitle">人员信息</p>
775
                   <p class="centerRightTitle">人员信息</p>
955
         sick_type: '',
967
         sick_type: '',
956
         diagnosis: [],
968
         diagnosis: [],
957
         medical_care: '',
969
         medical_care: '',
958
-        diagnosis_time: ''
970
+        diagnosis_time: '',
971
+        acct_used_flag:0,
959
       },
972
       },
960
       current_med_type: '',
973
       current_med_type: '',
961
       rules: {
974
       rules: {
1101
 
1114
 
1102
       sick: [],
1115
       sick: [],
1103
       diagnoses: [],
1116
       diagnoses: [],
1117
+      acct_used_flags: [
1118
+        { id: 0, name: '不使用' },
1119
+        { id: 1, name: '使用本人个账' },
1120
+        { id: 2, name: '使用共济个账' },
1121
+      ],
1122
+
1104
       manufacturers: [],
1123
       manufacturers: [],
1105
 
1124
 
1106
       department: [],
1125
       department: [],
5390
 ::-webkit-scrollbar {
5409
 ::-webkit-scrollbar {
5391
   height: 20px;
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
 </style>
5419
 </style>
5394
 
5420