|
@@ -31,7 +31,7 @@
|
|
<div class="cont-title">现场监控接入情况</div>
|
|
<div class="cont-title">现场监控接入情况</div>
|
|
</div>
|
|
</div>
|
|
<div class="components-item">
|
|
<div class="components-item">
|
|
- <unit-access-to @chooseUnit="onChooseUnit" :app-org="appOrg"></unit-access-to>
|
|
|
|
|
|
+ <unit-access-to @chooseUnit="onChooseUnit" :app-org="appOrg" :key="appOrg"></unit-access-to>
|
|
</div>
|
|
</div>
|
|
<!-- <monitoring v-if="menu === 1"></monitoring>
|
|
<!-- <monitoring v-if="menu === 1"></monitoring>
|
|
<monitoring-video v-if="menu === 2"></monitoring-video> -->
|
|
<monitoring-video v-if="menu === 2"></monitoring-video> -->
|
|
@@ -149,7 +149,10 @@
|
|
<div class="cont-title">现场远程检查情况</div>
|
|
<div class="cont-title">现场远程检查情况</div>
|
|
</div>
|
|
</div>
|
|
<div class="components-item">
|
|
<div class="components-item">
|
|
- <current-area @chooseMonitor="onChooseMonitor" @choose="onChooseIssueList" :monitorName="monitorName" :app-org="appOrg"></current-area>
|
|
|
|
|
|
+ <current-area @chooseMonitor="onChooseMonitor" @choose="onChooseIssueList"
|
|
|
|
+ :monitorName="monitorName"
|
|
|
|
+ :app-org="appOrg"
|
|
|
|
+ :key="appOrg"></current-area>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -180,7 +183,8 @@
|
|
<div class="dialog-center">
|
|
<div class="dialog-center">
|
|
<unit-project-dia
|
|
<unit-project-dia
|
|
v-if="showProject === 1"
|
|
v-if="showProject === 1"
|
|
- @close="onCloseProject"
|
|
|
|
|
|
+ @close="onCloseProject()"
|
|
|
|
+ :curCompanyear="curCompanyear"
|
|
@choose="onChooseProject"
|
|
@choose="onChooseProject"
|
|
></unit-project-dia>
|
|
></unit-project-dia>
|
|
<project-camera-dia
|
|
<project-camera-dia
|
|
@@ -258,7 +262,13 @@ import unitAccessDialog from "@/views/screen/engineering/unitAccessDialog.vue";
|
|
import CarCost from "@/views/screen/official/carCost.vue";
|
|
import CarCost from "@/views/screen/official/carCost.vue";
|
|
import ResourceList from "@/views/screen/official/resourceList.vue";
|
|
import ResourceList from "@/views/screen/official/resourceList.vue";
|
|
import CarHealth from "@/views/screen/official/carHealth.vue";
|
|
import CarHealth from "@/views/screen/official/carHealth.vue";
|
|
-import { getProjectNum, getProjectNumX, getProjectNumY, getProjectNumZ } from '@/api/screen/service'
|
|
|
|
|
|
+import {
|
|
|
|
+ getProjectNum,
|
|
|
|
+ getProjectNumThisWeek,
|
|
|
|
+ getProjectNumX,
|
|
|
|
+ getProjectNumY,
|
|
|
|
+ getProjectNumZ
|
|
|
|
+} from '@/api/screen/service'
|
|
export default {
|
|
export default {
|
|
name: "EngineeringMain",
|
|
name: "EngineeringMain",
|
|
components: {
|
|
components: {
|
|
@@ -315,6 +325,7 @@ export default {
|
|
],
|
|
],
|
|
list1: [],
|
|
list1: [],
|
|
list2: [],
|
|
list2: [],
|
|
|
|
+ curCompanyear:'',
|
|
showRes:0,
|
|
showRes:0,
|
|
showC:false,
|
|
showC:false,
|
|
showIssue:0,
|
|
showIssue:0,
|
|
@@ -373,7 +384,7 @@ export default {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.getProjectNum();
|
|
this.getProjectNum();
|
|
this.getProjectNumX();
|
|
this.getProjectNumX();
|
|
- this.getProjectNumZ()
|
|
|
|
|
|
+ this.getProjectNumZ();
|
|
});
|
|
});
|
|
|
|
|
|
},
|
|
},
|
|
@@ -447,7 +458,8 @@ export default {
|
|
this.showC = true
|
|
this.showC = true
|
|
this.showHealth = 1
|
|
this.showHealth = 1
|
|
},
|
|
},
|
|
- onChooseUnit(){
|
|
|
|
|
|
+ onChooseUnit(f){
|
|
|
|
+ this.curCompanyear = f;
|
|
this.showC = true;
|
|
this.showC = true;
|
|
this.showProject = 1;
|
|
this.showProject = 1;
|
|
},
|
|
},
|