receiptRegistrationSuccess.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
53
54
55
56
57
58
59
60
61
<template>
<view class="page">
<pyh-nv ref="nv" :config="nvConfig"></pyh-nv>
<view class="listBox" :style="{'padding-top':(pageTop+'px')}">
<view class="content">
<view class="pay-price">
<view class="icon">
<image src="../../static/success.png" mode=""></image>
</view>
<view class="price-data">
<view class="list">
<view class="title">已成功上报,请耐心等待</view>
</view>
</view>
</view>
<!-- 跳转按钮 -->
<view class="skip-btn">
<view class="buy-at" @click="goback">
<image src="../../static/btn4.png"></image>
<text>完成</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
nvConfig:{
title:"提交成功",
bgColor:"#ffffff",
color:"#000000",
fixedAssist:{
hide:true,
},
},
}
},
onPageScroll(e) {this.$refs.nv.pageScroll(e)},
computed:{
pageTop(){return parseInt(88*uni.getSystemInfoSync().windowWidth/750) + uni.getSystemInfoSync().statusBarHeight}
},
methods: {
goback() {
uni.navigateBack({
delta: 2
});
}
}
}
</script>
<style scoped lang="scss">
@import 'receiptRegistrationSuccess.scss';
</style>