cost-dispose-sub.vue
1.27 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
<!--订单受理:受理成功提示页-->
<script>
//初始化过滤器
module.exports = {
data: function () {
return {
// 订单编号
billno:'',
};
},
methods: {
// 初始化操作
getData:function(){
this.billno = this.$route.params.billno;
},
goOutlog:function(){
var self = this;
self.$route.router.go('/cost/costOrderOutlogView/'+self.billno);
},
// 跳转
goBack:function(){
var self = this;
self.$route.router.go('/cost/costDispose');
}
},
route: {
activate: function () {
this.getData();
}
}
};
</script>
<template>
<div class="container resource close-left-menu contaNEW">
<div class="purchase-add-plan">
<div class="pap-time-tit">
<h3 class="current-module">高值订单受理</h3>
</div>
<div class="stepok-tips">
<strong>供应商高值订单【{{billno}}】受理成功!</strong>
<p class="step-btn mar-none t-left"><a v-on:click="goOutlog()" class="mar-none f-size14">【{{billno}}】出库登录</a></p>
</div>
<div class="stepok-tips mt-0">
</div>
<div class="step-btn mt-0">
<a v-on:click="goBack">返回</a>
</div>
</div>
</div>
</template>