2023-08-19 09:28:59 +08:00

74 lines
1.2 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>