123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <template>
- <view class="content" :style="{'height':h+'px'}">
- <!-- <view class="top">
- <image src="../../static/imgs/icon_left_jt.png" @click="back"></image>
- <text>申请专项演示方案</text>
- </view> -->
- <image src="../../static/imgs/img_success.png" class="succ"></image>
- <view class="msg">提交成功!</view>
- <view class="tip">我们将会尽快安排专业人员与您联系。</view>
- <view class="return" @click="returnHome">返回首页</view>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
-
- }
- },
- methods:{
- back(){
- uni.reLaunch({
- url:'/pages/consult/apply'
- })
- },
- returnHome(){
- uni.reLaunch({
- url:'/pages/index/index'
- })
- }
- }
- }
- </script>
- <style scoped lang="less">
- .content{
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
-
- .top{
- margin-top: 24rpx;
- width: 100%;
- height: 42rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #111111;
- line-height: 42rpx;
- }
- image{
- width: 42rpx;
- height: 42rpx;
- position: absolute;
- top: 0;
- left: 30rpx;
- }
- }
-
- .succ{
- width: 148rpx;
- height: 148rpx;
- margin-top: 90rpx;
- }
-
- .msg{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #111111;
- line-height: 45rpx;
- margin-top: 37rpx;
- }
-
- .tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- margin-top: 28rpx;
- }
-
- .return{
- width: calc(100% - 80rpx);
- height: 80rpx;
- background: #1460CA;
- border-radius: 12rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 80rpx;
- text-align: center;
- letter-spacing: 2rpx;
- position: absolute;
- left: 40rpx;
- bottom: 316rpx;
- }
- }
- </style>
|