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.
56 lines
2.6 KiB
56 lines
2.6 KiB
<!--pages/quest/subpage/detail/components/collection/collection.wxml-->
|
|
<view class="main">
|
|
<view class="title">
|
|
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../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="../../image/ic_sjh@2x.png"></image>
|
|
手机号<text style="color: red;">*</text>
|
|
</view>
|
|
<input class="placeholder" placeholder="输入手机号" bindblur="blur" data-mes="tel"></input>
|
|
<!-- <view class="placeholder">输入手机号 -->
|
|
<!-- </view> -->
|
|
<view class="hr"></view>
|
|
<view class="title">
|
|
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../image/ic_dq@2x.png"></image>
|
|
地区<text style="color: red;">*</text>
|
|
</view>
|
|
<!-- <input class="placeholder" placeholder="输入姓名" bindblur="blur" data-mes="name"></input> -->
|
|
<picker mode="region" bindchange="getUserProvince">
|
|
<view class="placeholder">
|
|
<text wx:if="{{form.add[2]}}">{{form.add}}</text>
|
|
<text style="color:gray;" wx:else="{{true}}">请选择地区</text>
|
|
</view>
|
|
</picker>
|
|
<view class="hr"></view>
|
|
<view class="title">
|
|
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../image/ic_gzcx@2x.png"></image>
|
|
关注车型
|
|
</view>
|
|
<!-- <view class="placeholder" style="color:gray;" bindtap="getbrand">请选择关注车型
|
|
</view> -->
|
|
<view class="placeholder" wx:if="{{form.type.name}}" bindtap="getbrand">{{form.type.name}}</view>
|
|
<view class="placeholder" style="color:gray;" wx:else="{{true}}" bindtap="getbrand">请选择关注车型</view>
|
|
<view class="hr"></view>
|
|
<view class="title">
|
|
<image style="width: 48rpx;height: 48rpx;margin-right: 16rpx;" src="../../image/ic_bz@2x.png"></image>
|
|
备注
|
|
</view>
|
|
<textarea class="placeholder" placeholder="输入备注信息" bindblur="blur" data-mes="tip" auto-height></textarea>
|
|
<!-- <view class="placeholder" style="height: 180rpx;">请输入备注信息 -->
|
|
<!-- </view> -->
|
|
</view>
|
|
<!-- 底部按钮 -->
|
|
<view class="bot">
|
|
<view class="button" bindtap="update">上传</view>
|
|
</view>
|
|
<!-- 选择关注车型 -->
|
|
<l-arc-popup show="{{brand}}" max-height="700" min-height="200">
|
|
<view class="platitle">选择车型</view>
|
|
<view class="pla" wx:for="{{brands}}" wx:key="index" data-mes="{{brands[index]}}" bindtap="choosebrand">{{item.name}}
|
|
<view class="line" wx:if="{{index < brands.length - 1}}"></view>
|
|
</view>
|
|
</l-arc-popup> |