运营商详情

This commit is contained in:
tx 2024-11-06 14:38:37 +08:00
parent 6033ec70eb
commit 121f975387
3 changed files with 27 additions and 8 deletions

View File

@ -5,8 +5,8 @@ VUE_APP_TITLE = 共享电动车管理系统
ENV = 'development'
# 共享电动车管理系统/开发环境
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
# VUE_APP_BASE_API = 'http://localhost:8088'

View File

@ -92,7 +92,11 @@
{{deptInfo.offlineStatusCount.inStashNum }} | {{ deptInfo.vehicleVo.inStashNum }}
</el-descriptions-item>
<el-descriptions-item label=" 投放" >
{{ deptInfo.vehicleVo.offlineDevices.length-deptInfo.offlineStatusCount.inStashNum}} | {{ deptInfo.vehicleVo.inOperation}}
<template>
<!-- <pre></pre> -->
<div @click="noline">{{ deptInfo.vehicleVo.offlineDevices.length-deptInfo.offlineStatusCount.inStashNum}} | {{ deptInfo.vehicleVo.inOperation}}</div>
</template>
</el-descriptions-item>
@ -132,8 +136,8 @@
</el-row>
<el-card class="box-card">
<el-tabs>
<el-tab-pane label="运营区" lazy>
<el-tabs v-model="activeTab">
<el-tab-pane label="运营区" lazy name="运营区">
<Area :deptId="detail.deptId" v-if="detail.deptId" />
</el-tab-pane>
<el-tab-pane label="合伙人" lazy>
@ -148,8 +152,8 @@
<Model :deptId="detail.deptId" v-if="detail.deptId" />
<!-- <recharge :query="{deptId: detail.deptId}" :view="views.user"/> -->
</el-tab-pane>
<el-tab-pane label="车辆列表" lazy>
<device :deptId="detail.deptId" v-if="detail.deptId" />
<el-tab-pane label="车辆列表" lazy name="车辆列表">
<device ref="deviceComponent" :deptId="detail.deptId" v-if="detail.deptId" />
</el-tab-pane>
<el-tab-pane label="订单" lazy>
@ -251,12 +255,23 @@ export default {
showConfigDialog: false,
deptInfo: {},
defaultValue:0,
activeTab: '运营区', //
}
},
created() {
this.getDetail();
},
methods: {
noline() {
console.log('dianjile ');
this.activeTab = '车辆列表'; //
this.$nextTick(() => {
// device fetchData
if (this.$refs.deviceComponent) {
this.$refs.deviceComponent.fetchData();
}
});
},
getDetail() {
this.loading = true;
getDept(this.$route.params.deptId).then(response => {

View File

@ -1140,6 +1140,10 @@ export default {
this.$eventBus.$off("close-all-dialogs", this.closeDialog);
},
methods: {
fetchData(){
this.queryParams.onlineStatus=0
this.getList();
},
startTimecg(value) {
console.log("start变化", value);
if (this.startTime != "" && this.endTime != "") {