AI销管
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

170 rindas
3.7 KiB

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