liiistem-miniapp/pages/sharebuy/sharebuy.wxml

37 lines
1.5 KiB
Text
Raw Permalink Normal View History

2025-09-16 13:41:49 +08:00
<view class="logo"></view>
<view class="card" wx:if="{{!isPay}}">
<!-- <view class="line">付款: {{price}}元</view>
<view class="line">付款有效期: {{expireDate}}</view> -->
<t-cell title="付款" hover note="{{price}}元" />
<t-cell title="有效期" hover note="{{expireDate}}" />
<t-cell title="类型" hover note="{{buy_type}}" />
<view class="ma"></view>
<t-button theme="primary" size="large" block bind:tap="goPay">立即付款</t-button>
<view class="refresh" bind:tap="refresh">已支付? 手动刷新</view>
<view class="ma"></view>
<view class="ma"></view>
<view wx:if="{{tip_before_pay}}">
<!-- <view>支付提示:</view> -->
<rich-text class="desc" nodes="{{tip_before_pay}}"></rich-text>
</view>
</view>
<view wx:else>
<!-- <view>付款订单号: {{orderNo}}</view> -->
<!-- <view>付款成功: {{price}}元</view> -->
<t-cell title="付款订单号" hover note="{{orderNo}}" />
<t-cell title="类型" hover note="{{buy_type}}" />
<t-cell title="付款成功" hover note="{{price}}元" />
<view class="ma"></view>
<view class="form">
<t-input label="姓名" placeholder="请输入姓名" model:value="{{username}}" />
<t-input label="电话" placeholder="请输入电话" type="digit" model:value="{{phone}}" />
</view>
<view class="footer">
<t-button theme="primary" block catchtap="submit">提交</t-button>
</view>
<view class="ma"></view>
<view class="ma"></view>
<view wx:if="{{tip_after_pay}}">
<rich-text class="desc" nodes="{{tip_after_pay}}"></rich-text>
</view>
</view>