kaijufapiao.vue
1.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
<view class="box">
<view class="kailist">
<view class="kailistitem" @click="qukaipiao">
<view class="kaileft">前往开票</view>
<view class="kairight">
<image src="/static/img/rowright.png"></image>
</view>
</view>
<view class="kailistitem" @click="historykaipiao">
<view class="kaileft">开票历史</view>
<view class="kairight">
<image src="/static/img/rowright.png"></image>
</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue"
export default {
data() {
return {
}
},
methods: {
qukaipiao(){
uni.navigateTo({
url:'/pages/kafapiao/kafapiao'
})
// uni.removeStorageSync('select_id');
// uni.removeStorageSync('totalmoney');
// uni.removeStorageSync('totalnum');
// uni.removeStorageSync('canshu');
},
// 开票历史
historykaipiao(){
uni.navigateTo({
url:"/pages/kaipiaolishi/kaipiaolishi"
})
}
}
}
</script>
<style>
.kailist{
padding: 0 32rpx;
box-sizing: border-box;
background: #fff;
}
.kailistitem{
display:flex;
align-items: center;
justify-content: space-between;
padding: 42rpx 0;
box-sizing: border-box;
border-bottom:1rpx solid #f5f5f5;
}
.kaileft{
color:#0A0808;
font-size: 30rpx;
}
.kairight{
width:48rpx;
height:48rpx;
font-size: 0;
}
</style>