Blame view

pages/funeralresult/funeralresult.vue 2.04 KB
1f3f2378   起风了   我的第一次
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="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 class="list">

  					<!-- <view class="content">逝者编号:<text>djs2894561</text></view> -->

  				</view>

  			</view>

  			<view class="tips">

  				<text>温馨提示:</text>

  				1.如申请已提交,请准备好逝考有效身份证明《或户口信》居民死亡医学证明《推断]书》、报丧人有效与份证明原件在所报地点等待收验人员上门移产相关材料,接运逝者遍体。

  				<view>2.请保持电话畅通,等待收验人员联系。</view>

  				<view>3.请留意处理通知,您可以在[我的] -[我的报丧] 中宣看审被及车辆信息。</view>

  			</view>

  		</view>

  		<!-- 跳转按钮 -->

  		<view class="skip-btn">

  			<view class="cart-add">

  				<view><image src="../../static/btn3.png"></image></view>

  				<view class="cart-add-text"><image src="../../static/phone.png"></image><text>联系电话</text></view>

  			</view>

  			<view class="buy-at" @click="tz">

  				<image src="../../static/btn1.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: {

  			tz(){

  				uni.reLaunch({

  					url: '/pages/my/my'

  				})

  			}

  		}

  	}

  </script>

  

  <style scoped lang="scss">

  	@import 'funeralresult.scss';

  </style>