74 lines
1.2 KiB
Vue
74 lines
1.2 KiB
Vue
<template>
|
||
<view class="">
|
||
<view class="body">
|
||
<image class="icon" src="../../static/img/contract/ok_b.png"></image>
|
||
<view class="text">合同生成提交成功</view>
|
||
<view class="tips">
|
||
<view>您的签约请求已提交,正在生成合同。</view>
|
||
<view>请耐心等待,合同生成完毕后将会以短信方式通知您。</view>
|
||
</view>
|
||
<button class="btn" @click="navTo">确定/查看</button>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
onLoad() {},
|
||
onShow() {},
|
||
methods: {
|
||
navTo() {
|
||
uni.navigateBack();
|
||
}
|
||
},
|
||
onPullDownRefresh() {
|
||
uni.stopPullDownRefresh()
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.body {
|
||
text-align: center;
|
||
|
||
.icon {
|
||
width: 193rpx;
|
||
height: 193rpx;
|
||
margin-top: 177rpx;
|
||
margin-bottom: 70rpx;
|
||
}
|
||
|
||
.text {
|
||
font-size: 39rpx;
|
||
font-weight: 600;
|
||
color: #000000;
|
||
line-height: 49rpx;
|
||
margin-bottom: 42rpx;
|
||
}
|
||
|
||
.tips {
|
||
font-size: 28rpx;
|
||
font-weight: 400;
|
||
color: #000000;
|
||
line-height: 47rpx;
|
||
margin-bottom: 92rpx;
|
||
}
|
||
|
||
.btn {
|
||
width: 100vw;
|
||
height: 84rpx;
|
||
line-height: 84rpx;
|
||
text-align: center;
|
||
background: #0022C7;
|
||
position: fixed;
|
||
bottom: 0;
|
||
opacity: 1;
|
||
color: #fff;
|
||
}
|
||
}
|
||
</style> |