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.
93 lines
3.4 KiB
93 lines
3.4 KiB
<cu-custom bgColor="bg-gradual-blue" isBack="{{true}}">
|
|
<view slot="backText">返回</view>
|
|
<view slot="content">个人中心</view>
|
|
</cu-custom>
|
|
<view class="bg-white">
|
|
<view class="padding-xs flex align-center solid-bottom">
|
|
<view class="padding flex-sub text-center">
|
|
<view class="padding">
|
|
<image src="{{userInfo.headimg}}" class="png cu-avatar xl round" mode="widthFix"></image>
|
|
</view>
|
|
<text class="text-black padding">{{userInfo.nickname}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<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="number" maxlength="11" name="phone" value="{{userInfo.phone}}"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group" style="border:none;">
|
|
<view class="title">真实姓名</view>
|
|
<input type="text" maxlength="20" name="truename" placeholder="请输入真实姓名" value="{{userInfo.truename}}"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group" style="border:none;">
|
|
<view class="title">身份证号码</view>
|
|
<input type="idcard" maxlength="20" name="card_number" placeholder="请输入身份证号码" value="{{userInfo.card_number}}"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group" style="border:none;">
|
|
<view class="title">会员开始时间</view>
|
|
<input type="text" disabled="true" value="{{userInfo.vip_time}}"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group" style="border:none;">
|
|
<view class="title">会员到期时间</view>
|
|
<input type="text" disabled="true" value="{{userInfo.vip_endtime}}"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group" style="border:none;">
|
|
<view class="title">会员级别</view>
|
|
<input type="text" disabled="true" value="{{vip_level_c[userInfo.vip_level].name}}"></input>
|
|
<navigator url="/pages/member/pay">
|
|
<button class="cu-btn round bg-green sm">升级会员</button>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-bar bg-white">
|
|
<view class="action">
|
|
收款二维码
|
|
</view>
|
|
<view class="action">
|
|
{{imgList.length}}/2
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-form-group">
|
|
<view class="grid col-4 grid-square flex-sub">
|
|
<view class="bg-img" wx:for="{{imgList}}" wx:key="{{index}}" bindtap="ViewImage" data-url="{{imgList[index]}}">
|
|
<image src='{{imgList[index]}}' mode='aspectFill'></image>
|
|
|
|
<view class="cu-tag bg-red" catchtap="DelImg" data-index="{{index}}">
|
|
<text class="cuIcon-close"></text>
|
|
</view>
|
|
</view>
|
|
<view class="solids" bindtap="ChooseImage" wx:if="{{imgList.length<2}}">
|
|
<text class="cuIcon-cameraadd"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-form-group align-start">
|
|
<view class="title">收款信息</view>
|
|
<textarea name="pay_info" value="{{userInfo.pay_info}}" maxlength="200" disabled="{{modalName!=null}}" placeholder="请输入收款信息"></textarea>
|
|
</view>
|
|
|
|
<input style="display:none;" maxlength="500" type="text" name="qrcode" value="{{qrcode}}"></input>
|
|
<view class="box text-center">
|
|
<button class="cu-btn bg-blue margin-bottom-lg lg" form-type="submit">立即保存
|
|
</button>
|
|
</view>
|
|
</form>
|
|
|
|
|
|
|
|
</view>
|