1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <view>
- <view>
- <view style="text-align: center;margin-top: 100rpx;">
- <image src="../../static/cg.png" style="width: 20%;" mode="widthFix">
- <view style="font-size: 28rpx;line-height: 200%;color: #fff;">提交成功,请等待审核!</view>
- <view class="mobile">联系电话:{{skr}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- skr:''
- }
- },
- methods: {
-
- },
- onLoad(o) {
- this.skr = o.tel;
- }
- }
- </script>
- <style>
- page {
- padding: 15rpx;
- background: #98a737;
- background-attachment: fixed !important;
- background-repeat: no-repeat !important;
- }
- .b1 {
- overflow: hidden;
- padding: 10rpx 15rpx;
- color: #f1a325;
- background: #fff0d5;
- border: 1rpx solid #ffdcbc;
- }
- .mobile {
- font-size: 28rpx;
- line-height: 200%;
- color: #fff;
- background: url(../../static/mobile.png) no-repeat;
- background-size: 40rpx;
- background-position: left center;
- display: table;
- padding-left: 40rpx;margin: auto;
- }
- .copy {
- background: #98a737;
- font-size: 26rpx;
- color: #fff;
- padding: 5rpx 10rpx;
- margin-left: 30rpx;
- border-radius: 10rpx;
- }
- .srk {
- color: #000;
- height: 60rpx;
- line-height: 60rpx;
- background: #fff;
- border-radius: 10rpx;
- padding-left: 20rpx;
- font-size: 30rpx;
- }
- .tit {
- font-size: 28rpx;
- color: #fff;
- line-height: 300%;
- }
- </style>
|