feat: 接口数据对接

This commit is contained in:
duanshuwen
2025-10-26 12:25:00 +08:00
parent b9c1f45b29
commit 895aa166dd
3 changed files with 110 additions and 2076 deletions

View File

@@ -14,7 +14,7 @@
{{ selectedDate.endDate }}
</text>
</view>
<view class="flex flex-items-center">
<view class="flex flex-items-center" @click="emit('click')">
<text class="font-size-12 color-2D91FF line-height-16">房间详情</text>
<uni-icons type="right" size="15" color="#99A0AE" />
</view>
@@ -22,7 +22,7 @@
</template>
<script setup>
import { defineProps } from "vue";
import { defineProps, defineEmits } from "vue";
// Props
const props = defineProps({
@@ -36,6 +36,7 @@ const props = defineProps({
},
},
});
const emit = defineEmits(["click"]);
</script>
<style scoped lang="scss">