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.
 
 
 
 

129 lines
3.6 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 style="height: 44rpx;display: flex;margin-left: 213rpx;">
  11. <image style="width: 44rpx;height: 44rpx;" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png" mode=""></image>
  12. <view style="line-height: 44rpx;margin-left: 10rpx;font-size: 32rpx;color: #333333;">智能语音转写</view>
  13. </view>
  14. <view style="height: 44rpx;display: flex;margin-left: 213rpx;margin-top: 20rpx;">
  15. <image style="width: 44rpx;height: 44rpx;" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png" mode=""></image>
  16. <view style="line-height: 44rpx;margin-left: 10rpx;font-size: 32rpx;color: #333333;">高效的判客机制</view>
  17. </view>
  18. <view style="height: 44rpx;display: flex;margin-left: 213rpx;margin-top: 20rpx;">
  19. <image style="width: 44rpx;height: 44rpx;" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png" mode=""></image>
  20. <view style="line-height: 44rpx;margin-left: 10rpx;font-size: 32rpx;color: #333333;">全方位的客户跟进</view>
  21. </view>
  22. <view style="height: 44rpx;display: flex;margin-left: 213rpx;margin-top: 20rpx;">
  23. <image style="width: 44rpx;height: 44rpx;" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png" mode=""></image>
  24. <view style="line-height: 44rpx;margin-left: 10rpx;font-size: 32rpx;color: #333333;">专业的经济管家</view>
  25. </view>
  26. <view style="height: 44rpx;display: flex;margin-left: 213rpx;margin-top: 20rpx;">
  27. <image style="width: 44rpx;height: 44rpx;" src="https://qufang.oss-cn-beijing.aliyuncs.com/zkgj/xcx/images2.png" mode=""></image>
  28. <view style="line-height: 44rpx;margin-left: 10rpx;font-size: 32rpx;color: #333333;">在线实时沟通</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. }
  103. .button {
  104. width: 100%;
  105. position: absolute;
  106. left: 0rpx;
  107. bottom:80rpx;
  108. .view{
  109. width: 630rpx;
  110. height: 86rpx;
  111. margin: 0 auto;
  112. background: #2671E2;
  113. box-shadow: 0px 2rpx 20rpx 0rpx rgba(38, 113, 226, 0.5);
  114. border-radius: 49rpx;
  115. color: #FFFFFF;
  116. text-align: center;
  117. line-height: 86rpx;
  118. font-size: 32rpx;
  119. }
  120. }
  121. }
  122. </style>