|
@@ -57,8 +57,8 @@
|
|
|
</ul>
|
|
|
|
|
|
<a-popover trigger="click" placement="rightBottom" v-model="drawerVisible" >
|
|
|
- <template slot="content">
|
|
|
- <itemTree @getSelectId="getSelectId" :categoryIdS="categoryIdS" :key="new Date().getTime()" :categoryId="categoryId"></itemTree>
|
|
|
+ <template slot="content" >
|
|
|
+ <itemTree @getSelectId="getSelectId" :drawerVisible="drawerVisible" :categoryIdS="categoryIdS" :categoryId="categoryId"></itemTree>
|
|
|
</template>
|
|
|
<div class="bottom-item">
|
|
|
<a-icon type="ellipsis" />
|
|
@@ -128,7 +128,7 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import itemTree from "./leftbar_components/itemTree";
|
|
|
-import { queryByGroup } from "@/api/editer.js";
|
|
|
+import { graphElementGroup} from "@/api/editer.js";
|
|
|
import bus from "@/bus";
|
|
|
import { queryGroup } from "@/api/editer.js";
|
|
|
import { mapState, mapActions } from "vuex";
|
|
@@ -314,10 +314,10 @@ export default {
|
|
|
// 接口请求
|
|
|
this.spinning = true;
|
|
|
const arr = {
|
|
|
- GraphCategoryIds: this.categoryIdS,
|
|
|
+ InfoSystems: this.categoryIdS,
|
|
|
Type: item.type
|
|
|
};
|
|
|
- queryGroup(arr).then(res => {
|
|
|
+ graphElementGroup(arr).then(res => {
|
|
|
this.spinning = false;
|
|
|
this.itemList = res.Data;
|
|
|
});
|