feat:订单详情页面组件封装

This commit is contained in:
duanshuwen
2025-07-13 12:17:41 +08:00
parent 34a62d2f3e
commit 8766bb3720
88 changed files with 1021 additions and 47 deletions

View File

@@ -0,0 +1,18 @@
"use strict";
const common_assets = require("../../../../common/assets.js");
const common_vendor = require("../../../../common/vendor.js");
const goodsImage = "https://example.com/path/to/image.jpg";
const _sfc_main = {
__name: "index",
setup(__props) {
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$3,
b: goodsImage
};
};
}
};
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0e67cb8e"]]);
wx.createComponent(Component);
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/order/components/GoodsInfo/index.js.map

View File

@@ -0,0 +1,4 @@
{
"component": true,
"usingComponents": {}
}

View File

@@ -0,0 +1 @@
<view class="goods-info mb12 data-v-0e67cb8e"><view class="hotel-header data-v-0e67cb8e"><image class="hotel-icon data-v-0e67cb8e" src="{{a}}"></image><text class="hotel-name data-v-0e67cb8e">天沐温泉酒店</text></view><view class="goods-detail data-v-0e67cb8e"><image class="goods-image data-v-0e67cb8e" src="{{b}}"></image><view class="goods-description data-v-0e67cb8e"><text class="goods-title data-v-0e67cb8e">温泉早鸟票</text><text class="goods-date data-v-0e67cb8e">预定时间5月1日</text></view></view><view class="included-services data-v-0e67cb8e"><text class="services-title data-v-0e67cb8e">包含服务</text><view class="service-item data-v-0e67cb8e"><text class="service-name data-v-0e67cb8e">· 精致下午茶</text><text class="service-quantity data-v-0e67cb8e">1份</text></view><view class="service-item data-v-0e67cb8e"><text class="service-name data-v-0e67cb8e">· 接机或接站</text><text class="service-quantity data-v-0e67cb8e">1份</text></view></view></view>

View File

@@ -0,0 +1,89 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.goods-info.data-v-0e67cb8e {
background-color: #fff;
border-radius: 10px;
padding: 12px 16px 20px;
}
.hotel-header.data-v-0e67cb8e {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.hotel-icon.data-v-0e67cb8e {
width: 24px;
height: 24px;
margin-right: 8px;
}
.hotel-name.data-v-0e67cb8e {
color: #333;
font-size: 12px;
font-weight: 500;
}
.goods-detail.data-v-0e67cb8e {
display: flex;
margin-bottom: 20px;
}
.goods-image.data-v-0e67cb8e {
background-color: pink;
width: 65px;
height: 65px;
border-radius: 8px;
margin-right: 15px;
}
.goods-description.data-v-0e67cb8e {
flex: 1;
}
.goods-title.data-v-0e67cb8e {
display: block;
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
}
.goods-date.data-v-0e67cb8e {
font-size: 12px;
color: #666;
}
.included-services.data-v-0e67cb8e {
margin-top: 10px;
}
.services-title.data-v-0e67cb8e {
display: block;
font-size: 12px;
margin-bottom: 12px;
}
.service-item.data-v-0e67cb8e {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.service-name.data-v-0e67cb8e {
font-size: 14px;
}
.service-quantity.data-v-0e67cb8e {
font-size: 12px;
color: #666;
}