|
|
@ -15,6 +15,7 @@
|
|
|
|
node-key="id"
|
|
|
|
node-key="id"
|
|
|
|
default-expand-all
|
|
|
|
default-expand-all
|
|
|
|
:default-checked-keys="checkedKeys"
|
|
|
|
:default-checked-keys="checkedKeys"
|
|
|
|
|
|
|
|
class="el-tree"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<div slot="footer" style="text-align: center">
|
|
|
|
<div slot="footer" style="text-align: center">
|
|
|
|
<el-button type="primary" plain @click="saveTreeData">保存</el-button>
|
|
|
|
<el-button type="primary" plain @click="saveTreeData">保存</el-button>
|
|
|
@ -83,3 +84,9 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
/deep/.el-dialog__body {
|
|
|
|
|
|
|
|
height: 400px;
|
|
|
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|