k94314517
2023-08-11 d52b2bdc62a5722a96d3999a9ed96640f3945f91
platform_web/src/components/system/menu/OperaMenuWindow.vue
@@ -73,7 +73,6 @@
     * @type: 0平台 1、企业 2、h5
     */
    open (title, target, parent, type) {
      debugger
      this.title = title
      this.visible = true
      // 新建,menu为空时表示新建菜单
@@ -81,10 +80,10 @@
        this.excludeMenuId = null
        this.$nextTick(() => {
          this.$refs.form.resetFields()
          this.form.type = type
          this.form.id = null
          this.form.parentId = parent == null ? null : parent.id
          this.parentName = parent == null ? null : parent.name
          this.form.type = type
        })
        return
      }
@@ -94,6 +93,7 @@
        for (const key in this.form) {
          this.form[key] = target[key]
        }
        this.form.type = type
      })
    }
  },