Files
cashier_weapp/pages/make/list.vue
2024-03-21 15:33:26 +08:00

52 lines
801 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>