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.

guide.vue 3.6 KiB

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