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.
 
 
 
 

145 lines
3.3 KiB

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