Compare commits
No commits in common. "cb2904e7b66631f8f9ddbb72722d3721115a84e7" and "ae56715a91951128785f73fa0c1cf6bee6b46e1d" have entirely different histories.
cb2904e7b6
...
ae56715a91
|
|
@ -148,11 +148,6 @@ const statusList = ref([
|
||||||
num: 0,
|
num: 0,
|
||||||
value: 1
|
value: 1
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: '已退',
|
|
||||||
num: 0,
|
|
||||||
value: 2
|
|
||||||
}
|
|
||||||
])
|
])
|
||||||
const tab = (item: any) => {
|
const tab = (item: any) => {
|
||||||
query.value.status = item.value
|
query.value.status = item.value
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,10 @@ const openSettlement =()=>{
|
||||||
<Panel :showTools="false" :showHeader="false">
|
<Panel :showTools="false" :showHeader="false">
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div>总金额:<span class="text icon">¥</span><span class="text">{{ totalAmount || '0' }}</span></div>
|
<div>总金额:<span class="text icon">¥</span><span class="text">{{ totalAmount || '0' }}</span></div>
|
||||||
<div class="btn-group">
|
<div class="btn-group" v-if="status">
|
||||||
<span class="default-btn" @click="openCheckOut" v-if="status ==0">追溯码</span>
|
<span class="default-btn" @click="openCheckOut">追溯码</span>
|
||||||
<span class="default-btn" @click="openSettlement" style="margin-left: 24px" v-if="status ==0">收费</span>
|
<span class="default-btn" @click="openSettlement" style="margin-left: 24px">收费</span>
|
||||||
<span class="default-btn" @click="" v-if="status ==1 || status == 2">打印</span>
|
|
||||||
<span class="default-btn" @click="" style="margin-left: 24px" v-if="status ==1">退费</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Panel>
|
</Panel>
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<TotalPrice v-model="formData.totalPrice"
|
<TotalPrice v-model="formData.totalPrice"
|
||||||
@save="charge"
|
@save="charge"
|
||||||
:status="formData.status"
|
:status="formData.status ==0"
|
||||||
@openSettlement="charge"
|
@openSettlement="charge"
|
||||||
@openCheckOut="openCheckoutDetail(formData.goodsDetail,formData.patientRegistration.psnNo)"
|
@openCheckOut="openCheckoutDetail(formData.goodsDetail,formData.patientRegistration.psnNo)"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue