|
|
|
@ -87,7 +87,8 @@ Page({
|
|
|
|
|
// code:""//,
|
|
|
|
|
draft: {}, |
|
|
|
|
form_type: "", |
|
|
|
|
lock: true |
|
|
|
|
lock: true, |
|
|
|
|
carModel: [], |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -125,18 +126,22 @@ Page({
|
|
|
|
|
// 获取品牌列表
|
|
|
|
|
getModel(index) { |
|
|
|
|
let that = this; |
|
|
|
|
wx.request({ |
|
|
|
|
url: `https://open.cheegu.com/CARDB.getMasterBrand?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2`, //仅为示例,并非真实的接口地址
|
|
|
|
|
header: { |
|
|
|
|
// 'content-type': 'application/json' // 默认值
|
|
|
|
|
}, |
|
|
|
|
success(res) { |
|
|
|
|
// console.log(res)
|
|
|
|
|
res.data.message.map(item => { |
|
|
|
|
that.data.arrModel.push(item) |
|
|
|
|
that.data.brr.push(item) |
|
|
|
|
let url = 'api/car_model' |
|
|
|
|
let data = {} |
|
|
|
|
util.httpRequest(url, data, 'get').then((res) => { |
|
|
|
|
console.log(res.data, 'res.data') |
|
|
|
|
wx.hideLoading() |
|
|
|
|
if (res.code == '200') { |
|
|
|
|
res.data.brand.map(item => { |
|
|
|
|
that.data.arrModel.push({ |
|
|
|
|
name: item.title,id:item.id, |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
that.data.brr.push({name: item.title}) |
|
|
|
|
}) |
|
|
|
|
that.setData({ |
|
|
|
|
carModel:res.data.model |
|
|
|
|
}) |
|
|
|
|
multiArrayT: [that.data.letter, that.data.arrModel, res.data.message] |
|
|
|
|
that.getveh(0) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
@ -144,33 +149,36 @@ Page({
|
|
|
|
|
// 获取车系列表
|
|
|
|
|
getveh(index) { |
|
|
|
|
let that = this |
|
|
|
|
wx.request({ |
|
|
|
|
url: `https://open.cheegu.com/CARDB.getSerial?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2&masterid=${that.data.arrModel[index].id}`, //仅为示例,并非真实的接口地址
|
|
|
|
|
header: { |
|
|
|
|
// 'content-type': 'application/json' // 默认值
|
|
|
|
|
}, |
|
|
|
|
success(res) { |
|
|
|
|
that.setData({ |
|
|
|
|
listModel: res.data.message, |
|
|
|
|
multiArrayT: [that.data.letter, that.data.arrModel, res.data.message] |
|
|
|
|
|
|
|
|
|
let model = that.data.carModel.filter(item => { |
|
|
|
|
return that.data.arrModel[index].id === item.car_brand_id; |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
model = model.map(item => { |
|
|
|
|
return { |
|
|
|
|
name:item.title, |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
that.setData({ |
|
|
|
|
listModel: model, |
|
|
|
|
multiArrayT: [that.data.letter, that.data.arrModel, model] |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
// 获取车型列表
|
|
|
|
|
getAdd(index) { |
|
|
|
|
let that = this |
|
|
|
|
wx.request({ |
|
|
|
|
url: `https://open.cheegu.com/CARDB.getModel?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2&serialid=${that.data.listModel[index].id}`, //仅为示例,并非真实的接口地址
|
|
|
|
|
header: { |
|
|
|
|
// 'content-type': 'application/json' // 默认值
|
|
|
|
|
}, |
|
|
|
|
success(res) { |
|
|
|
|
that.setData({ |
|
|
|
|
vehicleType: res.data.message |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
// let that = this
|
|
|
|
|
// wx.request({
|
|
|
|
|
// url: `/api/car_model`, //仅为示例,并非真实的接口地址
|
|
|
|
|
// header: {
|
|
|
|
|
// // 'content-type': 'application/json' // 默认值
|
|
|
|
|
// },
|
|
|
|
|
// success(res) {
|
|
|
|
|
// that.setData({
|
|
|
|
|
// vehicleType: res.data.data
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
}, |
|
|
|
|
// 具体车型选择
|
|
|
|
|
bindPickerChange(e) { |
|
|
|
@ -186,6 +194,7 @@ Page({
|
|
|
|
|
// 车辆品牌选择
|
|
|
|
|
bindMultiPickerChange: function (e) { //确定选择
|
|
|
|
|
this.data.vehicle.car_model.text_center = [] |
|
|
|
|
console.log('e.detail.value',e.detail.value) |
|
|
|
|
this.getveh(e.detail.value[1]) |
|
|
|
|
this.getAdd(e.detail.value[2]) |
|
|
|
|
this.data.vehicle.car_model.text_center[0] = (`${this.data.multiArrayT[1][this.data.multiIndex[1]].name}-${this.data.multiArrayT[2][this.data.multiIndex[2]].name}`) |
|
|
|
@ -540,7 +549,6 @@ Page({
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 车辆评估
|
|
|
|
|
// 汽修宝照片
|
|
|
|
|
if (Tab.repair.require == 1) { |
|
|
|
@ -777,31 +785,31 @@ Page({
|
|
|
|
|
id: this.data.order_id ? this.data.order_id : '', |
|
|
|
|
number: this.data.number, |
|
|
|
|
product_id: this.data.id, |
|
|
|
|
id_card_photo: this.data.obj.id_card_photo.img_arr.length > 0 ? this.data.obj.id_card_photo.up_img_arr.join(',') : '', |
|
|
|
|
drive_license: this.data.obj.drive_license.img_arr.length > 0 ? this.data.obj.drive_license.up_img_arr.join(',') : '', |
|
|
|
|
bank_card: this.data.obj.bank_card.img_arr.length > 0 ? this.data.obj.bank_card.up_img_arr.join(',') : '', |
|
|
|
|
credit_reporting: this.data.obj.credit_reporting.img_arr.length > 0 ? this.data.obj.credit_reporting.up_img_arr.join(',') : '', |
|
|
|
|
lessee_name: this.data.obj.lessee_name.text_center ? this.data.obj.lessee_name.text_center : '', |
|
|
|
|
marriage: this.data.obj.marriage.option || this.data.obj.marriage.option === 0 ? this.data.arr[this.data.obj.marriage.option].name : '', |
|
|
|
|
age: this.data.obj.age.text_center ? this.data.obj.age.text_center : '', |
|
|
|
|
id_card: this.data.obj.id_card.text_center ? this.data.obj.id_card.text_center : '', |
|
|
|
|
id_card_address: this.data.obj.id_card_address.text_center ? this.data.obj.id_card_address.text_center : '', |
|
|
|
|
phone: this.data.obj.phone.text_center ? this.data.obj.phone.text_center : '', |
|
|
|
|
email: this.data.obj.email.text_center ? this.data.obj.email.text_center : '', |
|
|
|
|
b_id_card_photo: this.data.obj.b_id_card_photo.img_arr.length > 0 ? this.data.obj.b_id_card_photo.up_img_arr.join(',') : '', |
|
|
|
|
b_credit_reporting: this.data.obj.b_credit_reporting.img_arr.length > 0 ? this.data.obj.b_credit_reporting.up_img_arr.join(',') : '', |
|
|
|
|
guarantee_name: this.data.obj.guarantee_name.text_center ? this.data.obj.guarantee_name.text_center : '', |
|
|
|
|
relation: this.data.obj.relation.option || this.data.obj.relation.option === 0 ? this.data.list[this.data.obj.relation.option].name : '', |
|
|
|
|
b_id_card: this.data.obj.b_id_card.text_center ? this.data.obj.b_id_card.text_center : '', |
|
|
|
|
b_phone: this.data.obj.b_phone.text_center ? this.data.obj.b_phone.text_center : '', |
|
|
|
|
address: this.data.obj.address.option ? this.data.obj.address.option.join(',') : '', |
|
|
|
|
address_detail: this.data.obj.address_detail.text_center ? this.data.obj.address_detail.text_center : '', |
|
|
|
|
b_word_address: this.data.obj.b_word_address.text_center ? this.data.obj.b_word_address.text_center : '', |
|
|
|
|
b_work_year: this.data.obj.b_work_year.text_center ? this.data.obj.b_work_year.text_center : '', |
|
|
|
|
b_word: this.data.obj.b_word.text_center ? this.data.obj.b_word.text_center : '', |
|
|
|
|
b_month_money: this.data.obj.b_month_money.text_center ? this.data.obj.b_month_money.text_center : '', |
|
|
|
|
remark: this.data.obj.remark.text_center ? this.data.obj.remark.text_center : '', |
|
|
|
|
other: this.data.obj.other.img_arr.length > 0 ? this.data.obj.other.up_img_arr.join(',') : '', |
|
|
|
|
id_card_photo: this.data.obj?.id_card_photo?.img_arr.length > 0 ? this.data.obj?.id_card_photo?.up_img_arr.join(',') : '', |
|
|
|
|
drive_license: this.data.obj?.drive_license?.img_arr.length > 0 ? this.data.obj?.drive_license?.up_img_arr.join(',') : '', |
|
|
|
|
bank_card: this.data.obj?.bank_card?.img_arr.length > 0 ? this.data.obj?.bank_card?.up_img_arr.join(',') : '', |
|
|
|
|
credit_reporting: this.data.obj?.credit_reporting?.img_arr.length > 0 ? this.data.obj?.credit_reporting?.up_img_arr.join(',') : '', |
|
|
|
|
lessee_name: this.data.obj?.lessee_name?.text_center ? this.data.obj?.lessee_name?.text_center : '', |
|
|
|
|
marriage: this.data.obj?.marriage?.option || this.data.obj?.marriage?.option === 0 ? this.data.arr[this.data.obj?.marriage?.option].name : '', |
|
|
|
|
age: this.data.obj?.age?.text_center ? this.data.obj?.age?.text_center : '', |
|
|
|
|
id_card: this.data.obj?.id_card?.text_center ? this.data.obj?.id_card?.text_center : '', |
|
|
|
|
id_card_address: this.data.obj?.id_card_address?.text_center ? this.data.obj?.id_card_address?.text_center : '', |
|
|
|
|
phone: this.data.obj?.phone?.text_center ? this.data.obj?.phone?.text_center : '', |
|
|
|
|
email: this.data.obj?.email?.text_center ? this.data.obj?.email?.text_center : '', |
|
|
|
|
b_id_card_photo: this.data.obj?.b_id_card_photo?.img_arr.length > 0 ? this.data.obj?.b_id_card_photo?.up_img_arr.join(',') : '', |
|
|
|
|
b_credit_reporting: this.data.obj?.b_credit_reporting?.img_arr.length > 0 ? this.data.obj?.b_credit_reporting?.up_img_arr.join(',') : '', |
|
|
|
|
guarantee_name: this.data.obj?.guarantee_name?.text_center ? this.data.obj?.guarantee_name?.text_center : '', |
|
|
|
|
relation: this.data.obj?.relation?.option || this.data.obj?.relation?.option === 0 ? this.data.list[this.data.obj?.relation?.option].name : '', |
|
|
|
|
b_id_card: this.data.obj?.b_id_card?.text_center ? this.data.obj?.b_id_card?.text_center : '', |
|
|
|
|
b_phone: this.data.obj?.b_phone?.text_center ? this.data.obj?.b_phone?.text_center : '', |
|
|
|
|
address: this.data.obj?.address?.option ? this.data.obj?.address?.option.join(',') : '', |
|
|
|
|
address_detail: this.data.obj?.address_detail?.text_center ? this.data.obj?.address_detail?.text_center : '', |
|
|
|
|
b_word_address: this.data.obj?.b_word_address?.text_center ? this.data.obj?.b_word_address?.text_center : '', |
|
|
|
|
b_work_year: this.data.obj?.b_work_year?.text_center ? this.data.obj?.b_work_year?.text_center : '', |
|
|
|
|
b_word: this.data.obj?.b_word?.text_center ? this.data.obj?.b_word?.text_center : '', |
|
|
|
|
b_month_money: this.data.obj?.b_month_money?.text_center ? this.data.obj?.b_month_money?.text_center : '', |
|
|
|
|
remark: this.data.obj?.remark?.text_center ? this.data.obj?.remark?.text_center : '', |
|
|
|
|
other: this.data.obj?.other?.img_arr.length > 0 ? this.data.obj?.other?.up_img_arr.join(',') : '', |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
let car_assessment = { |
|
|
|
@ -1085,31 +1093,31 @@ Page({
|
|
|
|
|
immediate() { |
|
|
|
|
let url = 'api/form-value-write'; |
|
|
|
|
let detail = { |
|
|
|
|
id_card_photo: this.data.obj.id_card_photo.img_arr.length > 0 ? this.data.obj.id_card_photo.up_img_arr.join(',') : '', |
|
|
|
|
drive_license: this.data.obj.drive_license.img_arr.length > 0 ? this.data.obj.drive_license.up_img_arr.join(',') : '', |
|
|
|
|
bank_card: this.data.obj.bank_card.img_arr.length > 0 ? this.data.obj.bank_card.up_img_arr.join(',') : '', |
|
|
|
|
credit_reporting: this.data.obj.credit_reporting.img_arr.length > 0 ? this.data.obj.credit_reporting.up_img_arr.join(',') : '', |
|
|
|
|
lessee_name: this.data.obj.lessee_name.text_center ? this.data.obj.lessee_name.text_center : '', |
|
|
|
|
marriage: this.data.obj.marriage.option || this.data.obj.marriage.option === 0 ? this.data.arr[this.data.obj.marriage.option].name : '', |
|
|
|
|
age: this.data.obj.age.text_center ? this.data.obj.age.text_center : '', |
|
|
|
|
id_card: this.data.obj.id_card.text_center ? this.data.obj.id_card.text_center : '', |
|
|
|
|
id_card_address: this.data.obj.id_card_address.text_center ? this.data.obj.id_card_address.text_center : '', |
|
|
|
|
phone: this.data.obj.phone.text_center ? this.data.obj.phone.text_center : '', |
|
|
|
|
email: this.data.obj.email.text_center ? this.data.obj.email.text_center : '', |
|
|
|
|
b_id_card_photo: this.data.obj.b_id_card_photo.img_arr.length > 0 ? this.data.obj.b_id_card_photo.up_img_arr.join(',') : '', |
|
|
|
|
b_credit_reporting: this.data.obj.b_credit_reporting.img_arr.length > 0 ? this.data.obj.b_credit_reporting.up_img_arr.join(',') : '', |
|
|
|
|
guarantee_name: this.data.obj.guarantee_name.text_center ? this.data.obj.guarantee_name.text_center : '', |
|
|
|
|
relation: this.data.obj.relation.option || this.data.obj.relation.option === 0 ? this.data.list[this.data.obj.relation.option].name : '', |
|
|
|
|
b_id_card: this.data.obj.b_id_card.text_center ? this.data.obj.b_id_card.text_center : '', |
|
|
|
|
b_phone: this.data.obj.b_phone.text_center ? this.data.obj.b_phone.text_center : '', |
|
|
|
|
address: this.data.obj.address.option ? this.data.obj.address.option.join(',') : '', |
|
|
|
|
address_detail: this.data.obj.address_detail.text_center ? this.data.obj.address_detail.text_center : '', |
|
|
|
|
b_word_address: this.data.obj.b_word_address.text_center ? this.data.obj.b_word_address.text_center : '', |
|
|
|
|
b_work_year: this.data.obj.b_work_year.text_center ? this.data.obj.b_work_year.text_center : '', |
|
|
|
|
b_word: this.data.obj.b_word.text_center ? this.data.obj.b_word.text_center : '', |
|
|
|
|
b_month_money: this.data.obj.b_month_money.text_center ? this.data.obj.b_month_money.text_center : '', |
|
|
|
|
remark: this.data.obj.remark.text_center ? this.data.obj.remark.text_center : '', |
|
|
|
|
other: this.data.obj.other.img_arr.length > 0 ? this.data.obj.other.up_img_arr.join(',') : '', |
|
|
|
|
id_card_photo: this.data.obj?.id_card_photo?.img_arr.length > 0 ? this.data.obj?.id_card_photo?.up_img_arr.join(',') : '', |
|
|
|
|
drive_license: this.data.obj?.drive_license?.img_arr.length > 0 ? this.data.obj?.drive_license?.up_img_arr.join(',') : '', |
|
|
|
|
bank_card: this.data.obj?.bank_card?.img_arr.length > 0 ? this.data.obj?.bank_card?.up_img_arr.join(',') : '', |
|
|
|
|
credit_reporting: this.data.obj?.credit_reporting?.img_arr.length > 0 ? this.data.obj?.credit_reporting?.up_img_arr.join(',') : '', |
|
|
|
|
lessee_name: this.data.obj?.lessee_name?.text_center ? this.data.obj?.lessee_name?.text_center : '', |
|
|
|
|
marriage: this.data.obj?.marriage?.option || this.data.obj?.marriage?.option === 0 ? this.data.arr[this.data.obj?.marriage?.option].name : '', |
|
|
|
|
age: this.data.obj?.age?.text_center ? this.data.obj?.age?.text_center : '', |
|
|
|
|
id_card: this.data.obj?.id_card?.text_center ? this.data.obj?.id_card?.text_center : '', |
|
|
|
|
id_card_address: this.data.obj?.id_card_address?.text_center ? this.data.obj?.id_card_address?.text_center : '', |
|
|
|
|
phone: this.data.obj?.phone?.text_center ? this.data.obj?.phone?.text_center : '', |
|
|
|
|
email: this.data.obj?.email?.text_center ? this.data.obj?.email?.text_center : '', |
|
|
|
|
b_id_card_photo: this.data.obj?.b_id_card_photo?.img_arr.length > 0 ? this.data.obj?.b_id_card_photo?.up_img_arr.join(',') : '', |
|
|
|
|
b_credit_reporting: this.data.obj?.b_credit_reporting?.img_arr.length > 0 ? this.data.obj?.b_credit_reporting?.up_img_arr.join(',') : '', |
|
|
|
|
guarantee_name: this.data.obj?.guarantee_name?.text_center ? this.data.obj?.guarantee_name?.text_center : '', |
|
|
|
|
relation: this.data.obj?.relation?.option || this.data.obj?.relation?.option === 0 ? this.data.list[this.data.obj?.relation?.option].name : '', |
|
|
|
|
b_id_card: this.data.obj?.b_id_card?.text_center ? this.data.obj?.b_id_card?.text_center : '', |
|
|
|
|
b_phone: this.data.obj?.b_phone?.text_center ? this.data.obj?.b_phone?.text_center : '', |
|
|
|
|
address: this.data.obj?.address?.option ? this.data.obj?.address?.option.join(',') : '', |
|
|
|
|
address_detail: this.data.obj?.address_detail?.text_center ? this.data.obj?.address_detail?.text_center : '', |
|
|
|
|
b_word_address: this.data.obj?.b_word_address?.text_center ? this.data.obj?.b_word_address?.text_center : '', |
|
|
|
|
b_work_year: this.data.obj?.b_work_year?.text_center ? this.data.obj?.b_work_year?.text_center : '', |
|
|
|
|
b_word: this.data.obj?.b_word?.text_center ? this.data.obj?.b_word?.text_center : '', |
|
|
|
|
b_month_money: this.data.obj?.b_month_money?.text_center ? this.data.obj?.b_month_money?.text_center : '', |
|
|
|
|
remark: this.data.obj?.remark?.text_center ? this.data.obj?.remark?.text_center : '', |
|
|
|
|
other: this.data.obj?.other?.img_arr.length > 0 ? this.data.obj?.other?.up_img_arr.join(',') : '', |
|
|
|
|
// 车辆估计
|
|
|
|
|
repair: this.data.vehicle.repair.img_arr.length > 0 ? this.data.vehicle.repair.up_img_arr.join(',') : '', |
|
|
|
|
car_three: this.data.vehicle.car_three.img_arr.length > 0 ? this.data.vehicle.car_three.up_img_arr.join(',') : '', |
|
|
|
@ -1396,11 +1404,19 @@ Page({
|
|
|
|
|
let value = e.detail.value; |
|
|
|
|
let type = this.data.indexs == 0 ? 'obj' : 'vehicle'; |
|
|
|
|
let title = `${type}.${name}.text_center`; |
|
|
|
|
console.log(title) |
|
|
|
|
this.setData({ |
|
|
|
|
[title]: value |
|
|
|
|
}) |
|
|
|
|
this.immediate(); //临时保存
|
|
|
|
|
}, |
|
|
|
|
bindCarInput(e){ |
|
|
|
|
let value = e.detail.value; |
|
|
|
|
this.setData({ |
|
|
|
|
'vehicle.car_model.text_center[0]': value |
|
|
|
|
}) |
|
|
|
|
this.immediate(); //临时保存
|
|
|
|
|
}, |
|
|
|
|
esc_tisp(e) { //双向绑定
|
|
|
|
|
let name = e.currentTarget.dataset.name; |
|
|
|
|
let value = e.currentTarget.dataset.value ? e.currentTarget.dataset.value : e.detail.value; |
|
|
|
|