Files
qingcheng-xiaochengxu/pages/course/createCourseOrder/createCourseOrder.wxml

54 lines
1.7 KiB
Plaintext
Raw Normal View History

2025-06-25 15:44:12 +08:00
<!-- pages/course/createCourseOrder/createCourseOrder.wxml -->
2025-08-15 00:36:04 +08:00
<view class="page">
<!-- 可滚动内容区:为固定底部预留内边距,避免遮挡 -->
<scroll-view scroll-y class="content no-scrollbar">
<!-- 商品信息卡片 -->
<view class="card product">
2025-06-25 15:44:12 +08:00
<image
2025-08-15 00:36:04 +08:00
class="cover"
2025-07-20 18:22:59 +08:00
src="{{ globalImgUrl + courseObj.image }}"
2025-08-15 00:36:04 +08:00
mode="aspectFill"
lazy-load="true"
2025-06-25 15:44:12 +08:00
/>
2025-08-15 00:36:04 +08:00
<view class="info">
<text class="title ellipsis-2">{{ courseObj.name }}</text>
<view class="price-line">
<text class="price-now">¥{{ courseObj.discountPrice }}</text>
<text class="price-origin">¥{{ courseObj.originPrice }}</text>
2025-06-25 15:44:12 +08:00
</view>
</view>
</view>
2025-08-15 00:36:04 +08:00
<!-- 商品价格行 -->
<view class="card row">
<text class="row-left">商品价格</text>
<text class="row-right accent">¥{{ courseObj.discountPrice }}</text>
2025-06-25 15:44:12 +08:00
</view>
2025-08-15 00:36:04 +08:00
<!-- 支付方式 -->
<view class="card pay">
<view class="pay-left">
<image class="pay-icon" src="./image/wxpay.png" mode="aspectFit" />
<text class="pay-text">微信支付</text>
2025-06-25 15:44:12 +08:00
</view>
2025-08-15 00:36:04 +08:00
<radio-group class="pay-right" bindchange="onPayMethodChange">
<radio value="wxpay" checked></radio>
2025-06-25 15:44:12 +08:00
</radio-group>
</view>
2025-08-15 00:36:04 +08:00
</scroll-view>
<!-- 固定底部结算栏 -->
2025-06-25 15:44:12 +08:00
<view class="footer">
2025-08-15 00:36:04 +08:00
<view class="footer-inner">
<text class="to-pay">应付 <text class="to-pay-amount">¥{{ courseObj.discountPrice }}</text></text>
<view class="btn-pay" bindtap="createOrder">立即支付</view>
2025-06-25 15:44:12 +08:00
</view>
</view>
2025-08-08 19:21:04 +08:00
2025-08-15 00:36:04 +08:00
<!-- 遮罩 -->
2025-08-08 19:21:04 +08:00
<view wx:if="{{isMaskVisible}}" class="page-mask"></view>
2025-06-25 15:44:12 +08:00
</view>