diff --git a/src/views/system/dept/deptDetail.vue b/src/views/system/dept/deptDetail.vue index 2dfdc04..b4764a2 100644 --- a/src/views/system/dept/deptDetail.vue +++ b/src/views/system/dept/deptDetail.vue @@ -50,25 +50,25 @@ - {{ detail.platformServiceFee }}% + {{ detail.platformServiceFee }}% - {{ detail.handlingCharge }}% + {{ detail.handlingCharge }}‰ - {{ detail.withdrawHandlingCharge }}% + {{ detail.withdrawHandlingCharge }}‰ - {{ deptInfo.withdraw }}元 + {{ deptInfo.withdraw }}元 {{ deptInfo.settlementAmount }} - {{ deptInfo.todayIncome }}元 | {{ deptInfo.totalIncome }}元 + {{ deptInfo.todayIncome }}元 | {{ deptInfo.totalIncome }}元 - {{ deptInfo.todayOrderCount}}元 | {{ deptInfo.totalOrderCount }}元 + {{ deptInfo.todayOrderCount }}笔 | {{ deptInfo.totalOrderCount }}笔 {{ deptInfo.todayOrderFee }}元 | {{ deptInfo.totalOrderFee }}元 @@ -83,47 +83,112 @@ - + - - {{ deptInfo.vehicleVo.offlineDevices.length}}辆 | {{ deptInfo.vehicleVo.allNum}}辆 + + + {{ deptInfo.vehicleVo.offlineDevices.length }} + | + + {{ deptInfo.vehicleVo.allNum }} + + - {{deptInfo.offlineStatusCount.inStashNum }}辆 | {{ deptInfo.vehicleVo.inStashNum }}辆 - - - - - {{ deptInfo.vehicleVo.offlineDevices.length-deptInfo.offlineStatusCount.inStashNum}}辆 | {{ deptInfo.vehicleVo.inOperation}}辆 - - + + {{ deptInfo.offlineStatusCount.inStashNum }} + | + + {{ deptInfo.vehicleVo.inStashNum }} + - + + + + {{ deptInfo.vehicleVo.offlineDevices.length - + deptInfo.offlineStatusCount.inStashNum }} + | + + {{ deptInfo.vehicleVo.inOperation }} + + + - {{ deptInfo.offlineStatusCount.ridingNum +deptInfo.offlineStatusCount.temporarilyLockNum}}辆 | {{deptInfo.vehicleVo.ridingNum+ deptInfo.vehicleVo.temporarilyLockNum}}辆 + + {{ deptInfo.offlineStatusCount.ridingNum + + deptInfo.offlineStatusCount.temporarilyLockNum }} + | + + {{ deptInfo.vehicleVo.ridingNum + deptInfo.vehicleVo.temporarilyLockNum + }} + + - {{ deptInfo.offlineStatusCount.ridingNum }}辆 | {{ deptInfo.vehicleVo.ridingNum }}辆 + + {{ deptInfo.offlineStatusCount.ridingNum }} + | + + {{ deptInfo.vehicleVo.ridingNum }} + - - {{ deptInfo.offlineStatusCount.temporarilyLockNum }}辆 | {{ deptInfo.vehicleVo.temporarilyLockNum}}辆 + + + + {{ deptInfo.offlineStatusCount.temporarilyLockNum }} + | + + {{ deptInfo.vehicleVo.temporarilyLockNum }} + - {{ deptInfo.offlineStatusCount.normalNum }}辆 | {{ deptInfo.vehicleVo.normalNum}}辆 + + {{ deptInfo.offlineStatusCount.normalNum }} + | + + {{ deptInfo.vehicleVo.normalNum }} + - - {{ deptInfo.offlineStatusCount.inAppointmentNum }}辆 | {{ deptInfo.vehicleVo.inAppointmentNum }}辆 + + + + {{ deptInfo.offlineStatusCount.inAppointmentNum }} + | + + {{ deptInfo.vehicleVo.inAppointmentNum }} + - - {{ deptInfo.offlineStatusCount.offlineNum }}辆 | {{ deptInfo.vehicleVo.disabledNum}}辆 + + + + {{ deptInfo.offlineStatusCount.offlineNum }} + | + + {{ deptInfo.vehicleVo.disabledNum }} + - + @@ -153,7 +218,7 @@ - + @@ -186,7 +251,7 @@ - + @@ -246,7 +311,7 @@ export default { return (type) => { return type === '2' ? '元' : '%'; } - } + } }, data() { return { @@ -254,7 +319,7 @@ export default { loading: false, showConfigDialog: false, deptInfo: {}, - defaultValue:0, + defaultValue: 0, activeTab: '运营区', // 默认激活的标签页 } }, @@ -283,46 +348,47 @@ export default { getDeptInfo(this.$route.params.deptId).then(response => { this.deptInfo = response.data; - // 初始化离线状态统计对象 - this.deptInfo.offlineStatusCount = { - inStashNum: 0, // 仓库中 - normalNum: 0, // 待租 - inAppointmentNum: 0, // 预约中 - ridingNum: 0, // 骑行中 - temporarilyLockNum: 0, // 临时锁车中 - dispatchingNum: 0, // 调度中 - offlineNum: 0 // 下线 - }; + // 初始化离线状态统计对象 + this.deptInfo.offlineStatusCount = { + inStashNum: 0, // 仓库中 + normalNum: 0, // 待租 + inAppointmentNum: 0, // 预约中 + ridingNum: 0, // 骑行中 + temporarilyLockNum: 0, // 临时锁车中 + dispatchingNum: 0, // 调度中 + offlineNum: 0 // 下线 + }; - // 根据 status 进行分类统计 - this.deptInfo.vehicleVo.offlineDevices.forEach(device => { - switch (device.status) { - case 0: - this.deptInfo.offlineStatusCount.inStashNum += 1; - break; - case 1: - this.deptInfo.offlineStatusCount.normalNum += 1; - break; - case 2: - this.deptInfo.offlineStatusCount.inAppointmentNum += 1; - break; - case 3: - this.deptInfo.offlineStatusCount.ridingNum += 1; - break; - case 4: - this.deptInfo.offlineStatusCount.temporarilyLockNum += 1; - break; - case 6: - this.deptInfo.offlineStatusCount.dispatchingNum += 1; - break; - case 8: - this.deptInfo.offlineStatusCount.offlineNum += 1; - break; - } - }); - }).finally(() => { - // 加载完成后可以进行其他操作 - }); + // 根据 status 进行分类统计 + this.deptInfo.vehicleVo.offlineDevices.forEach(device => { + switch (device.status) { + case '0': + this.deptInfo.offlineStatusCount.inStashNum += 1; + break; + case '1': + this.deptInfo.offlineStatusCount.normalNum += 1; + break; + case '2': + this.deptInfo.offlineStatusCount.inAppointmentNum += 1; + break; + case '3': + this.deptInfo.offlineStatusCount.ridingNum += 1; + break; + case '4': + this.deptInfo.offlineStatusCount.temporarilyLockNum += 1; + break; + case '6': + this.deptInfo.offlineStatusCount.dispatchingNum += 1; + break; + case '8': + this.deptInfo.offlineStatusCount.offlineNum += 1; + break; + } + }); + // console.log(this.deptInfo.vehicleVo,'this.deptInfo.offlineStatusCountthis.deptInfo.offlineStatusCount'); + }).finally(() => { + // 加载完成后可以进行其他操作 + }); }, } } diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue index c0e3056..94c4060 100644 --- a/src/views/system/device/index.vue +++ b/src/views/system/device/index.vue @@ -1449,9 +1449,9 @@ export default { } ); } - listModel(this.queryParams).then((response) => { - this.modelOptions = response.rows; - }); + // listModel(this.queryParams).then((response) => { + // this.modelOptions = response.rows; + // }); listArea(this.queryParams).then((response) => { this.areaOptions = response.rows; }); @@ -1468,9 +1468,9 @@ export default { } ); } - listModel(this.queryParams).then((response) => { - this.modelOptions = response.rows; - }); + // listModel(this.queryParams).then((response) => { + // this.modelOptions = response.rows; + // }); listArea(this.queryParams).then((response) => { this.areaOptions = response.rows; }); @@ -1496,6 +1496,13 @@ export default { this.reset(); this.open = true; this.title = "添加设备"; + + this.$nextTick(() => { + if(this.deptId){ + this.form.deptId=this.deptId + + } + }) }, /** 详情按钮 */ handleView(row) { diff --git a/src/views/system/fee/index.vue b/src/views/system/fee/index.vue index e63a139..5b8bcf4 100644 --- a/src/views/system/fee/index.vue +++ b/src/views/system/fee/index.vue @@ -583,6 +583,9 @@ export default { this.reset(); this.open = true; this.title = "添加收费方式"; + if(this.deptId){ + this.form.deptId=this.deptId + } }, handleUpdate(row) { this.reset(); diff --git a/src/views/system/model/index.vue b/src/views/system/model/index.vue index 399e2b6..d70b5aa 100644 --- a/src/views/system/model/index.vue +++ b/src/views/system/model/index.vue @@ -439,6 +439,9 @@ export default { this.reset(); this.open = true; this.title = "添加车辆型号"; + if(this.deptId){ + this.form.operator=this.deptId + } }, /** 修改按钮操作 */ handleUpdate(row) { diff --git a/src/views/system/partner/index.vue b/src/views/system/partner/index.vue index f46b690..a74f8de 100644 --- a/src/views/system/partner/index.vue +++ b/src/views/system/partner/index.vue @@ -514,7 +514,11 @@ export default { getUser().then(response => { this.postOptions = response.posts; this.roleOptions = response.roles; - this.areaOptions = response.areas; + if (this.deptId) { + this.areaOptions = response.areas.filter(area => area.deptId === this.deptId); + } else { + this.areaOptions = response.areas; + } this.open = true; this.title = "添加合伙人"; this.form.password = this.initPassword;