Преглед изворни кода

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx пре 3 година
родитељ
комит
6c387d03cb

+ 9 - 5
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Прегледај датотеку

294
 
294
 
295
                                                 <span>个人账户金额:<span style="color:red;">{{ items.curPrescriptions.order.account_price?items.curPrescriptions.order.account_price:''}}元</span></span>
295
                                                 <span>个人账户金额:<span style="color:red;">{{ items.curPrescriptions.order.account_price?items.curPrescriptions.order.account_price:''}}元</span></span>
296
 
296
 
297
-
298
                                                 <span v-if="items.curPrescriptions.order_status  == 1">待结算</span>
297
                                                 <span v-if="items.curPrescriptions.order_status  == 1">待结算</span>
299
                                                 <span v-if="items.curPrescriptions.order_status  == 2">已结算</span>
298
                                                 <span v-if="items.curPrescriptions.order_status  == 2">已结算</span>
300
                                                 <span v-if="items.curPrescriptions.order_status  == 3">已退费</span>
299
                                                 <span v-if="items.curPrescriptions.order_status  == 3">已退费</span>
302
                                         </div>
301
                                         </div>
303
                                     </div>
302
                                     </div>
304
 
303
 
305
-
306
                                 </div>
304
                                 </div>
307
                                 <div class="centerRight">
305
                                 <div class="centerRight">
308
                                     <p class="centerRightTitle" style="padding-top: 10px;"
306
                                     <p class="centerRightTitle" style="padding-top: 10px;"
621
                                         <!--<li style="width:100%;" v-if="activeName == 'second'">总费用:{{ getTotalTwo() }}-->
619
                                         <!--<li style="width:100%;" v-if="activeName == 'second'">总费用:{{ getTotalTwo() }}-->
622
                                         <!--</li>-->
620
                                         <!--</li>-->
623
 
621
 
624
-                                        <li style="width:100%;">判断结果:{{info.diagnosis}}</li>
622
+                                        <li style="width:100%;">判断结果:{{GetDiagnosisName(info.diagnosis)}}</li>
625
                                         <!--<li style="width:100%;">是否有传染病:</li>-->
623
                                         <!--<li style="width:100%;">是否有传染病:</li>-->
626
                                         <!--<li style="width:100%;">血压:</li>-->
624
                                         <!--<li style="width:100%;">血压:</li>-->
627
                                     </ul>
625
                                     </ul>
947
       changevalue(val) {
945
       changevalue(val) {
948
         this.$forceUpdate()
946
         this.$forceUpdate()
949
 
947
 
948
+      },  GetDiagnosisName(ids){
949
+
950
+
951
+
952
+
950
       },
953
       },
951
       query() {
954
       query() {
952
         if (this.$store.getters.xt_user.org_id == 9919 || this.$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9538 || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990) {
955
         if (this.$store.getters.xt_user.org_id == 9919 || this.$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9538 || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990) {
4673
               var that = this
4676
               var that = this
4674
               axios.get('http://127.0.0.1:9532/sz/api/detail/cancel', {
4677
               axios.get('http://127.0.0.1:9532/sz/api/detail/cancel', {
4675
                 params: {
4678
                 params: {
4676
-                  order_id: this.order.id,
4679
+                  order_id: order.id,
4677
                   record_time: this.record_date,
4680
                   record_time: this.record_date,
4678
                   admin_user_id: this.$store.getters.xt_user.user.id,
4681
                   admin_user_id: this.$store.getters.xt_user.user.id,
4679
-                  patient_id: this.patientInfo.id
4682
+                  patient_id: this.patientInfo.id,
4683
+                  his_patient_id:this.hisPatientInfo.id,
4680
 
4684
 
4681
                 }
4685
                 }
4682
               })
4686
               })

+ 10 - 0
src/xt_pages/outpatientCharges/summary.vue Прегледај датотеку

89
                         <div>{{getMedType(scope.row.med_type)}}</div>
89
                         <div>{{getMedType(scope.row.med_type)}}</div>
90
                     </template>
90
                     </template>
91
                 </el-table-column>
91
                 </el-table-column>
92
+
93
+                <el-table-column align="center" width="90" prop="name" label="收费类型">
94
+                    <template slot-scope="scope">
95
+                        <div v-if="scope.row.his_patient.balance_accounts_type != 2">医保</div>
96
+                        <div v-if="scope.row.his_patient.balance_accounts_type == 2">自费</div>
97
+                    </template>
98
+                </el-table-column>
99
+
100
+
101
+
92
                 <el-table-column align="center" width="100" prop="name" label="收费日期">
102
                 <el-table-column align="center" width="100" prop="name" label="收费日期">
93
                     <template slot-scope="scope">
103
                     <template slot-scope="scope">
94
                         {{scope.row.setl_time?scope.row.setl_time:getTimes(scope.row.settle_accounts_date)}}
104
                         {{scope.row.setl_time?scope.row.setl_time:getTimes(scope.row.settle_accounts_date)}}