Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4f6a356d8c | |||
| 456e47f649 | |||
| 1fba42b037 | |||
| aee230656a | |||
| fddcade21c | |||
| fbc053f06f | |||
| 2bf2067fb3 | |||
| 5945ffac43 |
@@ -4,8 +4,6 @@ Page({
|
||||
data: {
|
||||
name: '', //名字
|
||||
mobile: '', //手机号
|
||||
// brand_id:'',//品牌
|
||||
// car_id:'',//车系id
|
||||
// v_id:'',//车辆版本id
|
||||
// color_id:'',//颜色id
|
||||
// b_s_id:'',//备选车型id
|
||||
@@ -19,6 +17,7 @@ Page({
|
||||
// levelIndex:-1,//车辆版本索引
|
||||
timeArray: [], //预计购车时间列表
|
||||
timeIndex: -1, //预计购车时间索引
|
||||
|
||||
submitFlag: false,
|
||||
|
||||
status: 0, //状态
|
||||
@@ -52,6 +51,16 @@ Page({
|
||||
wxgr: 0, //是否添加个微
|
||||
wxgrimg: '', //个微
|
||||
wxgrimg_url: '', //个微
|
||||
brand_name: '', //品牌名称
|
||||
brand_id: 0,
|
||||
brand_page_show: false,
|
||||
brandIndex: -1, //车辆品牌索引
|
||||
series_id: '', //车系id
|
||||
modelArray: [],
|
||||
modelIndex: -1, //车系车型索引
|
||||
car_id: '', //车型id
|
||||
carIndex: -1, //车型索引
|
||||
carArray: [],
|
||||
},
|
||||
//生命周期函数--监听页面加载
|
||||
onLoad: function (options) {
|
||||
@@ -217,44 +226,39 @@ Page({
|
||||
changeModel(e) {
|
||||
if (this.data.modelIndex != e.detail.value && e.detail.value >= 0) {
|
||||
this.setData({
|
||||
car_id: this.data.modelList[e.detail.value].id,
|
||||
series_id: this.data.modelList[e.detail.value].id,
|
||||
modelIndex: e.detail.value,
|
||||
v_id: '', //车辆版本id
|
||||
color_id: '', //车身颜色id
|
||||
incolor_id: '', //内饰颜色id
|
||||
b_s_id: '', //备选车型id
|
||||
spareIndex: -1, //备选车型索引
|
||||
colorArray: [], //车身颜色列表
|
||||
levelArray: [], //车辆版本列表
|
||||
interiorArray: [], //内饰颜色
|
||||
colorIndex: -1, //车身颜色索引
|
||||
levelIndex: -1, //车辆版本索引
|
||||
interiorIndex: -1, //内饰颜色索引
|
||||
// car_id: '', //车辆版本id
|
||||
// carArray: [], //车辆版本列表
|
||||
// business_type: 0,
|
||||
})
|
||||
this.getAppSeriesAttrslevel()
|
||||
// this.getAppSeriesCarlevel()
|
||||
}
|
||||
},
|
||||
|
||||
//获取车辆版本
|
||||
getAppSeriesCarlevel() {
|
||||
let params = {};
|
||||
params['series_id'] = this.data.series_id;
|
||||
_.apiQuery.getAppSeriesCars(params).then(res => {
|
||||
if (res.data.total > 0) {
|
||||
let carArray = []
|
||||
res.data.list.forEach(item => {
|
||||
carArray.push(item.name)
|
||||
})
|
||||
this.setData({
|
||||
carArray: carArray,
|
||||
carList: res.data.list,
|
||||
carIndex: -1,
|
||||
})
|
||||
}
|
||||
});
|
||||
},
|
||||
//车辆版本
|
||||
changeLevel(e) {
|
||||
changeCar(e) {
|
||||
if (this.data.levelIndex != e.detail.value && e.detail.value >= 0) {
|
||||
this.setData({
|
||||
v_id: this.data.levelList[e.detail.value].id,
|
||||
levelIndex: e.detail.value,
|
||||
color_id: '', //车身颜色id
|
||||
colorArray: [], //车身颜色列表
|
||||
colorIndex: -1, //车身颜色索引
|
||||
})
|
||||
this.getAppSeriesAttrscolor()
|
||||
}
|
||||
},
|
||||
|
||||
//车身颜色
|
||||
changeColor(e) {
|
||||
if (this.data.colorIndex != e.detail.value && e.detail.value >= 0) {
|
||||
this.setData({
|
||||
color_id: this.data.colorList[e.detail.value].id,
|
||||
colorIndex: e.detail.value,
|
||||
car_id: this.data.carList[e.detail.value].id,
|
||||
carIndex: e.detail.value,
|
||||
})
|
||||
}
|
||||
},
|
||||
@@ -366,6 +370,9 @@ Page({
|
||||
params['city_id'] = this.data.city_id;
|
||||
params['county_id'] = this.data.county_id;
|
||||
params['buy_time'] = this.data.buy_time;
|
||||
params['brand_id'] = this.data.brand_id;
|
||||
params['series_id'] = this.data.series_id;
|
||||
params['car_id'] = this.data.car_id;
|
||||
_.apiQuery.postAppCustomers(params).then(res => {
|
||||
|
||||
//刷新列表页
|
||||
@@ -693,5 +700,28 @@ Page({
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
//显示选择品牌
|
||||
bindShowBrand() {
|
||||
this.setData({
|
||||
brand_page_show: true
|
||||
})
|
||||
},
|
||||
//获取品牌信息
|
||||
getBrandData(e) {
|
||||
console.log(e.detail)
|
||||
if (e.detail.index > -1 && e.detail.item) {
|
||||
this.setData({
|
||||
brand_id: e.detail.item.id,
|
||||
brand_name: e.detail.item.name,
|
||||
brandIndex: e.detail.index,
|
||||
series_id: '', //车系id
|
||||
modelArray: [],
|
||||
modelIndex: -1, //车系车型索引
|
||||
car_id: '', //车系id
|
||||
carArray: [], //车辆版本列表
|
||||
carIndex: -1, //车辆版本索引
|
||||
})
|
||||
this.getAppSeries()
|
||||
}
|
||||
}
|
||||
})
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"navigationBarTitleText": "客户建卡",
|
||||
"usingComponents": {
|
||||
|
||||
"brandSelect": "/components/brandSelect/index"
|
||||
}
|
||||
}
|
||||
@@ -150,7 +150,39 @@
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--车型库品牌-->
|
||||
<view class="relative bbs-1-eb last-b-none pl190" wx:if="{{status==0}}">
|
||||
<view class="absolute left-0 box-middle font-28 color-333">重点关注车型</view>
|
||||
<view class="pt30 pb30 text-right font-28 color-666">
|
||||
<view class="pt30 pb30 text-right font-28 color-666" bindtap="bindShowBrand">
|
||||
<text wx:if="{{brand_name}}}">{{brand_name||'请选择'}}</text>
|
||||
<text class="color-ccc" wx:else>请选择</text>
|
||||
<i class="iconfont ml5 icon-gengduo"></i>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="relative bbs-1-eb pl190 last-b-none" wx:if="{{brandIndex != -1}}">
|
||||
<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" wx:if="{{modelIndex != -1}}">
|
||||
<view class="absolute left-0 box-middle font-28 color-333">车辆版本</view>
|
||||
<view class="pt30 pb30 text-right font-28 color-666">
|
||||
<picker bindchange="changeCar" value="{{carIndex}}" range="{{carArray}}">
|
||||
<text class="color-ccc" wx:if="{{carIndex == -1}}">请选择</text>
|
||||
<text wx:else>{{carArray[carIndex]}}</text>
|
||||
<i class="iconfont ml5 icon-gengduo"></i>
|
||||
</picker>
|
||||
</view>
|
||||
</view>
|
||||
-->
|
||||
<block wx:for='{{taglList}}' wx:for-item='list' wx:for-index='i' wx:key='i'>
|
||||
<view class="relative mt30">
|
||||
<view class="font-28">
|
||||
@@ -199,4 +231,6 @@
|
||||
</button>
|
||||
</view>
|
||||
</view>
|
||||
</lcb-msg>
|
||||
</lcb-msg>
|
||||
|
||||
<brandSelect show="{{brand_page_show}}" bindleave="getBrandData"></brandSelect>
|
||||
@@ -594,7 +594,7 @@ Page({
|
||||
let params = {};
|
||||
params['id'] = e.currentTarget.dataset.id;
|
||||
params['type'] = 0;
|
||||
_.apiQuery.getAppYx(params).then(res=>{
|
||||
_.apiQuery.getAppXz(params).then(res=>{
|
||||
this.setData({
|
||||
isShowCall:true,
|
||||
phoneNumber:res.data.mobile,
|
||||
|
||||
@@ -45,6 +45,13 @@ Page({
|
||||
wxgrimg_url: '', //个微
|
||||
cf_title: '',
|
||||
cf_edit_status: false,
|
||||
brand_name: '', //品牌名称
|
||||
brand_id: 0,
|
||||
brand_page_show: false,
|
||||
brandIndex: -1, //车辆品牌索引
|
||||
series_id: '', //车系id
|
||||
modelArray: [],
|
||||
modelIndex: -1, //车系车型索引
|
||||
},
|
||||
//生命周期函数--监听页面加载
|
||||
onLoad: function (options) {
|
||||
@@ -73,6 +80,9 @@ Page({
|
||||
wxgr: res.data.baseinfo.wxgr,
|
||||
wxgrimg: res.data.baseinfo.wxgrimg,
|
||||
wxgrimg_url: res.data.baseinfo.wxgrimg_url,
|
||||
brand_id: res.data.baseinfo.brand.id ? res.data.baseinfo.brand.id : 0,
|
||||
brand_name: res.data.baseinfo.brand.name ? res.data.baseinfo.brand.name : '',
|
||||
series_id: res.data.baseinfo.series_id ? res.data.baseinfo.series_id : '',
|
||||
})
|
||||
|
||||
// this.data.c_brandArray.forEach((item,index) => {
|
||||
@@ -87,7 +97,7 @@ Page({
|
||||
//获取车型品牌
|
||||
//this.getAppSeriesBrands()
|
||||
//匹配车系车型
|
||||
//this.getAppSeriesedit()
|
||||
this.getAppSeriesedit()
|
||||
if (this.data.cf_edit_status) {
|
||||
this.getAppCustomersOffline_sources()
|
||||
}
|
||||
@@ -126,34 +136,22 @@ Page({
|
||||
//匹配车系车型
|
||||
getAppSeriesedit() {
|
||||
let params = {};
|
||||
params['brand_id'] = this.data.baseinfo.brand_id.value;
|
||||
params['brand_id'] = this.data.brand_id;
|
||||
_.apiQuery.getAppSeries(params).then(res => {
|
||||
if (res.data.list.length > 0) {
|
||||
let modelIndex = -1
|
||||
let modelArray = []
|
||||
res.data.list.forEach(item => {
|
||||
res.data.list.forEach((item, key) => {
|
||||
modelArray.push(item.name)
|
||||
if (item.id === this.data.series_id) {
|
||||
modelIndex = key
|
||||
}
|
||||
})
|
||||
this.setData({
|
||||
modelArray: modelArray,
|
||||
modelList: res.data.list,
|
||||
modelIndex: -1,
|
||||
modelIndex: modelIndex,
|
||||
})
|
||||
|
||||
if (this.data.baseinfo.car_id.value != '') {
|
||||
res.data.list.forEach((item, index) => {
|
||||
if (item.id == this.data.baseinfo.car_id.value) {
|
||||
this.setData({
|
||||
car_id: this.data.baseinfo.car_id.value,
|
||||
modelIndex: index,
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
//匹配颜色 车辆版本
|
||||
this.getAppSeriesAttrsleveledit()
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
},
|
||||
@@ -330,20 +328,9 @@ Page({
|
||||
changeModel(e) {
|
||||
if (this.data.modelIndex != e.detail.value && e.detail.value >= 0) {
|
||||
this.setData({
|
||||
car_id: this.data.modelList[e.detail.value].id,
|
||||
series_id: this.data.modelList[e.detail.value].id,
|
||||
modelIndex: e.detail.value,
|
||||
v_id: '', //车辆版本id
|
||||
color_id: '', //车身颜色id
|
||||
incolor_id: '', //内饰颜色id
|
||||
colorArray: [], //车身颜色列表
|
||||
levelArray: [], //车辆版本列表
|
||||
interiorArray: [], //内饰颜色
|
||||
colorIndex: -1, //车身颜色索引
|
||||
levelIndex: -1, //车辆版本索引
|
||||
interiorIndex: -1, //内饰颜色索引
|
||||
priceinfo: '',
|
||||
})
|
||||
this.getAppSeriesAttrslevel()
|
||||
}
|
||||
},
|
||||
|
||||
@@ -476,6 +463,8 @@ Page({
|
||||
if (this.data.wxgr == 1) {
|
||||
params['wxgrimg'] = this.data.wxgrimg;
|
||||
}
|
||||
params['brand_id'] = that.data.brand_id;
|
||||
params['series_id'] = that.data.series_id;
|
||||
_.apiQuery.putAppCustomerData(params).then(res => {
|
||||
|
||||
//刷新列表页
|
||||
@@ -764,5 +753,25 @@ Page({
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
//显示选择品牌
|
||||
bindShowBrand() {
|
||||
this.setData({
|
||||
brand_page_show: true
|
||||
})
|
||||
},
|
||||
//获取品牌信息
|
||||
getBrandData(e) {
|
||||
// console.log(e.detail)
|
||||
if (e.detail.index > -1 && e.detail.item) {
|
||||
this.setData({
|
||||
brand_id: e.detail.item.id,
|
||||
brand_name: e.detail.item.name,
|
||||
brandIndex: e.detail.index,
|
||||
series_id: '', //车系id
|
||||
modelArray: [],
|
||||
modelIndex: -1, //车系车型索引
|
||||
})
|
||||
}
|
||||
this.getAppSeries()
|
||||
},
|
||||
})
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"navigationBarTitleText": "客户编辑",
|
||||
"usingComponents": {
|
||||
|
||||
"brandSelect": "/components/brandSelect/index"
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,7 @@
|
||||
<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="number" placeholder="请输入客户手机号" bindinput='inputTx' data-key="mobile" name='mobile' value='{{mobile}}' disabled="disabled"/>
|
||||
<input class="wp100 height-100 text-right font-28" placeholder-class="color-ccc" type="number" placeholder="请输入客户手机号" bindinput='inputTx' data-key="mobile" name='mobile' value='{{mobile}}' disabled="disabled" />
|
||||
</view>
|
||||
</view>
|
||||
<!--
|
||||
@@ -139,7 +139,27 @@
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--车型库品牌-->
|
||||
<view class="relative bbs-1-eb last-b-none pl190">
|
||||
<view class="absolute left-0 box-middle font-28 color-333">重点关注车型</view>
|
||||
<view class="pt30 pb30 text-right font-28 color-666">
|
||||
<view class="pt30 pb30 text-right font-28 color-666" bindtap="bindShowBrand">
|
||||
<text wx:if="{{brand_name}}}">{{brand_name||'请选择'}}</text>
|
||||
<text class="color-ccc" wx:else>请选择</text>
|
||||
<i class="iconfont ml5 icon-gengduo"></i>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="relative bbs-1-eb pl190 last-b-none" wx:if="{{brand_id}}">
|
||||
<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>
|
||||
<block wx:for='{{taglList}}' wx:for-item='list' wx:for-index='i' wx:key='i'>
|
||||
<view class="relative mt30">
|
||||
<view class="font-28">
|
||||
@@ -172,4 +192,5 @@
|
||||
</view>
|
||||
</view>
|
||||
<lcb-footer></lcb-footer>
|
||||
<lcb-backChannel></lcb-backChannel>
|
||||
<lcb-backChannel></lcb-backChannel>
|
||||
<brandSelect show="{{brand_page_show}}" bindleave="getBrandData"></brandSelect>
|
||||
@@ -218,7 +218,7 @@ Page({
|
||||
let params = {};
|
||||
params['id'] = e.currentTarget.dataset.id;
|
||||
params['type'] = 0;
|
||||
_.apiQuery.getAppYx(params).then(res=>{
|
||||
_.apiQuery.getAppXz(params).then(res=>{
|
||||
this.setData({
|
||||
isShowCall:true,
|
||||
phoneNumber:res.data.mobile,
|
||||
|
||||
@@ -394,7 +394,7 @@ Page({
|
||||
let params = {};
|
||||
params['id'] = e.currentTarget.dataset.id;
|
||||
params['type'] = 0;
|
||||
_.apiQuery.getAppYx(params).then(res=>{
|
||||
_.apiQuery.getAppXz(params).then(res=>{
|
||||
this.setData({
|
||||
isShowCall:true,
|
||||
phoneNumber:res.data.mobile,
|
||||
|
||||
@@ -29,6 +29,10 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="absolute wp100 login-light img-fill-cover" style="background-image:url({{imgUrl}}/login/login-light.png?v=1);"></view>
|
||||
<view class="absolute wp100 bottom-170 text-center font-28 color-fff">
|
||||
<view>小程序仅用于合作门店的客户及订单管理</view>
|
||||
<view>暂不支持注册入驻。</view>
|
||||
</view>
|
||||
<!--
|
||||
<view class="absolute wp100 bottom-170 text-center font-28 color-999">
|
||||
<view class="absolute left-0 top-0 right-0 bottom-0 opacity-0 overflowhidden">
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<block wx:for="{{list}}" wx:key='index'>
|
||||
<view class="relative pt30 pb30 pr250 bbs-1-eb last-b-none {{item.status==1?'':'opacity-50'}}">
|
||||
<view class="text-nowrap">
|
||||
<image class='img-50x50 bds-1-eb ulib-r750 text-middle' lazy-load="{{true}}" mode="scaleToFill" src="{{imgUrl}}common/default-head.jpg?v=220223"></image>
|
||||
<image class='img-50x50 bds-1-eb ulib-r750 text-middle' lazy-load="{{true}}" mode="scaleToFill" src="https://img.liche.cn/lichebao/defalut.png?v=240821"></image>
|
||||
<text class="pl10 text-middle font-26">{{item.uname}}</text>
|
||||
<text class="pl10 text-middle font-26">{{item.mobile}}</text>
|
||||
</view>
|
||||
|
||||
@@ -831,7 +831,7 @@ Page({
|
||||
let params = {};
|
||||
params['id'] = e.currentTarget.dataset.id;
|
||||
params['type'] = 1;
|
||||
_.apiQuery.getAppYx(params).then(res=>{
|
||||
_.apiQuery.getAppXz(params).then(res=>{
|
||||
this.setData({
|
||||
isShowCall:true,
|
||||
phoneNumber:res.data.mobile,
|
||||
|
||||
@@ -113,12 +113,12 @@
|
||||
</view>
|
||||
</view>
|
||||
<!--权益确认书-->
|
||||
<view class="relative bbs-1-eb pl140 font-28" bindtap="pushLink" data-url="/pages/order/editImg/index?id={{id}}&type=equity_ck_img&title=权益确认书&multi=true&edit={{info.status>0?'0':'1'}}">
|
||||
<!--view class="relative bbs-1-eb pl140 font-28" bindtap="pushLink" data-url="/pages/order/editImg/index?id={{id}}&type=equity_ck_img&title=权益确认书&multi=true&edit={{info.status>0?'0':'1'}}">
|
||||
<view class="absolute left-0 box-middle font-32 color-333">权益确认书</view>
|
||||
<view class="pt30 pb30 text-right font-26 color-999" style="min-height:38rpx">
|
||||
<view>{{info.status>0?'已审核':equity_ck_img.length>0?'更新':'上传'}}<i class="iconfont ml10 icon-gengduo"></i></view>
|
||||
</view>
|
||||
</view>
|
||||
</view-->
|
||||
<!--上传发票-->
|
||||
<view class="relative bbs-1-eb pl140 font-28" bindtap="pushLink" data-url="/pages/order/editBillImg/index?id={{id}}&edit={{info.status>1?'0':'1'}}">
|
||||
<view class="absolute left-0 box-middle font-32 color-333">发票</view>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<text wx:else>{{brandArray[brandIndex]}}</text>
|
||||
<i class="iconfont ml5 icon-gengduo"></i>
|
||||
</picker> -->
|
||||
<text wx:if="{{brand_name}}}">{{brand_name}}</text>
|
||||
<text wx:if="{{brand_name}}">{{brand_name}}</text>
|
||||
<text class="color-ccc" wx:else>请选择</text>
|
||||
<i class="iconfont ml5 icon-gengduo"></i>
|
||||
</view>
|
||||
@@ -157,7 +157,7 @@
|
||||
<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">{{brandArray[brandIndex]}}</view>
|
||||
<view class="pt30 pb30 text-right font-28 color-666">{{brand_name}}</view>
|
||||
</view>
|
||||
<view class="relative bbs-1-eb pl190 last-b-none">
|
||||
<view class="absolute left-0 box-middle font-28 color-333">车系车型</view>
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
</view>
|
||||
<view class="mt40 font-22 color-666 text-center">
|
||||
<label class="inline-block text-middle statement fn-clear">
|
||||
<checkbox class="fn-fl" value="cb" checked="{{true}}" /><text class="pt3 fn-fl">我已阅读并同意</text>
|
||||
<checkbox class="fn-fl" value="cb" checked="{{false}}" /><text class="pt3 fn-fl">我已阅读并同意</text>
|
||||
</label>
|
||||
<text class="text-middle color-36afa2" bindtap="pushLink" data-url="/pages/statement/registration/index">《理车宝用户注册协议》</text>
|
||||
<text class="text-middle">和</text>
|
||||
@@ -242,7 +242,7 @@
|
||||
<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">{{brandArray[brandIndex]}}</view>
|
||||
<view class="pt30 pb30 text-right font-28 color-666">{{brand_name}}</view>
|
||||
</view>
|
||||
<view class="relative bbs-1-eb pl190 last-b-none">
|
||||
<view class="absolute left-0 box-middle font-28 color-333">车系车型</view>
|
||||
@@ -347,13 +347,13 @@
|
||||
<lcb-msg isShow="{{isShowSuccess}}">
|
||||
<view slot="content">
|
||||
<view class="inner40">
|
||||
<view class="font-36 text-center">订单登记成功!</view>
|
||||
<view class="font-30 pt40 text-left">
|
||||
<view>请及时上传</view>
|
||||
<view class="pt5">订单合同</view>
|
||||
<view class="pt5">付款凭证</view>
|
||||
<view class="pt5">客户身份证</view>
|
||||
<view class="pt5">《买贵必赔权益书》</view>
|
||||
<view class="font-36 text-center">订单登记成功</view>
|
||||
<view class="font-30 pt10 text-left">
|
||||
<view class="pt10 text-center">--- 请及时上传 ---</view>
|
||||
<view class="text-center">订单合同</view>
|
||||
<view class="text-center">付款凭证</view>
|
||||
<view class="text-center">客户身份证</view>
|
||||
<!--view class="text-center">《买贵必赔权益确认书》</view-->
|
||||
</view>
|
||||
</view>
|
||||
<view class="pl60 pr60 pb50 text-center font-32 color-666">
|
||||
|
||||
@@ -18,7 +18,7 @@ Page({
|
||||
showHomeIcon: true
|
||||
},
|
||||
qrcode_img: '',
|
||||
qrcode_count_time: 30,
|
||||
qrcode_count_time: 3000,
|
||||
wxTimerList: {},
|
||||
wxTimer: null,
|
||||
nowTime: "",
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<image class="img-400x400" wx:if="{{qrcode_img}}" src="data:image/PNG;base64,{{qrcode_img}}" />
|
||||
<image class="img-400x400" wx:else src="{{fail_img}}" />
|
||||
<view class="text-center font-28 fn-flex fn-flex-center fn-flex-middle mt30 color-999">
|
||||
<text wx:if="{{info}}">{{wxTimerList.wxTimer.tim||0}}秒后失效</text>
|
||||
<text wx:if="{{info}}">{{wxTimerList.wxTimer.hour>0?(wxTimerList.wxTimer.hour+'时'):''}}{{wxTimerList.wxTimer.min>0?(wxTimerList.wxTimer.min+'分'):''}}{{wxTimerList.wxTimer.tim||0}}秒后失效</text>
|
||||
<view class="font-24" style="color:#36f" bindtap="getappSignConf">立即刷新</view>
|
||||
</view>
|
||||
<view class="font-24 mt30" style="color:#f10">客户点击签到,授权手机号及地理位置方可签到成功</view>
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"appid": "wx4733380c110313ec",
|
||||
"compileType": "miniprogram",
|
||||
"libVersion": "latest",
|
||||
"libVersion": "3.5.0",
|
||||
"packOptions": {
|
||||
"ignore": [],
|
||||
"include": []
|
||||
|
||||
Reference in New Issue
Block a user