运营商详情

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' ENV = 'development'
# 共享电动车管理系统/开发环境 # 共享电动车管理系统/开发环境
# VUE_APP_BASE_API = 'https://dche.ccttiot.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 = 'https://che.chuangtewl.com/prod-api'
# VUE_APP_BASE_API = 'http://localhost:8088' # VUE_APP_BASE_API = 'http://localhost:8088'

View File

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

View File

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