|
@@ -53,7 +53,7 @@
|
53
|
53
|
highlight-current-row ref="tab"
|
54
|
54
|
@current-change="handleCurrentChange">
|
55
|
55
|
<el-table-column align="center" prop="name" label="姓名" wdith='89'>
|
56
|
|
- <template slot-scope="scope">{{ scope.row.name }}</template>
|
|
56
|
+ <template slot-scope="scope">{{ scope.$index + 1 }}.{{ scope.row.name }}</template>
|
57
|
57
|
</el-table-column>
|
58
|
58
|
<el-table-column align="center" prop="name" label="就诊号" width="110">
|
59
|
59
|
<template slot-scope="scope">{{ scope.row.number ? scope.row.number : '' }}
|
|
@@ -83,7 +83,7 @@
|
83
|
83
|
|
84
|
84
|
<div class="mainCell fixedCell" style="margin-bottom:10px;">
|
85
|
85
|
|
86
|
|
- <div v-if="this.$store.getters.xt_user.org_id == 10340">
|
|
86
|
+ <div v-if="org_id == 10340">
|
87
|
87
|
<el-button size="small"
|
88
|
88
|
@click="openZb(1)"
|
89
|
89
|
type="primary">登记
|
|
@@ -102,7 +102,7 @@
|
102
|
102
|
</div>
|
103
|
103
|
|
104
|
104
|
|
105
|
|
- <div v-if="this.$store.getters.xt_user.org_id != 10340">
|
|
105
|
+ <div v-if="org_id != 10340">
|
106
|
106
|
<!-- <el-button size="small"-->
|
107
|
107
|
<!-- @click="openZb(1)"-->
|
108
|
108
|
<!-- type="primary">登记-->
|
|
@@ -185,14 +185,14 @@
|
185
|
185
|
<div style="margin-bottom:10px;float: right">
|
186
|
186
|
<div>
|
187
|
187
|
<el-button
|
188
|
|
- v-if="(hisPatientInfo.id_card_type != 3 && hisPatientInfo.balance_accounts_type != 2 && hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0 && this.$store.getters.xt_user.org_id != 10340)"
|
|
188
|
+ v-if="(hisPatientInfo.id_card_type != 3 && hisPatientInfo.balance_accounts_type != 2 && hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0 && org_id != 10340)"
|
189
|
189
|
size="small"
|
190
|
190
|
@click="open(8,items.med_type,items.prescriptions[0].order,items.prescriptions)"
|
191
|
191
|
type="primary"
|
192
|
192
|
>预结算
|
193
|
193
|
</el-button>
|
194
|
194
|
<el-button
|
195
|
|
- v-if="items.curPrescriptions.order.order_status == 1 && hisPatientInfo.balance_accounts_type != 2 && this.$store.getters.xt_user.org_id != 10340"
|
|
195
|
+ v-if="items.curPrescriptions.order.order_status == 1 && hisPatientInfo.balance_accounts_type != 2 && org_id != 10340"
|
196
|
196
|
size="small"
|
197
|
197
|
@click="open(11,items.med_type,items.prescriptions[0].order,items.prescriptions)"
|
198
|
198
|
type="primary"
|
|
@@ -203,7 +203,7 @@
|
203
|
203
|
|
204
|
204
|
|
205
|
205
|
<el-button v-loading="loadingtwo"
|
206
|
|
- v-if="((hisPatientInfo.id > 0 && items.curPrescriptions.order.id == 0) || items.curPrescriptions.order.order_status == 1 || items.curPrescriptions.order.order_status == 3)&&this.$store.getters.xt_user.org_id != 10340"
|
|
206
|
+ v-if="((hisPatientInfo.id > 0 && items.curPrescriptions.order.id == 0) || items.curPrescriptions.order.order_status == 1 || items.curPrescriptions.order.order_status == 3)&& org_id != 10340"
|
207
|
207
|
size="small"
|
208
|
208
|
@click="open(4,items.med_type,items.curPrescriptions.order,items.prescriptions)"
|
209
|
209
|
type="primary">收费
|