|
|
@@ -124,6 +124,9 @@ const dialogTitle = computed(() => (state.isCreate ? "新增" : "编辑"));
|
|
|
const tableConfig: PlusColumn[] = [
|
|
|
{
|
|
|
label: "账户号",
|
|
|
+ tableColumnProps: {
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
prop: "accNo"
|
|
|
},
|
|
|
{
|
|
|
@@ -150,6 +153,9 @@ const tableConfig: PlusColumn[] = [
|
|
|
{
|
|
|
label: "备注",
|
|
|
prop: "remark",
|
|
|
+ tableColumnProps: {
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
hideInSearch: true
|
|
|
},
|
|
|
{
|
|
|
@@ -217,7 +223,9 @@ const columns: PlusColumn[] = [
|
|
|
valueType: "input",
|
|
|
fieldProps: {
|
|
|
type: "textarea",
|
|
|
- rows: 3
|
|
|
+ rows: 3,
|
|
|
+ maxlength: 200,
|
|
|
+ showWordLimit: true
|
|
|
}
|
|
|
}
|
|
|
];
|