You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< view class = "" >
< view class = "logo-box" >
< image :src ="IMAGE_URL+'/logo.png'" mode = "widthFix" > < / image >
< / view >
< view class = "txt-box" >
< view class = "title" >
< text > 提交成功 < / text >
< / view >
< view class = "txt" >
< text > 您的资料已提交 , 工作人员将在3个工作日内与您联系 , 请耐心等待审核 < / text >
< / view >
< / view >
<!-- https : //h5.reecook.cn/app/autoopen.html -->
<!-- < u -popup v-model ="show" mode="center">
<view>
<image :src="IMAGE_URL + '/wx.png'" mode="widthFix" style="width: 400rpx;"></image>
</view>
</u-popup> -->
<button class="btn" @click="toWebview" >
< text > 去下载APP < / text >
< / button >
< / view >
< / template >
< script >
export default {
data ( ) {
return {
IMAGE _URL : this . IMAGE _URL ,
show : false
} ;
} ,
mounted ( ) {
} ,
// methods: {
// // 跳转webview网页
// toWebview() {
// this.show = true
// // uni.navigateTo({
// // url:'/pages/webview/webview?src='+'https://cdn.reecook.cn/website/www/activity/e.html'
// // })
// },
// }
}
< / script >
< style lang = "scss" scoped >
. logo - box {
image {
width : 30 % ;
display : block ;
margin : 80 rpx auto 0 rpx ;
}
}
. txt - box {
text - align : center ;
. title {
margin - top : 80 rpx ;
text - align : center ;
font - size : 50 rpx ;
color : rgb ( 64 , 64 , 64 ) ;
}
. txt {
margin : 0 rpx auto ;
text - align : center ;
font - size : 26 rpx ;
width : 80 % ;
}
}
. btn {
text - align : center ;
color : # fff ;
line - height : 90 rpx ;
border - radius : 10 rpx ;
font - size : 36 rpx ;
background : # d5101a ;
- webkit - box - shadow : 2 rpx 4 rpx 6 rpx # f1b1b4 ;
box - shadow : 2 rpx 4 rpx 6 rpx # f1b1b4 ;
position : absolute ;
bottom : 120 rpx ;
left : 40 rpx ;
right : 40 rpx ;
}
< / style >