diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 20912f89..07959b9c 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -54,6 +54,7 @@ clearable :placeholder="`请输入${column.label}`" @change="inputchange($event, column)" + @keyup.enter="handleInput($event, column)" /> , + required: false, + default: false, + }, }); /** 勾选数据统计 */ const selectCount = ref([]); @@ -702,6 +708,11 @@ const handleRefresh = () => { } }; +/** 回车键执行 */ +const handleInput = () => { + props.initFn && props.initFn(); +}; + defineExpose({ handleCheckSelect, handleClearSelect }); diff --git a/src/views/distribution/signfor/distributionSignfortreat.vue b/src/views/distribution/signfor/distributionSignfortreat.vue index d69b9f5d..4a1a6d72 100644 --- a/src/views/distribution/signfor/distributionSignfortreat.vue +++ b/src/views/distribution/signfor/distributionSignfortreat.vue @@ -1,112 +1,74 @@ -