|
@@ -2,11 +2,13 @@
|
|
<view class="container-view">
|
|
<view class="container-view">
|
|
<view class="return-info">
|
|
<view class="return-info">
|
|
<view class="h5">车辆信息</view>
|
|
<view class="h5">车辆信息</view>
|
|
-
|
|
|
|
|
|
+
|
|
<view v-if="overdueMoney" class="return-top flex-row flex-between">
|
|
<view v-if="overdueMoney" class="return-top flex-row flex-between">
|
|
- <view style="align-items: baseline;" class="flex-row">逾期费用:<allPrice :amount="(overdueMoney/100)"/></view>
|
|
|
|
|
|
+ <view style="align-items: baseline;" class="flex-row">逾期费用:
|
|
|
|
+ <allPrice :amount="(overdueMoney/100)" />
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+
|
|
<view class="return-top flex-row flex-between">
|
|
<view class="return-top flex-row flex-between">
|
|
<view>车辆编号:{{car_sn}}</view>
|
|
<view>车辆编号:{{car_sn}}</view>
|
|
</view>
|
|
</view>
|
|
@@ -39,11 +41,12 @@
|
|
<view class="pictures-info">
|
|
<view class="pictures-info">
|
|
<view>车辆照片</view>
|
|
<view>车辆照片</view>
|
|
<!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
|
|
<!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
|
|
- <uploaders :max="shopList.flk_hire_car_img_num" :car_info="car_imgs" @update-car-images="handleCarImagesUpdate"></uploaders>
|
|
|
|
|
|
+ <uploaders :max="shopList.flk_hire_car_img_num" :car_info="car_imgs"
|
|
|
|
+ @update-car-images="handleCarImagesUpdate"></uploaders>
|
|
<view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
|
|
<view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
|
|
<view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
|
|
<view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+
|
|
<PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
|
|
<PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
|
|
:isShowToBuy="isShowToBuy" />
|
|
:isShowToBuy="isShowToBuy" />
|
|
</view>
|
|
</view>
|
|
@@ -66,135 +69,160 @@
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- totalPrice:0,
|
|
|
|
- isShowToBuy:false,
|
|
|
|
- myLocation:{},
|
|
|
|
- shopInfo:{},
|
|
|
|
- isReturnCar:"",
|
|
|
|
- overdueTimes:'',
|
|
|
|
- model_id:"",
|
|
|
|
- car_sn:"",
|
|
|
|
- shopList:{},
|
|
|
|
- carInfoData:{},
|
|
|
|
|
|
+ totalPrice: 0,
|
|
|
|
+ isShowToBuy: false,
|
|
|
|
+ myLocation: {},
|
|
|
|
+ shopInfo: {},
|
|
|
|
+ isReturnCar: "",
|
|
|
|
+ overdueTimes: '',
|
|
|
|
+ model_id: "",
|
|
|
|
+ car_sn: "",
|
|
|
|
+ shopList: {},
|
|
|
|
+ carInfoData: {},
|
|
carInfo: {},
|
|
carInfo: {},
|
|
- overdueMoney:0,
|
|
|
|
- overdueTime:0,
|
|
|
|
|
|
+ overdueMoney: 0,
|
|
|
|
+ overdueTime: 0,
|
|
sub_sn: '',
|
|
sub_sn: '',
|
|
model_image: '3',
|
|
model_image: '3',
|
|
car_model: '',
|
|
car_model: '',
|
|
return_imgs: [],
|
|
return_imgs: [],
|
|
car_imgs: [],
|
|
car_imgs: [],
|
|
model_image_list: '',
|
|
model_image_list: '',
|
|
- _image_list:[]
|
|
|
|
|
|
+ _image_list: []
|
|
};
|
|
};
|
|
},
|
|
},
|
|
/**
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
*/
|
|
onLoad: function(options) {
|
|
onLoad: function(options) {
|
|
- console.log(options,'options');
|
|
|
|
|
|
+ this.locationFn()
|
|
|
|
+ console.log(options, 'options');
|
|
this.isReturnCar = options.isReturnCar
|
|
this.isReturnCar = options.isReturnCar
|
|
- if(options.isReturnCar){
|
|
|
|
|
|
+ if (options.isReturnCar) {
|
|
uni.setNavigationBarTitle({
|
|
uni.setNavigationBarTitle({
|
|
- title:'归还车辆'
|
|
|
|
|
|
+ title: '归还车辆'
|
|
})
|
|
})
|
|
this.shopInfoFn()
|
|
this.shopInfoFn()
|
|
}
|
|
}
|
|
- this.sub_sn = options.sub_sn || ''
|
|
|
|
- this.model_id = options.model_id || ''
|
|
|
|
- this.car_sn = options.car_sn || ''
|
|
|
|
- this.overdueMoney = options.overdueMoney || ''
|
|
|
|
- this.overdueTime = options.overdueTime || ''
|
|
|
|
-
|
|
|
|
- this.totalPrice = Number(this.overdueMoney) || 0
|
|
|
|
|
|
+ this.sub_sn = options.sub_sn || ''
|
|
|
|
+ this.model_id = options.model_id || ''
|
|
|
|
+ this.car_sn = options.car_sn || ''
|
|
|
|
+ if (options.overdueMoney == 'undefined' || !options.overdueMoney) {
|
|
|
|
+ this.overdueMoney = 0
|
|
|
|
+ } else {
|
|
|
|
+ this.overdueTime = Number(options.overdueMoney)
|
|
|
|
+ }
|
|
|
|
+ if (options.overdueTime == 'undefined' || !options.overdueTime == 'undefined') {
|
|
|
|
+ this.overdueTime = ''
|
|
|
|
+ } else {
|
|
|
|
+ this.overdueTime = options.overdueTime
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.totalPrice = Number(this.overdueMoney) || 0
|
|
this.carDetFn()
|
|
this.carDetFn()
|
|
this.shopSettingFn()
|
|
this.shopSettingFn()
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
},
|
|
},
|
|
// API_FLK_CAR_DETAIL
|
|
// API_FLK_CAR_DETAIL
|
|
/**
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
*/
|
|
- onShow: function() {
|
|
|
|
- },
|
|
|
|
- onUnload: function () {
|
|
|
|
- },
|
|
|
|
|
|
+ onShow: function() {},
|
|
|
|
+ onUnload: function() {},
|
|
methods: {
|
|
methods: {
|
|
- async payToOrder(pay_type){
|
|
|
|
|
|
+ async payToOrder(pay_type) {
|
|
let milliseconds = new Date().getTime();
|
|
let milliseconds = new Date().getTime();
|
|
const current_time = this.overdueTime ? this.overdueTime : parseInt(milliseconds / 1000);
|
|
const current_time = this.overdueTime ? this.overdueTime : parseInt(milliseconds / 1000);
|
|
-
|
|
|
|
- let {data} = await request.postApi(config_gyq.API_FLK_CAR_RETURN_CAR,{
|
|
|
|
|
|
+ let {
|
|
|
|
+ data
|
|
|
|
+ } = await request.postApi(config_gyq.API_FLK_CAR_RETURN_CAR, {
|
|
latitude: this.myLocation.latitude,
|
|
latitude: this.myLocation.latitude,
|
|
longitude: this.myLocation.longitude,
|
|
longitude: this.myLocation.longitude,
|
|
- shop_id:this.shopInfo.id,
|
|
|
|
- car_sn:this.car_sn,
|
|
|
|
- image_list:this._image_list.join(','),
|
|
|
|
|
|
+ shop_id: this.shopInfo.id,
|
|
|
|
+ car_sn: this.car_sn,
|
|
|
|
+ image_list: this._image_list.join(','),
|
|
pay_type,
|
|
pay_type,
|
|
- price:this.totalPrice,
|
|
|
|
|
|
+ price: this.totalPrice,
|
|
current_time
|
|
current_time
|
|
})
|
|
})
|
|
- if(data.code == 200){
|
|
|
|
|
|
+ if (data.code == 200) {
|
|
common.simpleToast('还车成功!')
|
|
common.simpleToast('还车成功!')
|
|
- setTimeout(()=> {
|
|
|
|
|
|
+ setTimeout(() => {
|
|
uni.switchTab({
|
|
uni.switchTab({
|
|
url: `/pages/index/index?plate_number=${this.car_sn}`,
|
|
url: `/pages/index/index?plate_number=${this.car_sn}`,
|
|
});
|
|
});
|
|
}, 800)
|
|
}, 800)
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
common.simpleToast(data.msg)
|
|
common.simpleToast(data.msg)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async locationFn() {
|
|
async locationFn() {
|
|
- let res = await uni.getLocation()
|
|
|
|
- if (res[1]) {
|
|
|
|
- this.myLocation = {
|
|
|
|
- latitude: res[1].latitude,
|
|
|
|
- longitude: res[1].longitude,
|
|
|
|
|
|
+ let _this = this
|
|
|
|
+ uni.getLocation({
|
|
|
|
+ success(res) {
|
|
|
|
+ _this.myLocation = {
|
|
|
|
+ latitude: res.latitude,
|
|
|
|
+ longitude: res.longitude,
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
- this.shopInfoFn()
|
|
|
|
- }
|
|
|
|
|
|
+ })
|
|
},
|
|
},
|
|
//还车
|
|
//还车
|
|
- async submitReturn(){
|
|
|
|
- this._image_list = this.car_imgs.map(item => item.img_url)
|
|
|
|
|
|
+ async submitReturn() {
|
|
|
|
+ this._image_list = this.car_imgs.map(item => {
|
|
|
|
+ return item.url
|
|
|
|
+ })
|
|
if (this._image_list.length < 1) return common.simpleToast('请上传车辆照片')
|
|
if (this._image_list.length < 1) return common.simpleToast('请上传车辆照片')
|
|
- this.isShowToBuy = true
|
|
|
|
-
|
|
|
|
|
|
+ if (this.totalPrice > 0) {
|
|
|
|
+ this.isShowToBuy = true
|
|
|
|
+ } else {
|
|
|
|
+ this.payToOrder(1)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
},
|
|
},
|
|
- async shopInfoFn(){
|
|
|
|
|
|
+ async shopInfoFn() {
|
|
let res = await uni.getLocation()
|
|
let res = await uni.getLocation()
|
|
- let {data} = await request.postApi(config.API_NEAR_SHOP_LIST,
|
|
|
|
- {
|
|
|
|
- limit:1,
|
|
|
|
|
|
+ let {
|
|
|
|
+ data
|
|
|
|
+ } = await request.postApi(config.API_NEAR_SHOP_LIST, {
|
|
|
|
+ limit: 1,
|
|
latitude: this.myLocation.latitude,
|
|
latitude: this.myLocation.latitude,
|
|
longitude: this.myLocation.longitude,
|
|
longitude: this.myLocation.longitude,
|
|
- }
|
|
|
|
- )
|
|
|
|
- if(data.code == 200){
|
|
|
|
- if(data.data.list.length > 0){
|
|
|
|
|
|
+ })
|
|
|
|
+ if (data.code == 200) {
|
|
|
|
+ if (data.data.list.length > 0) {
|
|
this.shopInfo = data.data.list[0]
|
|
this.shopInfo = data.data.list[0]
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
common.simpleToast('未获取到门店位置!')
|
|
common.simpleToast('未获取到门店位置!')
|
|
}
|
|
}
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
common.simpleToast(data.msg)
|
|
common.simpleToast(data.msg)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- async shopSettingFn(){
|
|
|
|
- let {data} = await request.postApi(config_gyq.API_FLK_INDEX_SHOP_SETTING,{model_id:this.model_id})
|
|
|
|
- if(data.code == 200){
|
|
|
|
|
|
+ async shopSettingFn() {
|
|
|
|
+ let {
|
|
|
|
+ data
|
|
|
|
+ } = await request.postApi(config_gyq.API_FLK_INDEX_SHOP_SETTING, {
|
|
|
|
+ model_id: this.model_id
|
|
|
|
+ })
|
|
|
|
+ if (data.code == 200) {
|
|
this.shopList = data.data
|
|
this.shopList = data.data
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
common.simpleToast(data.msg)
|
|
common.simpleToast(data.msg)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- async carDetFn(){
|
|
|
|
- let {data} = await request.postApi(config.API_FLK_CAR_DETAIL,{car_sn:this.car_sn})
|
|
|
|
- if(data.code == 200){
|
|
|
|
|
|
+ async carDetFn() {
|
|
|
|
+ let {
|
|
|
|
+ data
|
|
|
|
+ } = await request.postApi(config.API_FLK_CAR_DETAIL, {
|
|
|
|
+ car_sn: this.car_sn
|
|
|
|
+ })
|
|
|
|
+ if (data.code == 200) {
|
|
this.carInfoData = data.data
|
|
this.carInfoData = data.data
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
common.simpleToast(data.msg)
|
|
common.simpleToast(data.msg)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -202,7 +230,7 @@
|
|
// 这里会接收到子组件传来的更新后的图片URL数组
|
|
// 这里会接收到子组件传来的更新后的图片URL数组
|
|
this.car_imgs = updatedImages
|
|
this.car_imgs = updatedImages
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+
|
|
submitEnabled() {
|
|
submitEnabled() {
|
|
const me = this
|
|
const me = this
|
|
const _image_list = this.car_imgs.map(item => item.img_url)
|
|
const _image_list = this.car_imgs.map(item => item.img_url)
|