149 lines
8.0 KiB
Plaintext
149 lines
8.0 KiB
Plaintext
<view class="container">
|
|
<view class="pl30 pr30">
|
|
<view class="mt20 relative">
|
|
<view class="font-32">用户信息</view>
|
|
<view class="absolute right-0 box-middle font-22 color-666">销售顾问:<text class="color-36afa2">{{userInfo.uname}}</text></view>
|
|
</view>
|
|
<view class="mt20 pl40 pr40 pt10 pb10 relative ulib-r10 box-shadow-000-10-10 overflowhidden" bindtap="{{customer.length>0?'showSelectCustomer':''}}">
|
|
<view class="pt50 pb50 font-28" wx:if="{{customerIndex == -1}}">{{customer.length>0?'请选择客户':'暂无可选客户'}}</view>
|
|
<view class="pt30 pb30 font-28" wx:else>
|
|
<view class="font-32">{{customer[customerIndex].name}}</view>
|
|
<view class="mt5 font-22 color-666">手机号:{{customer[customerIndex].mobile}}</view>
|
|
</view>
|
|
<i class="absolute right-0 box-middle iconfont mr30 icon-gengduo font-28 color-666"></i>
|
|
</view>
|
|
<view class="mt40 font-32">车辆信息</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">品牌车型</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeModel" value="{{modelIndex}}" range="{{modelArray}}">
|
|
<text class="color-ccc" wx:if="{{modelIndex == -1}}">请选择</text>
|
|
<text wx:else>{{modelArray[modelIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">车型级别</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeLevel" value="{{levelIndex}}" range="{{levelArray}}">
|
|
<text class="color-ccc" wx:if="{{levelIndex == -1}}">{{levelArray.length == 0?'请先选择品牌车型':'请选择'}}</text>
|
|
<text wx:else>{{levelArray[levelIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">车型颜色</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeColor" value="{{colorIndex}}" range="{{colorArray}}">
|
|
<text class="color-ccc" wx:if="{{colorIndex == -1}}">{{colorArray.length == 0?'请先选择品牌车型':'请选择'}}</text>
|
|
<text wx:else>{{colorArray[colorIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">内饰颜色</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeInterior" value="{{interiorIndex}}" range="{{interiorArray}}">
|
|
<text class="color-ccc" wx:if="{{interiorIndex == -1}}">{{interiorArray.length == 0?'请先选择内饰颜色':'请选择'}}</text>
|
|
<text wx:else>{{interiorArray[interiorIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb last-b-none pl140 font-28">
|
|
<view class="absolute left-0 box-middle color-333">车辆合同售价</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666" style="height:38rpx;">
|
|
<text wx:if="{{levelIndex != -1}}">{{levelList[levelIndex].price}}元</text>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb last-b-none pl140 font-28">
|
|
<view class="absolute left-0 box-middle color-333">定金</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666" style="height:38rpx;">
|
|
<text wx:if="{{levelIndex != -1}}">{{levelList[levelIndex].deposit}}元</text>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">付款方式</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changePayment" value="{{paymentIndex}}" range="{{payment}}">
|
|
<text class="color-ccc" wx:if="{{paymentIndex == -1}}">请选择</text>
|
|
<text wx:else>{{payment[paymentIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">代办包</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changePack" value="{{packIndex}}" range="{{packArray}}">
|
|
<text class="color-ccc" wx:if="{{packIndex == -1}}">请选择</text>
|
|
<text wx:else>{{packArray[packIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">购车主体</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeMain" value="{{mainIndex}}" range="{{main}}">
|
|
<text class="color-ccc" wx:if="{{mainIndex == -1}}">请选择</text>
|
|
<text wx:else>{{main[mainIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb pl190 last-b-none">
|
|
<view class="absolute left-0 box-middle font-28 color-333">是否委托</view>
|
|
<view class="pt30 pb30 text-right font-28 color-666">
|
|
<picker bindchange="changeEntrust" value="{{entrustIndex}}" range="{{entrust}}">
|
|
<text class="color-ccc" wx:if="{{entrustIndex == -1}}">请选择</text>
|
|
<text wx:else>{{entrust[entrustIndex]}}</text>
|
|
<i class="iconfont ml5 icon-gengduo"></i>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<block wx:if="{{entrustIndex==0}}">
|
|
<view class="relative bbs-1-eb last-b-none pl140 font-28">
|
|
<view class="absolute left-0 box-middle">委托人姓名</view>
|
|
<view>
|
|
<input class="wp100 height-100 text-right font-28" placeholder-class="color-ccc" type="text" placeholder="请输入委托人姓名" bindinput='inputTx' data-key="entrust_name" name='entrust_name' value='{{entrust_name}}' />
|
|
</view>
|
|
</view>
|
|
<view class="relative bbs-1-eb last-b-none pl140 font-28">
|
|
<view class="absolute left-0 box-middle">委托人身份证</view>
|
|
<view>
|
|
<input class="wp100 height-100 text-right font-28" placeholder-class="color-ccc" type="text" placeholder="请输入委托人身份证" bindinput='inputTx' data-key="entrust_idcard" name='entrust_idcard' value='{{entrust_idcard}}' />
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
<view class="mt60 pl60 pr60">
|
|
<button class="wp100 btn-36afa2 pt10 pb10 text-center font-32 color-fff ulib-r750" hover-class="btn-36afa2-hover" disabled="{{submitFlag}}" bindtap="postAppCusorder">确认登记</button>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<lcb-footer></lcb-footer>
|
|
|
|
<lcb-msg isShow="{{isShowSelectCustomer}}" isHasClose="{{true}}">
|
|
<view slot="content">
|
|
<view class="mt50 font-36 text-center">选择客户</view>
|
|
<scroll-view class="pb50" scroll-y="true" bindscrolltolower="scrolltolower" style="max-height:600rpx;">
|
|
<view class="pl40 pr40 mt20">
|
|
<block wx:for="{{customer}}" wx:key='index'>
|
|
<view class="relative mt20 inner30 bg-f6 ulib-r10" bindtap="radioPicker" data-index="{{index}}">
|
|
<view class="font-32">{{item.name}}</view>
|
|
<view class="mt5 font-22 color-666">手机号:{{item.mobile}}</view>
|
|
<i class="absolute right-0 box-middle mr30 iconfont {{customerIndex == index?'icon-danxuan_xuanzhong color-36afa2':'icon-danxuan color-999'}}"></i>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="bts-1-eb text-center font-32 color-666">
|
|
<view class="pt25 pb25 color-36afa2" bindtap="hideSelectCustomer">确定</view>
|
|
</view>
|
|
</view>
|
|
</lcb-msg> |