72 lines
1.3 KiB
Vue
72 lines
1.3 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: 694rpx;
|
||
height: 84rpx;
|
||
line-height: 84rpx;
|
||
text-align: center;
|
||
background: #3274F9;
|
||
border-radius: 42rpx 42rpx 42rpx 42rpx;
|
||
opacity: 1;
|
||
margin: 0 auto;
|
||
color: #fff;
|
||
}
|
||
}
|
||
|
||
</style>
|