锶源昆仑会员+体验官

This commit is contained in:
2023-07-22 19:04:56 +08:00
commit 5a6b3517e6
439 changed files with 20654 additions and 0 deletions

43
pages/bond/index.wxml Normal file
View File

@@ -0,0 +1,43 @@
<image class="temporary" src="http://api.siyuankunlun.com/storage/materials/2022/09/21/bzj.jpg" mode="widthFix"></image>
<view class="member-btn">
<view class="btnGo" bindtap="payShow" disabled="{{disabled}}">
保证金支付
</view>
</view>
<!-- 支付弹出 -->
<view class="payPop {{payState ? 'active' : ''}}"></view>
<view class="payCont {{payState ? 'active' : ''}}">
<view class="payCont-close">
<image src="/static/icons/uricacidClose.png" mode="" bindtap="payShow"></image>
</view>
<radio-group bindchange="payChange">
<label class="uni-list-cell uni-list-cell-pd payCont-radio" wx:for="{{items}}" wx:key="items">
<view class="payCont-name">
<image src="{{item.cover}}" mode=""></image>{{item.name}}
</view>
<view>
<radio value="{{item.value}}" checked="current" color="#e8c198" checked="{{index === current}}" />
</view>
</label>
</radio-group>
<view class="payCont-btn" bindtap="payment">
立即支付
</view>
</view>
<!-- 填写表单 -->
<view class="writePop {{writeState ? 'active' : ''}}"></view>
<view class="writeCont {{writeState ? 'active' : ''}}">
<form bindsubmit="writePayment">
<view class="writeCont-close">
<image src="/static/icons/uricacidClose.png" mode="" bindtap="writeHide"></image>
</view>
<view class="writePop-input">
<input type="text" name="code" placeholder="请输入激活码" />
</view>
<button class="writeCont-btn" form-type="submit" disabled="{{disabled}}">
立即激活
</button>
</form>
</view>