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.
 
 
 

129 rindas
3.6 KiB

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