2024-12-20 14:23:43 +08:00
|
|
|
<script setup>
|
|
|
|
|
import { onShow } from '@dcloudio/uni-app'
|
|
|
|
|
import { useMemberStore } from '@/stores/index.js'
|
2024-12-20 16:38:30 +08:00
|
|
|
import { nextTick } from 'vue'
|
2024-12-20 14:23:43 +08:00
|
|
|
const memberStore = useMemberStore()
|
|
|
|
|
|
2024-12-20 16:38:30 +08:00
|
|
|
onShow(() => {})
|
2024-12-13 15:30:11 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
/*每个页面公共css */
|
|
|
|
|
page {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2024-12-20 21:37:18 +08:00
|
|
|
font-size: 16px;
|
2024-12-13 15:30:11 +08:00
|
|
|
background-color: $uni-bg-color-grey;
|
|
|
|
|
}
|
2024-12-18 18:05:02 +08:00
|
|
|
|
|
|
|
|
view,
|
|
|
|
|
navigator,
|
|
|
|
|
input,
|
|
|
|
|
scroll-view {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button::after {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
swiper,
|
|
|
|
|
scroll-view {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2024-12-19 18:25:30 +08:00
|
|
|
:deep(.van-nav-bar__content) {
|
|
|
|
|
background-color: #75aea4;
|
|
|
|
|
.van-nav-bar__text {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
2024-12-18 18:05:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ellipsis {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2024-12-13 15:30:11 +08:00
|
|
|
</style>
|