增加点餐智能推荐

This commit is contained in:
2025-11-20 18:45:04 +08:00
parent bb4c2676e7
commit ce3674be35
13 changed files with 813 additions and 76 deletions

View File

@@ -3,6 +3,7 @@
<up-checkbox-group v-model="selectedWeek" :options="week">
<up-checkbox
:customStyle="customStyle"
:shape="shape"
v-for="item in week"
:key="item.value"
:value="item.value"
@@ -19,7 +20,12 @@ const customStyle={
marginRight: '40rpx',
marginBottom: '16rpx',
}
const props = defineProps({
shape: {
type: String,
default: 'square' // circle
},
});
const selectedWeek=defineModel({
type: Array,
default: () => [],