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.

32 lines
1.3 KiB

3 years ago
<!--pages/user/subpage/newRel/newRel.wxml-->
<!--pages/user/subpage/newCollect/newCollect.wxml-->
<view class="all">
<view class="main">
<!-- 昵称 -->
<view class="title">
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../../quest/subpage/detail/image/ic_xingming@2x.png"></image>
昵称<text style="color: red;">*</text>
</view>
<input class="placeholder" placeholder="输入昵称" bindblur="blur" data-mes="name"></input>
<view class="hr"></view>
<!-- 手机号 -->
<view class="title">
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../../quest/subpage/detail/image/ic_sjh@2x.png"></image>
手机号<text style="color: red;">*</text>
</view>
<input class="placeholder" placeholder="输入手机号" bindblur="blur" data-mes="tel"></input>
<view class="hr"></view>
<!-- 上传图片 -->
<view class="title">
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../../quest/subpage/detail/image/ic_sctp@2x.png"></image>
上传图片
</view>
<view class="link2" bindtap="chooseImage" wx:if="{{!form.image}}">+</view>
<image class="link2" bindtap="chooseImage" wx:if="{{form.image}}" src="{{host+form.image}}"></image>
</view>
</view>
<!-- 底部按钮 -->
<view class="bot">
<view class="button" bindtap="update">提交审核</view>
</view>