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.
103 lines
2.9 KiB
103 lines
2.9 KiB
<view class="container"> |
|
<view class="form" wx:if="{{edit=='true'}}"> |
|
<view class="formlist"> |
|
<text>昵称</text> |
|
<input type="text" placeholder="请输入昵称"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>手机号</text> |
|
<input type="text" placeholder="请输入手机号"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>微信号</text> |
|
<input type="text" placeholder="请输入微信号"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>紧急联系人</text> |
|
<input type="text" placeholder="请输入紧急联系人"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>费用选择</text> |
|
<input type="text" placeholder="请输入费用"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>金额</text> |
|
<input type="text" placeholder="请输入金额"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>支付方式</text> |
|
<input type="text" placeholder="请输入支付方式"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>报名状态</text> |
|
<input type="text" placeholder="请输入报名状态"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>性别</text> |
|
<view class="authright"> |
|
<radio-group name="radio" bindchange="radioChange" > |
|
<label><radio value="free" checked="true" color="#FFCB12"/>男</label> |
|
<label><radio value="fee" color="#FFCB12"/>女</label> |
|
</radio-group> |
|
</view> |
|
</view> |
|
<view class="formlist"> |
|
<text>真实姓名</text> |
|
<input type="text" placeholder="请输入真实姓名"/> |
|
</view> |
|
<view class="formlist"> |
|
<text>身份证号</text> |
|
<input type="text" placeholder="请输入身份证号"/> |
|
</view> |
|
<view class="bottom"> |
|
保存 |
|
</view> |
|
</view> |
|
|
|
<view class="form" wx:else> |
|
<view class="formlist"> |
|
<text>昵称</text> |
|
{{detail.nikeName}} |
|
</view> |
|
<view class="formlist"> |
|
<text>手机号</text> |
|
<view bindtap="callPhone">{{detail.tel}}</view> |
|
</view> |
|
<view class="formlist"> |
|
<text>微信号</text> |
|
{{detail.wx}} |
|
</view> |
|
<view class="formlist"> |
|
<text>紧急联系人</text> |
|
{{detail.anbulnum}} |
|
</view> |
|
<view class="formlist"> |
|
<text>金额</text> |
|
¥{{detail.money}} |
|
</view> |
|
<view class="formlist"> |
|
<text>支付方式</text> |
|
微信支付 |
|
</view> |
|
<view class="formlist"> |
|
<text>报名状态</text> |
|
{{detail.status}} |
|
</view> |
|
<view class="formlist"> |
|
<text>性别</text> |
|
<view wx:if="{{detail.sex=='0'}}">男</view> |
|
<view wx:else>女</view> |
|
</view> |
|
<view class="formlist"> |
|
<text>真实姓名</text> |
|
{{detail.name}} |
|
</view> |
|
<view class="formlist"> |
|
<text>身份证号</text> |
|
{{detail.idNum}} |
|
</view> |
|
<view class="bottom back"> |
|
退款 |
|
</view> |
|
</view> |
|
</view> |