浏览代码

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-editer into develop

YaolongHan 4 年之前
父节点
当前提交
130ea730b7

+ 3 - 3
package.json

@@ -9,10 +9,10 @@
   },
   "dependencies": {
     "@saga-web/base": "2.1.22",
-    "@saga-web/big": "1.0.59",
+    "@saga-web/big": "1.0.60",
     "@saga-web/draw": "2.1.100",
-    "@saga-web/feng-map": "1.0.15",
-    "@saga-web/graph": "2.1.96",
+    "@saga-web/feng-map": "1.0.16",
+    "@saga-web/graph": "2.1.97",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",
     "element-ui": "^2.13.2",

+ 4 - 2
src/components/baseEditer.vue

@@ -330,13 +330,15 @@ export default {
       });
       bus.$on("saveMsgItem", () => {
         const Elements = this.scene.saveMsgItem();
+        const Seq = Number(this.urlMsg.seq);
         const data = {
           Elements,
           Name: this.appName, // 名称
-          categoryId: this.urlMsg.categoryId,
+          CategoryId: this.urlMsg.categoryId,
           ProjectID: this.urlMsg.projectId, // 项目ID
           BuildingID: this.urlMsg.BuildingID, // 建筑ID
-          FloorID: this.urlMsg.FloorID // 楼层id
+          FloorID: this.urlMsg.FloorID, // 楼层id
+          Seq // 楼层id
         };
         Message({
           message: "保存中,切勿关闭窗口!",

+ 1 - 1
src/components/edit/attr_select.vue

@@ -480,7 +480,7 @@ export default {
   watch: {
     focusItemList: function(newval) {
       const Item = newval.itemList[0];
-      this.getmajorId = Item.data.Properties.GraphCategoryId;
+      this.getmajorId = Item.data.Properties.InfoSystemId;
       if (Item.data && Item.data.SubType) {
         this.SubType = Item.data.SubType;
       }else{

+ 3 - 1
src/components/edit/edit-dialog.vue

@@ -414,7 +414,9 @@
           }
           this.getQuerySmsxt();
           //如果有专业就带过来
-          this.getQuerySmsxtBy(this.majorId)
+          if(this.majorId){
+            this.getQuerySmsxtBy(this.majorId)
+          }
           this.getPlazaFloor();
 
         }

+ 41 - 13
src/components/edit/leftbar_components/itemTree.vue

@@ -2,19 +2,26 @@
   <div class="treeList">
     <div class="tree-body">
       <a-spin :spinning="spinning">
-      <a-tree
-        v-model="checkedKeys"
-        show-checkbox
-        checkable
-        :expanded-keys="expandedKeys"
-        :auto-expand-parent="autoExpandParent"
-        :selected-keys="selectedKeys"
-        :tree-data="treeData"
-        node-key="id"
-        @expand="onExpand"
-        @select="onSelect"
-        @check="onCheck"
-      />
+        <Tree
+                :multiple="true"
+                :notNull="true"
+                :returnParentNode="false"
+                :data="treeData"
+                @change="onChange"
+        />
+<!--      <a-tree-->
+<!--        v-model="checkedKeys"-->
+<!--        show-checkbox-->
+<!--        checkable-->
+<!--        :expanded-keys="expandedKeys"-->
+<!--        :auto-expand-parent="autoExpandParent"-->
+<!--        :selected-keys="selectedKeys"-->
+<!--        :tree-data="treeData"-->
+<!--        node-key="id"-->
+<!--        @expand="onExpand"-->
+<!--        @select="onSelect"-->
+<!--        @check="onCheck"-->
+<!--      />-->
       </a-spin>
     </div>
 
@@ -70,6 +77,10 @@ export default {
       console.log("onSelect", info);
       this.selectedKeys = selectedKeys;
     },
+      onChange(id){
+          console.log(id);
+          this.checkedKeys = id.checkedIds;
+      },
     queryByGroup() {
       this.spinning = true;
       const data = {
@@ -88,23 +99,29 @@ export default {
           const children = this.mapTree(item.Category);
           newTree.push({
             title: item.Name,
+            name: item.Name,
             id: item.Id,
             key:item.Id,
+            checked: 'uncheck',
             children
           });
         } else {
           newTree.push({
             title: item.Name,
+            name: item.Name,
             id: item.Id,
             key:item.Id,
+            checked: 'uncheck',
             children: []
           });
         }
       });
       newTree.push({
         title: '其他分组',
+        name: '其他分组',
         id: '#',
         key:'#',
+          checked: 'uncheck',
         children: []
       })
       return newTree;
@@ -113,9 +130,20 @@ export default {
     getSelectId(data){
       if(data == 'cancel'){
         this.checkedKeys = this.categoryIdS;
+          this.treeData.map(item=>{
+              if(this.categoryIdS.indexOf(item.id)>-1){
+                  item.checked = 'checked'
+              }else{
+                  item.checked = 'uncheck'
+
+              }
+          })
       }else if(data == 'rest'){
         // this.checkedKeys = [this.categoryId];
         this.checkedKeys = [];
+          this.treeData.map(item=>{
+              item.checked = 'uncheck'
+          })
       }else{
         this.checkedKeys =data;
       }