Commit b6e499ed authored by jingnan's avatar jingnan 👀

自定义组件删除

parent cc861378
/**
* @Description:
* @author gjn
* @date 2024/11/04
*/
<template>
<div class="AddExtTransferDoc">
<dee-as-com
ref="tableCom"
class="list-table"
:lay-config="layConfig"
@selectionChange="selectionChange"
/>
</div>
</template>
<script>
export default {
componentName: '添加归档文件清单',
name: 'AddExtTransferDoc',
components: {},
props: {
basicData: {
type: Object,
default: () => {}
},
componentProp: {
type: Object,
default: () => {}
}
},
data() {
return {
layConfig: { typeName: 'ExtTransferDocLink', layKey: '9f8e3a0e-c021-44ef-b6e7-90e2fc0bc699' }
}
},
computed: {
},
watch: {
},
created() {
},
mounted() {},
methods: {
selectionChange(val) {
this.$emit('input', val)
}
}
}
</script>
<style lang='scss'>
.AddExtTransferDoc{
.list-table{
height: 600px!important;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment