cg.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view>
  3. <view>
  4. <view style="text-align: center;margin-top: 100rpx;">
  5. <image src="../../static/cg.png" style="width: 20%;" mode="widthFix">
  6. <view style="font-size: 28rpx;line-height: 200%;color: #fff;">提交成功,请等待审核!</view>
  7. <view class="mobile">联系电话:{{skr}}</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. skr:''
  17. }
  18. },
  19. methods: {
  20. },
  21. onLoad(o) {
  22. this.skr = o.tel;
  23. }
  24. }
  25. </script>
  26. <style>
  27. page {
  28. padding: 15rpx;
  29. background: #98a737;
  30. background-attachment: fixed !important;
  31. background-repeat: no-repeat !important;
  32. }
  33. .b1 {
  34. overflow: hidden;
  35. padding: 10rpx 15rpx;
  36. color: #f1a325;
  37. background: #fff0d5;
  38. border: 1rpx solid #ffdcbc;
  39. }
  40. .mobile {
  41. font-size: 28rpx;
  42. line-height: 200%;
  43. color: #fff;
  44. background: url(../../static/mobile.png) no-repeat;
  45. background-size: 40rpx;
  46. background-position: left center;
  47. display: table;
  48. padding-left: 40rpx;margin: auto;
  49. }
  50. .copy {
  51. background: #98a737;
  52. font-size: 26rpx;
  53. color: #fff;
  54. padding: 5rpx 10rpx;
  55. margin-left: 30rpx;
  56. border-radius: 10rpx;
  57. }
  58. .srk {
  59. color: #000;
  60. height: 60rpx;
  61. line-height: 60rpx;
  62. background: #fff;
  63. border-radius: 10rpx;
  64. padding-left: 20rpx;
  65. font-size: 30rpx;
  66. }
  67. .tit {
  68. font-size: 28rpx;
  69. color: #fff;
  70. line-height: 300%;
  71. }
  72. </style>