31 lines
2.1 KiB
Plaintext
31 lines
2.1 KiB
Plaintext
<form bindreset="formReset" bindsubmit="release" reportSubmit="true">
|
|
<view class="body">
|
|
<view class="modle"> 卖车地点 <input class="modle_right" name="address" placeholder="请输入卖车地点" placeholderStyle="color: #9295A8;" type="text"></input>
|
|
</view>
|
|
<view class="modle"> 品牌车型 <input class="modle_right" name="cartype" placeholder="请输入品牌车型" placeholderStyle="color: #9295A8;" type="text"></input>
|
|
</view>
|
|
<view class="modle"> 上牌时间 <picker bindchange="bindDateChange" class="modle_right" mode="date" value="{{date}}">
|
|
<view class="picker"> {{date}} </view>
|
|
</picker>
|
|
</view>
|
|
<view class="modle"> 行驶里程(万公里) <input class="modle_right" name="licheng" placeholder="请输入行驶里程" style="width:300rpx;"></input>
|
|
</view>
|
|
<view class="modle"> 联系方式 <button bindgetphonenumber="getPhoneNumber" class="shouquan_btn" openType="getPhoneNumber">电话授权</button>
|
|
<input class="modle_right" name="phone" placeholder="请输入您的电话" style="margin-right:20rpx;width:300rpx;" value="{{userphone}}"></input>
|
|
</view>
|
|
<view class="modle" style="border-bottom:0"> 车辆详图 </view>
|
|
<view class="shop_view_border">
|
|
<view class="shop_view" wx:if="{{item.img!=''}}" wx:for="{{carsimgs}}" wx:key="item">
|
|
<image bindtap="upthiscarsimgs" class="shop_view_closeimg" data-index="{{index}}" src="../image/tupiangb_btn.png"></image>
|
|
<image bindtap="showimgs" class="shop_view_img" data-index="{{index}}" src="{{item.img}}"></image>
|
|
</view>
|
|
<view class="shop_view" wx:if="{{carsimgs.length<3}}">
|
|
<image bindtap="upcarsimgs" class="shop_view_img" src="../image/tianjiantp_btn.png"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<button class="commit_btn" formType="submit">估算价格</button>
|
|
</form>
|
|
<import src="/pages/alert/index.wxml"></import>
|
|
<template is="alert" data="{{isShow:isShow}}"></template>
|