AI销管
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.
 
 
 
 

160 lines
3.4 KiB

  1. <template>
  2. <view class="boox">
  3. <view class="booximg">
  4. <image v-if="domainObj.domain == 'zh.aihxz.com'" class="img"
  5. src="https://autoiot.oss-cn-beijing.aliyuncs.com/static/wabIndexs.png" mode=""></image>
  6. <image v-else class="img" src="https://autoiot.oss-cn-beijing.aliyuncs.com/static/wabIndex.png" mode="">
  7. </image>
  8. </view>
  9. <view class="center-dingwei">
  10. <view class="dingwei-title" style="margin-top: 0">
  11. <image class="dingwei-img" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png"
  12. mode=""></image>
  13. <view class="desc">智能语音转写</view>
  14. </view>
  15. <view class="dingwei-title">
  16. <image class="dingwei-img" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png"
  17. mode=""></image>
  18. <view class="desc">高效的判客机制</view>
  19. </view>
  20. <view class="dingwei-title">
  21. <image class="dingwei-img" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png"
  22. mode=""></image>
  23. <view class="desc">全方位的客户跟进</view>
  24. </view>
  25. <view class="dingwei-title">
  26. <image class="dingwei-img" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png"
  27. mode=""></image>
  28. <view class="desc">专业的经纪管家</view>
  29. </view>
  30. <view class="dingwei-title">
  31. <image class="dingwei-img" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png"
  32. mode=""></image>
  33. <view class="desc">在线实时沟通</view>
  34. </view>
  35. </view>
  36. <view @click="bindWxBLogin" class="button">
  37. <view class="view">
  38. 立即去登录
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. var app = getApp();
  45. var config = require("../../config");
  46. const domainObj = require('@/utils/domain.js');
  47. export default {
  48. data() {
  49. return {
  50. domainObj: domainObj, // 域名
  51. };
  52. },
  53. onShow() {
  54. uni.request({
  55. url: config.service.verify,
  56. method: "GET",
  57. header: {
  58. 'content-type': 'application/json',
  59. 'Authorization': 'Bearer ' + uni.getStorageSync('weapp_session_login_data').token
  60. },
  61. success: (data) => {
  62. if (data.data.code == 10000) {
  63. uni.switchTab({
  64. url: '/pages/index/index'
  65. });
  66. }
  67. }
  68. })
  69. },
  70. onHide() {},
  71. methods: {
  72. bindWxBLogin() {
  73. wx.navigateTo({
  74. url: '/pages/login/index'
  75. });
  76. }
  77. }
  78. };
  79. </script>
  80. <style lang="scss">
  81. .boox {
  82. width: 100vw;
  83. height: 100vh;
  84. position: relative;
  85. .title {
  86. width: 100%;
  87. position: absolute;
  88. left: 0rpx;
  89. top: 100rpx;
  90. text-align: center;
  91. color: #FFFFFF;
  92. font-size: 32rpx;
  93. font-weight: 500;
  94. z-index: 1000;
  95. }
  96. .booximg {
  97. width: 100vw;
  98. height: 100vh;
  99. .img {
  100. width: 100%;
  101. height: 100%;
  102. }
  103. }
  104. .center-dingwei {
  105. width: 100%;
  106. position: absolute;
  107. left: 0rpx;
  108. bottom: 200rpx;
  109. .dingwei-title {
  110. height: 44rpx;
  111. display: flex;
  112. margin-left: 213rpx;
  113. margin-top: 20rpx;
  114. }
  115. .dingwei-img {
  116. width: 44rpx;
  117. height: 44rpx;
  118. }
  119. .desc {
  120. line-height: 44rpx;
  121. margin-left: 10rpx;
  122. font-size: 32rpx;
  123. color: #333333;
  124. }
  125. }
  126. .button {
  127. width: 100%;
  128. position: absolute;
  129. left: 0rpx;
  130. bottom: 60rpx;
  131. .view {
  132. width: 630rpx;
  133. height: 86rpx;
  134. margin: 0 auto;
  135. background: #2671E2;
  136. box-shadow: 0px 2rpx 20rpx 0rpx rgba(38, 113, 226, 0.5);
  137. border-radius: 49rpx;
  138. color: #FFFFFF;
  139. text-align: center;
  140. line-height: 86rpx;
  141. font-size: 32rpx;
  142. }
  143. }
  144. }
  145. </style>