Commit 9f2c6c06 authored by 姬鋆屾's avatar 姬鋆屾

tui

parent d2111614
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
:row-class-name="tableRowClassName" :row-class-name="tableRowClassName"
:empty-text="emptytxt ? emptytxt : emptyText" :empty-text="emptytxt ? emptytxt : emptyText"
border border
:height="height"
style="width: 100%" style="width: 100%"
> >
<template v-for="column in columns"> <template v-for="column in columns">
...@@ -113,6 +114,10 @@ export default { ...@@ -113,6 +114,10 @@ export default {
required: false, required: false,
default: () => [], default: () => [],
}, },
height: {
type: String,
required: false,
},
}, },
computed: { computed: {
emptyText() { emptyText() {
......
...@@ -200,6 +200,7 @@ ...@@ -200,6 +200,7 @@
:handleSelectableMethod="config.methods.handleSelectableMethod" :handleSelectableMethod="config.methods.handleSelectableMethod"
:handleSelectionChange="config.methods.handleSelectionChange" :handleSelectionChange="config.methods.handleSelectionChange"
:handleRowClick="config.methods.handleRowClick" :handleRowClick="config.methods.handleRowClick"
:height="config.height"
:handleCellClick="config.methods.handleCellClick" :handleCellClick="config.methods.handleCellClick"
/> />
......
...@@ -393,6 +393,7 @@ export default { ...@@ -393,6 +393,7 @@ export default {
config: { config: {
showType: "tableSelect", showType: "tableSelect",
isshowTabPane: true, isshowTabPane: true,
height: "680px",
search: [ search: [
{ {
name: "salaId", name: "salaId",
......
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