chore: remove NoticeInfo component and all related files

Delete all files related to the NoticeInfo component, including its image assets, style sheets, Vue template, and documentation.
This commit is contained in:
DEV_DSW
2026-05-29 09:40:28 +08:00
parent 4232f7bc36
commit 71d6033c28
7 changed files with 0 additions and 57 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 866 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -1,30 +0,0 @@
<template>
<div class="notice-info mb-12">
<div class="notice-title">购买须知</div>
<GoodDetail :goodsData="orderData" :showTitle="false" />
</div>
</template>
<script setup>
import { defineProps } from "vue";
import GoodDetail from "@/components/GoodDetail/index.vue";
const props = defineProps({
orderData: {
type: Object,
required: true,
default: () => ({
commodityTip: "",
paySerialNumber: "",
payWay: "", // 支付方式 0-微信 1-支付宝 2-云闪付
payAmt: "",
orderStatus: "0", // 订单状态 0-待支付 1-待确认 2-待使用 3-已取消 4-退款中 5-已关闭 6-已完成
orderType: "0", // 0-酒店订单, 1-门票订单, 2-餐饮
}),
},
});
</script>
<style scoped lang="scss">
@import "./styles/index.scss";
</style>

View File

@@ -1,14 +0,0 @@
## 游玩须知组件
组件名称:游玩须知组件
## 提示词:
使用 uniapp + vue3 组合式 api 开发微信小程序,要求如下:
1、按照提供的图片高度还原交互设计
2、要求布局样式结构简洁明了class 命名请按照模块名称来命名,例如:.notice-info
3、可以使用 uniapp 内置的组件
## 备注
仅供学习、交流使用,请勿用于商业用途。

View File

@@ -1,13 +0,0 @@
.notice-info {
background-color: #fff;
border-radius: 10px;
padding: 16px 18px;
}
.notice-title {
display: flex;
align-items: center;
font-size: 16px;
font-weight: 500;
color: #333;
}