Browse Source

修改报错

master
396316021 1 year ago
parent
commit
e9b1dc822c
  1. 5
      pages/GPSform/GPSform.js
  2. 184
      pages/toExamine/pages/first/first.js
  3. 15
      pages/toExamine/pages/first/first.wxml
  4. 96
      project.private.config.json

5
pages/GPSform/GPSform.js

@ -79,8 +79,8 @@ Page({
yes_Line: this.data.obj.wired_equipment,
no_Line: this.data.obj.wireless_equipment,
product: this.data.obj.product,
date: this.data.obj.setup_time.slice(0, 10),
time: this.data.obj.setup_time.slice(11, 16),
date: this.data.obj.setup_time?.slice(0, 10),
time: this.data.obj.setup_time?.slice(11, 16),
region: this.data.obj.area,
city: this.data.obj.setup_address,
remakes: this.data.obj.remakes
@ -247,6 +247,7 @@ Page({
},
biderInput(e) {
let name = e.currentTarget.dataset.name
console.log(1111111111111111111111111111,name)
this.setData({
[name]: e.detail.value
})

184
pages/toExamine/pages/first/first.js

@ -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;

15
pages/toExamine/pages/first/first.wxml

@ -509,13 +509,14 @@
</view>
<view class="bold A">
<text class="xin" wx:if="{{vehicle.car_model.require == 1}}">*</text>{{vehicle.car_model.title}}</view>
<picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArrayT}}" range-key='name'>
<view class="flex_start flex_items">
<view wx:if="{{vehicle.car_model.text_center[0]}}">{{vehicle.car_model.text_center[0]}}</view>
<view class="c9" wx:else>请选择</view>
<image src="../../../../img/right.png" class="img"></image>
</view>
</picker>
<!-- <picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArrayT}}" range-key='name'>-->
<!-- <view class="flex_start flex_items">-->
<!-- <view wx:if="{{vehicle.car_model.text_center[0]}}">{{vehicle.car_model.text_center[0]}}</view>-->
<!-- <view class="c9" wx:else>请选择</view>-->
<!-- <image src="../../../../img/right.png" class="img"></image>-->
<!-- </view>-->
<!-- </picker>-->
<input placeholder="请输入" placeholder-class="txt_right" value="{{vehicle.car_model.text_center[0]}}" data-name="vehicle.car_model" bindinput="bindCarInput"></input>
</view>
<view class="flex_between flex_items mt20">

96
project.private.config.json

@ -5,5 +5,99 @@
"compileHotReLoad": true,
"urlCheck": false
},
"libVersion": "3.2.2"
"libVersion": "3.2.2",
"condition": {
"miniprogram": {
"list": [
{
"name": "",
"pathName": "pages/GPS/GPS",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "",
"pathName": "pages/GPSform/GPSform",
"query": "item=%7B%22id%22%3A3%2C%22lessee_name%22%3A%22123213%22%2C%22lessee_phone%22%3A%22123123%22%2C%22car_model%22%3A%22123132%22%2C%22status%22%3A0%7D",
"launchMode": "default",
"scene": null
},
{
"name": "",
"pathName": "pages/GPSform/GPSform",
"query": "item=%7B%22id%22%3A2%2C%22lessee_name%22%3A%223123%22%2C%22lessee_phone%22%3A%22213123%22%2C%22car_model%22%3A%22321123%22%2C%22status%22%3A0%7D",
"launchMode": "default",
"scene": null
},
{
"name": "",
"pathName": "pages/toExamine/pages/first/first",
"query": "id=1&title=A&type=A&det_type=4",
"launchMode": "default",
"scene": null
},
{
"name": "终审",
"pathName": "pages/toExamine/pages/finalJudgment/finalJudgment",
"query": "det_id=29&det_type=4",
"scene": null
},
{
"name": "注册",
"pathName": "pages/register/register",
"query": "",
"scene": null
},
{
"name": "请款",
"pathName": "pages/toExamine/pages/requestfunds/requestfunds",
"query": "",
"scene": null
},
{
"name": "登录",
"pathName": "pages/Sign/Sign",
"query": "",
"scene": null
},
{
"name": "注册",
"pathName": "pages/register/register",
"query": "",
"scene": null
},
{
"name": "忘记密码",
"pathName": "pages/Forget password/Forget password",
"query": "",
"scene": null
},
{
"name": "初审",
"pathName": "pages/toExamine/pages/first/first",
"query": "id=1&det_type=4",
"scene": null
},
{
"name": "个人资料",
"pathName": "pages/myclass/pages/myData/myData",
"query": "",
"scene": null
},
{
"name": "GPS",
"pathName": "pages/GPS/GPS",
"query": "",
"scene": null
},
{
"name": "GPS表单",
"pathName": "pages/GPSform/GPSform",
"query": "",
"scene": null
}
]
}
}
}
Loading…
Cancel
Save