123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view wx:if="{{sys_payinstructions}}" class="head">
- {{sys_payinstructions}}
- </view>
- <view class="remarks">
- <view>备注</view>
- <textarea name='value' value="{{remarks}}" placeholder="请填写" placeholder-style='font-size:14px;color:#bbb;' auto-height bindblur="onblur" />
- </view>
- <view class="tips">请选择付费版本</view>
- <van-radio-group value="{{ sys_site_systempartitionid }}">
- <navigator class="versions" url="#" wx:for="{{versionsList}}" wx:key="sys_site_systempartitionid" data-item="{{item}}" bindtap="changeVer">
- <van-radio name="{{item.sys_site_systempartitionid}}" icon-size="16px">版本:{{item.partitionname}}</van-radio>
- <view data-item="{{item}}" catchtap="checkVer">
- 详情
- </view>
- </navigator>
- </van-radio-group>
- <view class="tips">请选择付费{{sys_payincidence==1?'账号':'主体'}}</view>
- <van-checkbox-group wx:if="{{sys_payincidence==1}}" value="{{ users }}">
- <view class="user-item" wx:for="{{userList}}" wx:key="userid" data-id="{{item.userid}}" bindtap="onChange">
- <van-checkbox shape='square' icon-size='14' name="{{item.userid}}" />
- <view class="content">
- <view class="label">{{item.name}}</view>
- <view>
- 账号ID:{{item.accountno}}
- </view>
- <view>
- 手机号:{{item.phonenumber||" --"}}
- </view>
- <view>
- 到期时间:{{item.enddate[sys_site_systempartitionid]||' --'}}
- </view>
- </view>
- </view>
- </van-checkbox-group>
- <van-checkbox-group wx:else value="{{ users }}">
- <view class="user-item" wx:for="{{userList}}" wx:key="sa_agentsid" data-id="{{item.sa_agentsid}}" bindtap="onChange">
- <van-checkbox shape='square' icon-size='14' name="{{item.sa_agentsid}}" />
- <view class="content">
- <view class="label">{{item.agentname}}</view>
- <view>
- 联系人:{{item.name}} {{item.phonenumber||" --"}}
- </view>
- <view>
- 到期时间:{{item.enddate[sys_site_systempartitionid]||' --'}}
- </view>
- </view>
- </view>
- </van-checkbox-group>
- <inventory id='inventory' />
- <view style="height: 130rpx;" />
- <view class="footer">
- <view class="left">
- <view>
- 支付数量:{{users.length}}
- </view>
- <view>
- 总价:<text class="price">{{showAmount}}</text>
- </view>
- </view>
- <view class="but-box">
- <van-button custom-class='but' disabled="{{users.length==0}}" bind:click="payment">确定支付</van-button>
- </view>
- </view>
|