Skip to content

Commit 1ac4690

Browse files
committed
fix(commontable): fix commontable
1 parent 0c67eaa commit 1ac4690

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/form/step/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
<script setup lang="ts">
143143
import { ref, computed } from 'vue';
144144
import { useRouter } from 'vue-router';
145+
import { ValidateResultContext } from 'tdesign-vue-next';
145146
import Card from '@/components/card/index.vue';
146147
147148
import {
@@ -172,7 +173,7 @@ const amount = computed(() => {
172173
return '--';
173174
});
174175
175-
const onSubmit = (result, val: number) => {
176+
const onSubmit = (result: ValidateResultContext<FormData>, val: number) => {
176177
if (result.validateResult === true) {
177178
activeForm.value = val;
178179
}

src/pages/list/components/CommonTable.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ const COLUMNS = [
123123
fixed: 'left',
124124
minWidth: '300',
125125
align: 'left',
126-
ellipsis: true,
127126
colKey: 'name',
128127
},
129128
{ title: '合同状态', colKey: 'status', width: 200, cell: { col: 'status' } },

0 commit comments

Comments
 (0)