49 lines
872 B
Vue
49 lines
872 B
Vue
<template>
|
|
<view class="index">
|
|
<image
|
|
v-for="i in 10"
|
|
:key="i"
|
|
:src="`/static/index/image_${i}.jpeg`"
|
|
mode="widthFix"
|
|
class="img"
|
|
/>
|
|
|
|
<view class="btn-bottom">
|
|
<button class="next-btn" @tap="nextStep">马上体验</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import sheep from '@/sheep';
|
|
|
|
const nextStep = () => {
|
|
sheep.$router.go('/pages/base-info/index');
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.index {
|
|
.img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-bottom {
|
|
margin-top: -120rpx;
|
|
|
|
height: 300rpx;
|
|
// background-color: red;
|
|
|
|
.next-btn {
|
|
width: 80% !important;
|
|
height: 80rpx;
|
|
// border-radius: 16rpx;
|
|
background-color: #0d232c;
|
|
color: white;
|
|
font-size: 32rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|