This commit is contained in:
2023-08-17 00:23:32 +08:00
parent d76bff73ae
commit bb3fb81962
19 changed files with 754 additions and 56 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view style="margin-top: 100px;">
<view class="content">
<view class="flex ai-c jc-c">
<view class="flex type_box jc-sb ai-c">
<view class="type_item" v-for="(item,index) of tabsList" :key="index" :class="tCurrent==item.value?'checked':'unchecked'" @tap="sectionChange(item.value)">{{item.label}}</view>
@@ -763,4 +763,7 @@ export default {
}
}
}
.content{
padding-top: calc(var(--window-top) + 10px);
}
</style>