ts_aimz/pages/copyright/payment/payment.wxml
2025-03-26 18:15:07 +08:00

91 lines
4.0 KiB
Plaintext

<view class="page-container">
<swiper indicator-dots style="height: 180rpx;" indicator-active-color="#fff">
<swiper-item>
<image src="https://img.shetu66.com/2023/08/23/1692758684593196.jpg" style="width: 100vw;height: 180rpx;"></image>
</swiper-item>
<swiper-item>
<image src="https://img.shetu66.com/2023/08/23/1692758684593196.jpg" style="width: 100vw;height: 180rpx;"></image>
</swiper-item>
<swiper-item>
<image src="https://img.shetu66.com/2023/08/23/1692758684593196.jpg" style="width: 100vw;height: 180rpx;"></image>
</swiper-item>
</swiper>
<!-- 充值金额输入 -->
<view class="card-box sum-input-box">
<view class="mt-20">充值金额</view>
<view class="sum-input mt-20">
<text>¥</text>
<input type="digit" placeholder="请输入金额" bindinput="obMoney" value="{{payMoney}}" />
</view>
<scroll-view scroll-x="{{true}}" class="mt-20">
<view class="list-tabs">
<block wx:for="{{paySumOptions}}" wx:key="index">
<view class="{{currentTab==index? 'tab-select' :'tab-normal'}} item-margin" bind:tap="doChangePayMoney" data-value="{{item}}">
<text>{{item}}</text>
</view>
</block>
</view>
</scroll-view>
</view>
<!-- 付款方式 -->
<view class="card-box">
<view>付款方式</view>
<radio-group bindchange="doChangePayWay" class="form-radio_wrap">
<view class="pay-option-item mt-20">
<view class="option-type">
<view class="icon icon-wechat"></view>
<view>微信支付</view>
</view>
<radio class="radio" checked="{{payWay==1}}" value="1"></radio>
</view>
<view class="pay-option-item">
<view class="option-type">
<view class="icon icon-card"></view>
<view>对公转账</view>
</view>
<radio class="radio" checked="{{payWay==2}}" value="2"></radio>
</view>
</radio-group>
</view>
<!-- 套餐包 -->
<view class="card-box">
<view class="bag-box">
<view class="{{currentBagTab==1?'bag-select':'bag-normal'}} border-left" bind:tap="doChangeBagTab" data-value="1">写材料套餐包</view>
<view class="{{currentBagTab==2?'bag-select':'bag-normal'}} border-right" bind:tap="doChangeBagTab" data-value="2">全托管套餐包</view>
</view>
<view class="bag-list">
<!-- 列表 -->
<view class="bag-item">
<view class="bag-item-title-box">
<view class="title">70元套餐包</view>
<view class="sum">70</view>
</view>
<view class="bag-item-desc-box">
<view class="desc">平均写一件材料100元</view>
<view class="btn">选购</view>
</view>
</view>
<view class="bag-item">
<view class="bag-item-title-box">
<view class="title">70元套餐包</view>
<view class="sum">70</view>
</view>
<view class="bag-item-desc-box">
<view class="desc">平均写一件材料100元</view>
<view class="btn">选购</view>
</view>
</view>
<view class="bag-item">
<view class="bag-item-title-box">
<view class="title">70元套餐包</view>
<view class="sum">70</view>
</view>
<view class="bag-item-desc-box">
<view class="desc">平均写一件材料100元</view>
<view class="btn">选购</view>
</view>
</view>
</view>
</view>
<view class="green-bottom-btn" bind:tap="doPay">确认充值</view>
</view>