初始化

This commit is contained in:
魏啾
2024-03-21 15:33:26 +08:00
parent 179418e65f
commit 53afc38e76
3486 changed files with 792466 additions and 1 deletions

51
pages/make/list.vue Normal file
View File

@@ -0,0 +1,51 @@
<template>
<view class="container">
<view class="list">
<view class="item" v-for="item in 8" :key="item">
<view class="top">
<text class="n">000{{ item }}</text>
<text class="line">|</text>
<text>8</text>
</view>
<view class="btm">
<text>可预约已满</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
onload() {}
};
</script>
<style scoped lang="scss">
.container {
padding: $paddingSize;
}
.list {
.item {
padding: $paddingSize;
border-radius: 12upx;
background: $linear-color-priamry;
&:not(:first-child) {
margin-top: $paddingSize;
}
text {
color: #66421f;
font-size: 28upx;
}
.n {
font-weight: bold;
}
.line {
padding: 0 20upx;
}
}
}
</style>