Browse Source

修改报错

master
396316021 1 year ago
parent
commit
e9b1dc822c
  1. 5
      pages/GPSform/GPSform.js
  2. 208
      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, yes_Line: this.data.obj.wired_equipment,
no_Line: this.data.obj.wireless_equipment, no_Line: this.data.obj.wireless_equipment,
product: this.data.obj.product, product: this.data.obj.product,
date: this.data.obj.setup_time.slice(0, 10), date: this.data.obj.setup_time?.slice(0, 10),
time: this.data.obj.setup_time.slice(11, 16), time: this.data.obj.setup_time?.slice(11, 16),
region: this.data.obj.area, region: this.data.obj.area,
city: this.data.obj.setup_address, city: this.data.obj.setup_address,
remakes: this.data.obj.remakes remakes: this.data.obj.remakes
@ -247,6 +247,7 @@ Page({
}, },
biderInput(e) { biderInput(e) {
let name = e.currentTarget.dataset.name let name = e.currentTarget.dataset.name
console.log(1111111111111111111111111111,name)
this.setData({ this.setData({
[name]: e.detail.value [name]: e.detail.value
}) })

208
pages/toExamine/pages/first/first.js

@ -87,13 +87,14 @@ Page({
// code:""//, // code:""//,
draft: {}, draft: {},
form_type: "", form_type: "",
lock: true lock: true,
carModel: [],
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function(options) { onLoad: function (options) {
let that = this let that = this
this.setData({ this.setData({
id: options.id ? options.id : '', // 产品id id: options.id ? options.id : '', // 产品id
@ -125,18 +126,22 @@ Page({
// 获取品牌列表 // 获取品牌列表
getModel(index) { getModel(index) {
let that = this; let that = this;
wx.request({ let url = 'api/car_model'
url: `https://open.cheegu.com/CARDB.getMasterBrand?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2`, //仅为示例,并非真实的接口地址 let data = {}
header: { util.httpRequest(url, data, 'get').then((res) => {
// 'content-type': 'application/json' // 默认值 console.log(res.data, 'res.data')
}, wx.hideLoading()
success(res) { if (res.code == '200') {
// console.log(res) res.data.brand.map(item => {
res.data.message.map(item => { that.data.arrModel.push({
that.data.arrModel.push(item) name: item.title,id:item.id,
that.data.brr.push(item)
})
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) that.getveh(0)
} }
}) })
@ -144,33 +149,36 @@ Page({
// 获取车系列表 // 获取车系列表
getveh(index) { getveh(index) {
let that = this let that = this
wx.request({
url: `https://open.cheegu.com/CARDB.getSerial?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2&masterid=${that.data.arrModel[index].id}`, //仅为示例,并非真实的接口地址 let model = that.data.carModel.filter(item => {
header: { return that.data.arrModel[index].id === item.car_brand_id;
// 'content-type': 'application/json' // 默认值
},
success(res) {
that.setData({
listModel: res.data.message,
multiArrayT: [that.data.letter, that.data.arrModel, res.data.message]
}) })
model = model.map(item => {
return {
name:item.title,
} }
});
that.setData({
listModel: model,
multiArrayT: [that.data.letter, that.data.arrModel, model]
}) })
}, },
// 获取车型列表 // 获取车型列表
getAdd(index) { getAdd(index) {
let that = this // let that = this
wx.request({ // wx.request({
url: `https://open.cheegu.com/CARDB.getModel?token=F6A07E4CB6C8454DAA1EEB02B8FEB2B2&serialid=${that.data.listModel[index].id}`, //仅为示例,并非真实的接口地址 // url: `/api/car_model`, //仅为示例,并非真实的接口地址
header: { // header: {
// 'content-type': 'application/json' // 默认值 // // 'content-type': 'application/json' // 默认值
}, // },
success(res) { // success(res) {
that.setData({ // that.setData({
vehicleType: res.data.message // vehicleType: res.data.data
}) // })
} // }
}) // })
}, },
// 具体车型选择 // 具体车型选择
bindPickerChange(e) { bindPickerChange(e) {
@ -184,8 +192,9 @@ Page({
this.immediate() this.immediate()
}, },
// 车辆品牌选择 // 车辆品牌选择
bindMultiPickerChange: function(e) { //确定选择 bindMultiPickerChange: function (e) { //确定选择
this.data.vehicle.car_model.text_center = [] this.data.vehicle.car_model.text_center = []
console.log('e.detail.value',e.detail.value)
this.getveh(e.detail.value[1]) this.getveh(e.detail.value[1])
this.getAdd(e.detail.value[2]) 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}`) 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}`)
@ -198,7 +207,7 @@ Page({
this.immediate() this.immediate()
}, },
// 滑动事件 // 滑动事件
bindMultiPickerColumnChange: function(e) { bindMultiPickerColumnChange: function (e) {
let that = this let that = this
let arr = this.data.brr let arr = this.data.brr
if (e.detail.column == 0) { if (e.detail.column == 0) {
@ -540,7 +549,6 @@ Page({
} }
// 车辆评估 // 车辆评估
// 汽修宝照片 // 汽修宝照片
if (Tab.repair.require == 1) { if (Tab.repair.require == 1) {
@ -777,31 +785,31 @@ Page({
id: this.data.order_id ? this.data.order_id : '', id: this.data.order_id ? this.data.order_id : '',
number: this.data.number, number: this.data.number,
product_id: this.data.id, 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(',') : '', 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(',') : '', 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(',') : '', 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(',') : '', 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 : '', 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 : '', 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 : '', 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: 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 : '', 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 : '', 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 : '', 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_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(',') : '', 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 : '', 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 : '', 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_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 : '', 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: 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 : '', 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_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_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_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 : '', 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 : '', 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(',') : '', other: this.data.obj?.other?.img_arr.length > 0 ? this.data.obj?.other?.up_img_arr.join(',') : '',
} }
let car_assessment = { let car_assessment = {
@ -1085,31 +1093,31 @@ Page({
immediate() { immediate() {
let url = 'api/form-value-write'; let url = 'api/form-value-write';
let detail = { 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(',') : '', 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(',') : '', 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(',') : '', 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(',') : '', 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 : '', 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 : '', 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 : '', 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: 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 : '', 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 : '', 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 : '', 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_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(',') : '', 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 : '', 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 : '', 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_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 : '', 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: 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 : '', 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_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_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_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 : '', 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 : '', 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(',') : '', 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(',') : '', 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(',') : '', car_three: this.data.vehicle.car_three.img_arr.length > 0 ? this.data.vehicle.car_three.up_img_arr.join(',') : '',
@ -1202,7 +1210,7 @@ Page({
let type = this.data.indexs == 0 ? 'obj' : 'vehicle'; let type = this.data.indexs == 0 ? 'obj' : 'vehicle';
let name = ete.currentTarget.dataset.name; let name = ete.currentTarget.dataset.name;
let num = `${type}.${name}`; let num = `${type}.${name}`;
common.uploadImgs(3, 1, function(e, eve) { common.uploadImgs(3, 1, function (e, eve) {
that.data[type][name].img_arr = that.data[type][name].img_arr.concat(eve); that.data[type][name].img_arr = that.data[type][name].img_arr.concat(eve);
that.data[type][name].up_img_arr = that.data[type][name].up_img_arr.concat(e); that.data[type][name].up_img_arr = that.data[type][name].up_img_arr.concat(e);
that.setData({ that.setData({
@ -1267,7 +1275,7 @@ Page({
let name = this.data.indexs == 0 ? 'obj' : 'vehicle'; let name = this.data.indexs == 0 ? 'obj' : 'vehicle';
let type = e.currentTarget.dataset.type; let type = e.currentTarget.dataset.type;
let num = `${name}.${this.data.upload_type}.img_arr`; let num = `${name}.${this.data.upload_type}.img_arr`;
common.uploadImgs(type, 1, function(e, eve) { common.uploadImgs(type, 1, function (e, eve) {
//调用承租人身份证识别 //调用承租人身份证识别
if (that.data.upload_type == 'id_card_photo' && that.data.tool_index == 0) { if (that.data.upload_type == 'id_card_photo' && that.data.tool_index == 0) {
that.getID(e) that.getID(e)
@ -1396,11 +1404,19 @@ Page({
let value = e.detail.value; let value = e.detail.value;
let type = this.data.indexs == 0 ? 'obj' : 'vehicle'; let type = this.data.indexs == 0 ? 'obj' : 'vehicle';
let title = `${type}.${name}.text_center`; let title = `${type}.${name}.text_center`;
console.log(title)
this.setData({ this.setData({
[title]: value [title]: value
}) })
this.immediate(); //临时保存 this.immediate(); //临时保存
}, },
bindCarInput(e){
let value = e.detail.value;
this.setData({
'vehicle.car_model.text_center[0]': value
})
this.immediate(); //临时保存
},
esc_tisp(e) { //双向绑定 esc_tisp(e) { //双向绑定
let name = e.currentTarget.dataset.name; let name = e.currentTarget.dataset.name;
let value = e.currentTarget.dataset.value ? e.currentTarget.dataset.value : e.detail.value; let value = e.currentTarget.dataset.value ? e.currentTarget.dataset.value : e.detail.value;
@ -1431,49 +1447,49 @@ Page({
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */
onReady: function() { onReady: function () {
}, },
/** /**
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function() { onShow: function () {
}, },
/** /**
* 生命周期函数--监听页面隐藏 * 生命周期函数--监听页面隐藏
*/ */
onHide: function() { onHide: function () {
}, },
/** /**
* 生命周期函数--监听页面卸载 * 生命周期函数--监听页面卸载
*/ */
onUnload: function() { onUnload: function () {
}, },
/** /**
* 页面相关事件处理函数--监听用户下拉动作 * 页面相关事件处理函数--监听用户下拉动作
*/ */
onPullDownRefresh: function() { onPullDownRefresh: function () {
}, },
/** /**
* 页面上拉触底事件的处理函数 * 页面上拉触底事件的处理函数
*/ */
onReachBottom: function() { onReachBottom: function () {
}, },
/** /**
* 用户点击右上角分享 * 用户点击右上角分享
*/ */
onShareAppMessage: function() { onShareAppMessage: function () {
} }
}) })

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

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

96
project.private.config.json

@ -5,5 +5,99 @@
"compileHotReLoad": true, "compileHotReLoad": true,
"urlCheck": false "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