cost-purchase-sub.vue
1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<template>
<div class="container resource close-left-menu contaNEW" style="min-height: 809px;">
<div class="order-orderlist-view clearfix purchase-add-plan">
<div class="purchase-add-plan" v-show="fifthStep">
<div class="pap-time-tit">
医院高值要货单【{{hospitalBillTypeVO.billno}}】提交成功!
</div>
<div class="stepok-tips" v-if="hospitalBillTypeVO.supplierhvBillInfoList.length > 0">
<strong>供应商高值要货订单</strong>
<div v-for="trsupplierpo in hospitalBillTypeVO.supplierhvBillInfoList">
<p>【{{trsupplierpo.billno}}】已发送给供应商【{{trsupplierpo.suppliername}}】,品规数【{{trsupplierpo.detailrecordsum}}】</p>
</div>
</div>
<div class="stepok-tips" v-if="hospitalBillTypeVO.distrbBillInfoList.length > 0">
<strong>配送商高值要货订单</strong>
<div v-for="trdistrbpo in hospitalBillTypeVO.distrbBillInfoList">
<p>【{{trdistrbpo.billno}}】已发送给配送商【{{trdistrbpo.distrbname}}】,品规数【{{trsupplierpo.detailrecordsum}}】</p>
</div>
</div>
<div class="stepok-tips mt-0">
</div>
<div class="step-btn mt-0">
<a v-link='{"path":"/cost/costTypeAdd"}'>继续制订要货单</a>
<a @click='next' style='margin-left:0px;'>查询要货单详情</a>
</div>
</div>
</div>
</div>
</template>
<script>
module.exports = {
data: function() {
return {
fifthStep:true,
hospitalBillTypeVO:[]
};
},
methods: {
next:function(){
var self = this;
window.sessionStorage.setItem('billno',this.hospitalBillTypeVO.billno);
this.$router.go({'path': '/cost/costPlan'});
},
},
route: {
data: function() {
this.$set('hospitalBillTypeVO',JSON.parse(localStorage.getItem('TrmedplanArr')));
},
},
};
</script>