index.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view class="guide">
  3. <view class="guide_header">
  4. <view class="">
  5. 请立即开通店铺!
  6. </view>
  7. <view class="">
  8. 开通后才可以正常使用!
  9. </view>
  10. </view>
  11. <view class="guide_icon">
  12. <image src="https://cdn.bjtdba.com/vod/image/2022-08-09/20220809174136233.png" mode="widthFix"></image>
  13. </view>
  14. <view class="guide_bottom" @click="activatenow">
  15. 立即开通
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. }
  24. },
  25. onLoad() {
  26. },
  27. methods: {
  28. activatenow(){
  29. uni.navigateTo({
  30. url:"/openmerchant/amountopening/index"
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. page {
  38. background-color: #1F7CFF;
  39. }
  40. </style>
  41. <style lang="scss" scoped>
  42. .guide{
  43. width: 100%;
  44. height: 100%;
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. justify-content: center;
  49. background-color: #1F7CFF;
  50. .guide_header{
  51. width: 462rpx;
  52. height: 108rpx;
  53. margin: 279rpx 0 125rpx 0;
  54. display: flex;
  55. flex-direction: column;
  56. align-items: center;
  57. justify-content: center;
  58. font-size: 42rpx;
  59. font-weight: 500;
  60. color: #FFFFFF;
  61. }
  62. .guide_icon{
  63. width: 750rpx;
  64. height: 520rpx;
  65. margin-bottom: 168rpx;
  66. image{
  67. width: 100%;
  68. height: 100%;
  69. }
  70. }
  71. .guide_bottom{
  72. width: 686rpx;
  73. height: 98rpx;
  74. border-radius: 8rpx;
  75. border: 2rpx solid #FFFFFF;
  76. font-size: 36rpx;
  77. font-weight: 500;
  78. color: #FFFFFF;
  79. text-align: center;
  80. line-height: 98rpx;
  81. }
  82. }
  83. </style>