feat: 增加上传图片逻辑+个人信息选择逻辑
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user