|
@@ -46,6 +46,11 @@ export default {
|
|
|
default: "1",
|
|
|
type: String
|
|
|
},
|
|
|
+ categoryId: {
|
|
|
+ default: "",
|
|
|
+ type: String
|
|
|
+ },
|
|
|
+
|
|
|
loadName: null,
|
|
|
type: null
|
|
|
},
|
|
@@ -207,7 +212,7 @@ export default {
|
|
|
const data = {
|
|
|
BuildingID: "1",
|
|
|
FloorID: FloorID,
|
|
|
- categoryId: this.$cookie.get("categoryId"),
|
|
|
+ categoryId: this.categoryId ? this.categoryId : this.$cookie.get("categoryId"),
|
|
|
projectId: this.urlMsg.ProjectID
|
|
|
};
|
|
|
return readGroup(data);
|