This commit is contained in:
Nguyen Van Luan/(Nguyen Van Luan)/현장대리인/SK
2025-08-28 11:14:38 +09:00
parent 094d8a03f3
commit 25d30d7926

View File

@ -102,7 +102,7 @@ export default {
this.gridInit(); this.gridInit();
}, },
gridInit() { gridInit() {
const gridHeight = this.$refs.gridParent.offsetHeight; const gridHeight = this.$refs.gridParent.offsetHeight - 37;
const myOptions = { const myOptions = {
columnOptions: { columnOptions: {
@ -113,8 +113,8 @@ export default {
header: { header: {
height: 28, height: 28,
}, },
rowHeight: 38, rowHeight: 37,
minRowHeight: 38, minRowHeight: 37,
selectionUnit: 'row', selectionUnit: 'row',
editingEvent: 'click', editingEvent: 'click',
}; };
@ -441,14 +441,8 @@ export default {
</script> </script>
<style lang="scss" scoped > <style lang="scss" scoped >
::v-deep { ::v-deep {
.tui-grid-layer-state {
top: 40px !important;
}
.tui-grid-cell-content-editor { .tui-grid-cell-content-editor {
position: relative; height: 37px !important;
height: 39px !important;
top: 39px !important;
} }
} }