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.
 
 
 
 

170 lines
3.8 KiB

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