|
@@ -104,6 +104,12 @@
|
|
|
}, {
|
|
|
label: "空间",
|
|
|
value: "space"
|
|
|
+ }, {
|
|
|
+ label: "租户",
|
|
|
+ value: "tenant"
|
|
|
+ }, {
|
|
|
+ label: "竖井",
|
|
|
+ value: "shaft"
|
|
|
}],
|
|
|
tabsFalg: false,
|
|
|
active: "",
|
|
@@ -528,6 +534,7 @@
|
|
|
});
|
|
|
} else if (this.value == "space") {
|
|
|
getBussTypes(res => {
|
|
|
+ debugger
|
|
|
this.isLoading = false
|
|
|
// this.allFamily = res.Content;
|
|
|
this.allFamily = [{
|
|
@@ -558,6 +565,20 @@
|
|
|
]
|
|
|
this.familySort();
|
|
|
})
|
|
|
+ } else if (this.value == "tenant") {
|
|
|
+ this.allFamily = [{
|
|
|
+ "code": "Tenant",
|
|
|
+ "name": "租户"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ this.familySort()
|
|
|
+ } else if (this.value == "shaft") {
|
|
|
+ this.allFamily = [{
|
|
|
+ "code": "Shaft",
|
|
|
+ "name": "竖井"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ this.familySort()
|
|
|
} else {
|
|
|
getEqCode().then(res => {
|
|
|
if (res.data.Result == "success") {
|