9 Commits

Author SHA1 Message Date
lcc 836a2868d1 修改客户和订单 2024-09-26 17:49:00 +08:00
lcc 110d9d7a1c 修改使用晓致虚拟号 2024-09-04 15:07:46 +08:00
lcc 456e47f649 修改客户品牌选择 2024-09-02 18:01:39 +08:00
小鱼开发 1fba42b037 0829 2024-08-29 10:53:23 +08:00
小鱼开发 aee230656a 0821 2024-08-21 17:47:07 +08:00
xiaoyu fddcade21c 0821 2024-08-21 17:21:27 +08:00
xiaoyu fbc053f06f 0815 2024-08-15 18:26:44 +08:00
xiaoyu 2bf2067fb3 bug 2024-08-01 18:14:21 +08:00
xiaoyu 5945ffac43 fixed 2024-07-22 16:25:57 +08:00
21 changed files with 234 additions and 95 deletions
+64 -34
View File
@@ -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 -1
View File
@@ -1,6 +1,6 @@
{
"navigationBarTitleText": "客户建卡",
"usingComponents": {
"brandSelect": "/components/brandSelect/index"
}
}
+36 -2
View File
@@ -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>
+1 -1
View File
@@ -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,
+1 -1
View File
@@ -272,7 +272,7 @@
<view class="fn-flex-item relative ml10 mr10 pt20 pb20 ulib-r10 {{statuskey == 0?'bg-36afa2 color-fff':'bg-f6'}}" bindtap="radioPicker" data-key="0" wx:if="{{detailinfo.status==0}}">
未见客户
</view>
<view class="fn-flex-item relative ml10 mr10 pt20 pb20 ulib-r10 {{statuskey == 1?'bg-36afa2 color-fff':'bg-f6'}}" bindtap="radioPicker" data-key="1" wx:if="{{detailinfo.status==1}}">
<view class="fn-flex-item relative ml10 mr10 pt20 pb20 ulib-r10 {{statuskey == 1?'bg-36afa2 color-fff':'bg-f6'}}" bindtap="radioPicker" data-key="1" wx:if="{{detailinfo.status==0}}">
到店客户
</view>
<view class="fn-flex-item relative ml10 mr10 pt20 pb20 ulib-r10 {{statuskey == 3?'bg-36afa2 color-fff':'bg-f6'}}" bindtap="radioPicker" data-key="3">
+42 -33
View File
@@ -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 -1
View File
@@ -1,6 +1,6 @@
{
"navigationBarTitleText": "客户编辑",
"usingComponents": {
"brandSelect": "/components/brandSelect/index"
}
}
+24 -3
View File
@@ -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>
+1 -1
View File
@@ -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,
+1 -1
View File
@@ -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,
+4
View File
@@ -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">
+1 -1
View File
@@ -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>
+1 -1
View File
@@ -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,
+1 -1
View File
@@ -113,7 +113,7 @@
</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'}}" wx:if="{{info.if_equity == 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>
+9
View File
@@ -51,6 +51,7 @@ Page({
firstPayIndex: 0, //首付类型
is_get_brand: 0, //是否店内上牌
is_get_insure: 0, //是否店内投保
if_equity: 0, //是否投保买贵必赔
color: '', //车身体颜色
in_color: '', //内饰颜色
loan_amount: '', //贷款额度
@@ -99,6 +100,7 @@ Page({
discount_amount: res.data.money_json.discount_amount ?? '', //⻋身优惠
is_get_brand: parseInt(res.data.if_num),
is_get_insure: parseInt(res.data.if_insure),
if_equity: parseInt(res.data.if_equity),
})
/*匹配车辆信息*/
//匹配品牌
@@ -459,6 +461,7 @@ Page({
params['monthly_payment'] = that.data.monthly_payment;
params['if_num'] = that.data.is_get_brand;
params['if_insure'] = that.data.is_get_insure;
params['if_equity'] = that.data.if_equity;
if (that.data.is_get_brand) {
params['register_amount'] = that.data.register_amount;
}
@@ -558,6 +561,12 @@ Page({
})
},
changeIfEquity(e) {
this.setData({
if_equity: e.detail.value ? 1 : 0
})
},
//页面相关事件处理函数--监听用户下拉动作
onPullDownRefresh() {
this.getAppCusorderV2()
+14 -2
View File
@@ -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>
@@ -120,6 +120,12 @@
</view>
</block>
-->
<view class="relative bbs-1-eb last-b-none pl180 font-28">
<view class="absolute left-0 box-middle">投保买贵必赔</view>
<view class="relative pt30 pb30 text-right">
<switch checked="{{if_equity}}" bindchange="changeIfEquity" type="switch" color='#36afa2' style="zoom:0.7" />
</view>
</view>
<view class="relative bbs-1-eb last-b-none pl180 font-28">
<view class="absolute left-0 box-middle">是否店内投保</view>
<view class="relative pt30 pb30 text-right">
@@ -157,7 +163,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>
@@ -212,6 +218,12 @@
<view class="absolute left-0 box-middle color-333">车身优惠</view>
<view class="pt30 pb30 text-right font-28 color-666" style="min-height:38rpx;"><text class="mr10 color-f9394d">{{discount_amount}}</text>元</view>
</view>
<view class="bbs-1-eb last-b-none">
<view class="relative pl190">
<view class="absolute left-0 box-middle font-28 color-333">投保买贵必赔</view>
<view class="pt30 pb30 text-right font-28 color-666"> {{if_equity?'是':'否'}} </view>
</view>
</view>
<view class="bbs-1-eb last-b-none">
<view class="relative pl190">
<view class="absolute left-0 box-middle font-28 color-333">是否店内投保</view>
+8
View File
@@ -58,6 +58,7 @@ Page({
firstPayIndex: 0, //首付类型
is_get_brand: 0, //20240526是否店内上牌
is_get_insure: 0, //20240526是否店内投保
if_equity: 0, //是否投保买贵必赔
color: '', //车身体颜色
in_color: '', //内饰颜色
loan_amount: '', //贷款额度
@@ -348,6 +349,7 @@ Page({
params['monthly_payment'] = that.data.monthly_payment;
params['if_num'] = that.data.is_get_brand;
params['if_insure'] = that.data.is_get_insure;
params['if_equity'] = that.data.if_equity;
if (that.data.is_get_brand) {
params['register_amount'] = that.data.register_amount;
}
@@ -515,6 +517,12 @@ Page({
is_get_insure: e.detail.value ? 1 : 0
})
},
//20240926是否投保买贵必赔
changeIfEquity(e) {
this.setData({
if_equity: e.detail.value ? 1 : 0
})
},
//显示选择品牌
bindShowBrand(){
+21 -9
View File
@@ -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>
@@ -182,6 +182,12 @@
<input class="wp100 height-100 text-right font-28" placeholder-class="color-ccc" type="digit" placeholder="请输入⻋身优惠" model:value='{{discount_amount}}' always-embed='{{true}}' />
</view>
</view>
<view class="relative bbs-1-eb last-b-none pl180 font-28">
<view class="absolute left-0 box-middle">投保买贵必赔</view>
<view class="relative pt30 pb30 text-right">
<switch checked="{{if_equity}}" bindchange="changeIfEquity" type="switch" color='#36afa2' style="zoom:0.7" />
</view>
</view>
<view class="relative bbs-1-eb last-b-none pl180 font-28">
<view class="absolute left-0 box-middle">是否店内投保</view>
<view class="relative pt30 pb30 text-right">
@@ -242,7 +248,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>
@@ -297,6 +303,12 @@
<view class="absolute left-0 box-middle color-333">车身优惠</view>
<view class="pt30 pb30 text-right font-28 color-666" style="min-height:38rpx;"><text class="mr10 color-f9394d">{{discount_amount}}</text>元</view>
</view>
<view class="bbs-1-eb last-b-none">
<view class="relative pl190">
<view class="absolute left-0 box-middle font-28 color-333">投保买贵必赔</view>
<view class="pt30 pb30 text-right font-28 color-666"> {{if_equity?'是':'否'}} </view>
</view>
</view>
<view class="bbs-1-eb last-b-none">
<view class="relative pl190">
<view class="absolute left-0 box-middle font-28 color-333">是否店内投保</view>
@@ -347,13 +359,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">
+1 -1
View File
@@ -18,7 +18,7 @@ Page({
showHomeIcon: true
},
qrcode_img: '',
qrcode_count_time: 30,
qrcode_count_time: 3000,
wxTimerList: {},
wxTimer: null,
nowTime: "",
+1 -1
View File
@@ -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
View File
@@ -1,7 +1,7 @@
{
"appid": "wx4733380c110313ec",
"compileType": "miniprogram",
"libVersion": "latest",
"libVersion": "3.5.0",
"packOptions": {
"ignore": [],
"include": []