|
@@ -45,7 +45,7 @@
|
|
@updateState="updateStateSuc"></graphy>
|
|
@updateState="updateStateSuc"></graphy>
|
|
</div>
|
|
</div>
|
|
<div v-show="isMyTab == 2">
|
|
<div v-show="isMyTab == 2">
|
|
- <handsontable-main @lookEqu="lookEqu" ref="handsontable" :zoneCode="activeName" :id="`handsontable${activeName}`"></handsontable-main>
|
|
|
|
|
|
+ <handsontable-main @lookEqu="lookEqu" ref="handsontable" :zoneCode="activeName" :otherType="otherType" :id="`handsontable${activeName}`"></handsontable-main>
|
|
</div>
|
|
</div>
|
|
<div class="infectedTips" v-show="isMyTab==1&&infectedTotal>0">
|
|
<div class="infectedTips" v-show="isMyTab==1&&infectedTotal>0">
|
|
<p>因底图变化而受影响的业务空间{{infectedTotal.toString()}}个<span v-show="buildFloorSelectd.length>1">,本层受影响的业务空间{{infectedCurfloor.toString()}}个</span></p>
|
|
<p>因底图变化而受影响的业务空间{{infectedTotal.toString()}}个<span v-show="buildFloorSelectd.length>1">,本层受影响的业务空间{{infectedCurfloor.toString()}}个</span></p>
|
|
@@ -131,7 +131,8 @@ export default {
|
|
needCalculate: false, // 关系是否需要计算
|
|
needCalculate: false, // 关系是否需要计算
|
|
mutiCount: 0,
|
|
mutiCount: 0,
|
|
infectedTotal: 0,
|
|
infectedTotal: 0,
|
|
- infectedCurfloor: 0
|
|
|
|
|
|
+ infectedCurfloor: 0,
|
|
|
|
+ otherType: ''
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -214,9 +215,9 @@ export default {
|
|
}).filter(item => item);
|
|
}).filter(item => item);
|
|
if (this.childBackParam.zone) {
|
|
if (this.childBackParam.zone) {
|
|
this.activeName = this.childBackParam.zone;
|
|
this.activeName = this.childBackParam.zone;
|
|
-
|
|
|
|
this.buildFloorSelectd = this.childBackParam.buildFloorSelectd;
|
|
this.buildFloorSelectd = this.childBackParam.buildFloorSelectd;
|
|
this.isMyTab = this.childBackParam.isMyTab;
|
|
this.isMyTab = this.childBackParam.isMyTab;
|
|
|
|
+ this.otherType = this.childBackParam.otherType;
|
|
} else if (this.activeName == '0') {
|
|
} else if (this.activeName == '0') {
|
|
this.activeName = 'GeneralZone';
|
|
this.activeName = 'GeneralZone';
|
|
}
|
|
}
|