拼团功能完善

This commit is contained in:
2025-12-17 18:08:27 +08:00
parent 2fc5a428ff
commit 744f56468f
17 changed files with 2200 additions and 305 deletions

View File

@@ -0,0 +1,25 @@
<template>
<view class="u-flex box">
<text class="color-333" v-if="modelValue">modelValue</text>
<text v-else class="color-999">成团人数</text>
<view class="u-flex u-m-l-20">
<up-icon name="arrow-down" color="#999" size="14"></up-icon>
</view>
</view>
</template>
<script setup>
const modelValue=defineModel({
default:''
})
</script>
<style lang="scss">
.box{
padding: 12rpx 24rpx;
border-radius: 8rpx;
border: 2rpx solid #DDDFE6;
}
</style>