租房掌柜微信小程序Api以及小程序前端模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

68 lines
2.3 KiB

<cu-custom bgColor="bg-gradual-blue" isBack="{{true}}">
<view slot="backText">返回</view>
<view slot="content">个人中心</view>
</cu-custom>
<view class="bg-white">
<form bindsubmit="formSubmit" bindreset="formReset">
<view class="cu-bar bg-white solid-bottom ">
<view class='action'>
<text class='cuIcon-titles text-orange '></text> 订单信息
</view>
</view>
<view class="cu-form-group" style="border:none;">
<view class="title">昵称</view>
<input type="text" name="nickname" value="{{userInfo.nickname}}"></input>
</view>
<view class="cu-form-group" style="border:none;">
<view class="title">手机号</view>
<input type="number" maxlength="11" name="phone" value="{{userInfo.phone}}"></input>
</view>
<input type="text" style="display:none;" name="vip_level" value="{{vip_level}}"></input>
<view class="cu-form-group" style="border:none;">
<view class="title">会员级别</view>
<picker value="{{index}}" range="{{vip_level_c}}" range-key="{{'name'}}" bindchange="PickerChange">
<view class="picker">
{{name}}
</view>
</picker>
</view>
<view class="cu-bar bg-white solid-bottom ">
<view class='action'>
<text class='cuIcon-titles text-orange '></text> 收款信息
</view>
</view>
<view class="flex align-center solid-bottom">
<view class="padding flex-sub text-center">
<text class="text-grey text-sm padding-sm block">您选择了{{name}},最大可添加{{count}}套房源</text>
<text class="text-price text-sm text-red padding-sm">支付价格:{{price}}元</text>
<view>
<image src="{{pay_src}}" style="width:200px;" class="png" mode="aspectFit"></image>
</view>
</view>
</view>
<view class="cu-form-group padding-bottom">
<view class="title">支付方式 </view>
<radio-group name="pay_type" bindchange="payChange" class="radio-group padding-sm">
<label class="radio" wx:for="{{pay_type_list}}">
<radio value="{{index}}" checked="{{index==1 ?true:false }}" /> {{item.name}}
</label>
</radio-group>
</view>
<view class="box text-center">
<button class="cu-btn bg-blue margin-bottom-lg lg" form-type="submit">支付完成(请点击)
</button>
</view>
</form>
</view>