43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
<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> |