2023-08-04 12:04:32 +08:00
|
|
|
|
<template>
|
2023-08-19 09:28:59 +08:00
|
|
|
|
<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>
|
2023-08-04 12:04:32 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-08-19 09:28:59 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {},
|
|
|
|
|
onShow() {},
|
|
|
|
|
methods: {
|
|
|
|
|
navTo() {
|
|
|
|
|
uni.navigateBack();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPullDownRefresh() {
|
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-04 12:04:32 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2023-08-19 09:28:59 +08:00
|
|
|
|
.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;
|
|
|
|
|
}
|
2023-08-04 12:04:32 +08:00
|
|
|
|
|
2023-08-19 09:28:59 +08:00
|
|
|
|
.btn {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 84rpx;
|
|
|
|
|
line-height: 84rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: #0022C7;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|