评论商品接口有问题

This commit is contained in:
bobobobo
2026-01-16 00:12:33 +08:00
parent d2ba0df2b5
commit 5cd2732562
164 changed files with 14318 additions and 197 deletions

View File

@@ -1,16 +1,21 @@
<script setup>
const props = defineProps()
const props = defineProps({
position: {
type: String,
default: 'fixed'
}
})
</script>
<template>
<view class="bottom-view">
<view :style="{ position: props.position }" class="bottom-view">
<slot></slot>
</view>
</template>
<style lang="scss" scoped>
.bottom-view {
position: fixed;
// position: fixed;
left: 0;
right: 0;
bottom: 0;