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.
 
 
 
 

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