diff --git a/src/views/transfer/index.vue b/src/views/transfer/index.vue index 235d66e..e70cd55 100644 --- a/src/views/transfer/index.vue +++ b/src/views/transfer/index.vue @@ -11,7 +11,6 @@ const fetchData: TableFetchData = ({ pagination, filter }) => { return safeClient(() => client.api.admin.transfer.get({ query: { - ...pagination, ...filter } }) @@ -76,7 +75,7 @@ const columns: TableBaseColumns = [ title: '状态', key: 'status', width: 120, - render: row => { + render: (row: any) => { return h( NTag, { diff --git a/tsconfig.json b/tsconfig.json index 3c34dcb..e529855 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,7 @@ "types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar"], "strict": true, "strictNullChecks": true, + "noImplicitAny": false, "noUnusedLocals": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true,