OfficeApp/subpkg/submit/submit.vue

72 lines
1.3 KiB
Vue
Raw Normal View History

2023-08-04 12:04:32 +08:00
<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>
2023-08-10 14:13:35 +08:00
<button class="btn" @click="navTo">确定</button>
2023-08-04 12:04:32 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {},
onShow() {},
methods: {
2023-08-10 14:13:35 +08:00
navTo(){
2023-08-04 12:04:32 +08:00
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>