| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view>
- <view class="index">
- <image class="index_img" src="../../static/yindao.png" mode="widthFix"></image>
- <view class="index_content">
- <view class="index_content_1 mt-60">
- 来访用户跟踪
- </view>
- <view class="index_content_2 mt-30">
- 全程跟踪来访用户不丢单
- </view>
- <view class="index_content_3 mt-45" @click="gotoLogin">
- 立即体验
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
- gotoLogin(){
- uni.navigateTo({
- url: '../login/newlogin',
- success: res => {},
- fail: () => {},
- complete: () => {}
- });
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .index{
- .index_img{
- width: 100%;
- }
- .index_content{
- height: 394rpx;
- position: fixed;
- bottom: 0;
- width: 100%;
- letter-spacing: 1px;
- .index_content_1{
- font-size: 48rpx;
- color: #3662F5;
- font-weight: bold;
- text-align: center;
- }
- .index_content_2{
- font-size: 36rpx;
- color: #46494D;
- font-weight: bold;
- text-align: center;
- }
- .index_content_3{
- width:344rpx;
- height:82rpx;
- line-height: 82rpx;
- font-size: 34rpx;
- color: #315EEE;
- border:1px solid #3E90FF;
- background:white;
- text-align: center;
- margin: 0 auto;
- border-radius:41rpx;
- }
- }
- }
- </style>
|