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.
 
 
 

95 rivejä
1.8 KiB

  1. <template>
  2. <view class="full">
  3. <view class="logo"></view>
  4. <view class="title">
  5. 数智工牌
  6. </view>
  7. <image class="middle" src="https://qufang.oss-cn-beijing.aliyuncs.com/channelHelper/lead_middle.png" mode="scaleToFill"></image>
  8. <view class="content">
  9. <view class="">
  10. 1 智能语音转写
  11. </view>
  12. <view class="">
  13. 2 高效的判客机制
  14. </view>
  15. <view class="">
  16. 3 全方位的客户跟进
  17. </view>
  18. <view class="">
  19. 4 专业的经纪管家
  20. </view>
  21. <view class="">
  22. 5 在线实时沟通
  23. </view>
  24. </view>
  25. <view @click="bindWxBLogin" class="button">
  26. 立即去登录
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. var app = getApp();
  32. var config = require("../../config");
  33. export default {
  34. data() {
  35. return {
  36. };
  37. },
  38. onShow: function () { },
  39. onHide: function(){ },
  40. methods: {
  41. bindWxBLogin() {
  42. wx.navigateTo({
  43. url: '/pages/login/index'
  44. });
  45. }
  46. }
  47. };
  48. </script>
  49. <style lang="scss">
  50. .full{
  51. width: 100vw;
  52. height: 100vh;
  53. position: relative;
  54. background: url("https://qufang.oss-cn-beijing.aliyuncs.com/channelHelper/lead_background.png");
  55. background-size: 100% 100%;
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. .logo{
  60. width: 202upx;
  61. height: 202upx;
  62. margin-top: 40rpx
  63. }
  64. .title{
  65. color: #FFFFFF;
  66. font-size: 36upx;
  67. font-weight:500;
  68. }
  69. .middle{
  70. width: 480upx;
  71. height: 485upx;
  72. margin-top: 34upx;
  73. }
  74. .content{
  75. color: #FFFFFF;
  76. font-size: 28rpx;
  77. line-height: 66rpx;
  78. }
  79. .button{
  80. background: #fff;
  81. border-radius:76px;
  82. width:584upx;
  83. height:100upx;
  84. color: #008EF2;
  85. font-size: 40upx;
  86. line-height: 100upx;
  87. text-align: center;
  88. }
  89. }
  90. </style>