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.
 
 
 

117 lines
2.0 KiB

  1. <template>
  2. <view class="full">
  3. <view class="logo"></view>
  4. <view class="title">
  5. 数智工牌
  6. </view>
  7. <image class="middle" src="https://qufang.oss-cn-beijing.aliyuncs.com/channelHelper/lead_middle.png"
  8. mode="scaleToFill"></image>
  9. <view class="content">
  10. <view class="">
  11. 1 智能语音转写
  12. </view>
  13. <view class="">
  14. 2 高效的判客机制
  15. </view>
  16. <view class="">
  17. 3 全方位的客户跟进
  18. </view>
  19. <view class="">
  20. 4 专业的经纪管家
  21. </view>
  22. <view class="">
  23. 5 在线实时沟通
  24. </view>
  25. </view>
  26. <view @click="bindWxBLogin" class="button">
  27. 立即去登录
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. var app = getApp();
  33. var config = require("../../config");
  34. export default {
  35. data() {
  36. return {
  37. };
  38. },
  39. onShow: function() {
  40. uni.request({
  41. url: config.service.verify,
  42. method: "GET",
  43. header: {
  44. 'content-type': 'application/json',
  45. 'Access-Token': uni.getStorageSync('weapp_session_login_data').token
  46. },
  47. success: (data) => {
  48. if (data.data.code == 10000) {
  49. uni.switchTab({
  50. url: '/pages/index/index'
  51. });
  52. }
  53. }
  54. })
  55. },
  56. onHide: function() {},
  57. methods: {
  58. bindWxBLogin() {
  59. wx.navigateTo({
  60. url: '/pages/login/index'
  61. });
  62. }
  63. }
  64. };
  65. </script>
  66. <style lang="scss">
  67. .full {
  68. width: 100vw;
  69. height: 100vh;
  70. position: relative;
  71. background: url("https://qufang.oss-cn-beijing.aliyuncs.com/channelHelper/lead_background.png");
  72. background-size: 100% 100%;
  73. display: flex;
  74. flex-direction: column;
  75. align-items: center;
  76. .logo {
  77. width: 202upx;
  78. height: 202upx;
  79. margin-top: 40rpx
  80. }
  81. .title {
  82. color: #FFFFFF;
  83. font-size: 36upx;
  84. font-weight: 500;
  85. }
  86. .middle {
  87. width: 480upx;
  88. height: 485upx;
  89. margin-top: 34upx;
  90. }
  91. .content {
  92. color: #FFFFFF;
  93. font-size: 28rpx;
  94. line-height: 66rpx;
  95. }
  96. .button {
  97. background: #fff;
  98. border-radius: 76px;
  99. width: 584upx;
  100. height: 100upx;
  101. color: #008EF2;
  102. font-size: 40upx;
  103. line-height: 100upx;
  104. text-align: center;
  105. }
  106. }
  107. </style>