|
@@ -117,8 +117,8 @@ export default class spaceIndex extends Vue {
|
|
|
activeName = "table";
|
|
|
building = ["all"];
|
|
|
|
|
|
- zoneTypeVal = ["FunctionZone"];
|
|
|
- zoneTypeValue = ["FunctionZone"];
|
|
|
+ zoneTypeVal = ["GeneralZone"];
|
|
|
+ zoneTypeValue = ["GeneralZone"];
|
|
|
// 分页
|
|
|
private paginationList = {
|
|
|
page: 1,
|
|
@@ -130,7 +130,7 @@ export default class spaceIndex extends Vue {
|
|
|
graphOptions = [];
|
|
|
zoneTypeOption = [
|
|
|
{
|
|
|
- value: "FunctionZone",
|
|
|
+ value: "GeneralZone",
|
|
|
label: "功能空间",
|
|
|
},
|
|
|
{
|
|
@@ -435,7 +435,7 @@ export default class spaceIndex extends Vue {
|
|
|
let basicInfos = [],
|
|
|
dictStages = [];
|
|
|
this.all = res[0].content;
|
|
|
- if (this.zoneTypeValue[0] != "FunctionZone") {
|
|
|
+ if (this.zoneTypeValue[0] != "GeneralZone") {
|
|
|
// todo 列表只展示 分区 / 包含的功能空间
|
|
|
const currentZone = this.$refs['cascaderZone'].getCheckedNodes()[0].label
|
|
|
|