提交 a248e200 作者: vben

chore: fix type

上级 ed40b333
<template> <template>
<div class="p-2"> <div class="p-2">
<div class="bg-white mb-2 p-4"> <div class="p-4 mb-2 bg-white">
<BasicForm @register="registerForm" /> <BasicForm @register="registerForm" />
</div> </div>
{{ sliderProp.width }} {{ sliderProp.width }}
<div class="bg-white p-2"> <div class="p-2 bg-white">
<List <List
:grid="{ gutter: 5, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: grid }" :grid="{ gutter: 5, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: grid }"
:data-source="data" :data-source="data"
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
pageSize.value = pz; pageSize.value = pz;
fetch(); fetch();
} }
function pageSizeChange(current, size) { function pageSizeChange(_current, size) {
pageSize.value = size; pageSize.value = size;
fetch(); fetch();
} }
......
...@@ -242,7 +242,7 @@ export function useFormEvents({ ...@@ -242,7 +242,7 @@ export function useFormEvents({
const values = await validate(); const values = await validate();
const res = handleFormValues(values); const res = handleFormValues(values);
emit('submit', res); emit('submit', res);
} catch (error) { } catch (error: any) {
throw new Error(error); throw new Error(error);
} }
} }
......
...@@ -265,7 +265,7 @@ ...@@ -265,7 +265,7 @@
result = await beforeEditSubmit({ result = await beforeEditSubmit({
record: pick(record, keys), record: pick(record, keys),
index, index,
key, key: key as string,
value, value,
}); });
} catch (e) { } catch (e) {
......
...@@ -408,7 +408,7 @@ ...@@ -408,7 +408,7 @@
<span class={unref(getBindValues)?.blockNode ? `${prefixCls}__content` : ''}> <span class={unref(getBindValues)?.blockNode ? `${prefixCls}__content` : ''}>
<span>{title.substr(0, searchIdx)}</span> <span>{title.substr(0, searchIdx)}</span>
<span style={highlightStyle}>{searchText}</span> <span style={highlightStyle}>{searchText}</span>
<span>{title.substr(searchIdx + searchText.length)}</span> <span>{title.substr(searchIdx + (searchText as string).length)}</span>
</span> </span>
) : ( ) : (
title title
......
...@@ -51,7 +51,7 @@ export function copyTextToClipboard(input: string, { target = document.body }: O ...@@ -51,7 +51,7 @@ export function copyTextToClipboard(input: string, { target = document.body }: O
let isSuccess = false; let isSuccess = false;
try { try {
isSuccess = document.execCommand('copy'); isSuccess = document.execCommand('copy');
} catch (e) { } catch (e: any) {
throw new Error(e); throw new Error(e);
} }
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
updateColorWeak(colorWeak); updateColorWeak(colorWeak);
updateGrayMode(grayMode); updateGrayMode(grayMode);
createMessage.success(t('layout.setting.resetSuccess')); createMessage.success(t('layout.setting.resetSuccess'));
} catch (error) { } catch (error: any) {
createMessage.error(error); createMessage.error(error);
} }
} }
......
...@@ -36,9 +36,7 @@ export function downloadByBase64(buf: string, filename: string, mime?: string, b ...@@ -36,9 +36,7 @@ export function downloadByBase64(buf: string, filename: string, mime?: string, b
export function downloadByData(data: BlobPart, filename: string, mime?: string, bom?: BlobPart) { export function downloadByData(data: BlobPart, filename: string, mime?: string, bom?: BlobPart) {
const blobData = typeof bom !== 'undefined' ? [bom, data] : [data]; const blobData = typeof bom !== 'undefined' ? [bom, data] : [data];
const blob = new Blob(blobData, { type: mime || 'application/octet-stream' }); const blob = new Blob(blobData, { type: mime || 'application/octet-stream' });
if (typeof window.navigator.msSaveBlob !== 'undefined') {
window.navigator.msSaveBlob(blob, filename);
} else {
const blobURL = window.URL.createObjectURL(blob); const blobURL = window.URL.createObjectURL(blob);
const tempLink = document.createElement('a'); const tempLink = document.createElement('a');
tempLink.style.display = 'none'; tempLink.style.display = 'none';
...@@ -51,7 +49,6 @@ export function downloadByData(data: BlobPart, filename: string, mime?: string, ...@@ -51,7 +49,6 @@ export function downloadByData(data: BlobPart, filename: string, mime?: string,
tempLink.click(); tempLink.click();
document.body.removeChild(tempLink); document.body.removeChild(tempLink);
window.URL.revokeObjectURL(blobURL); window.URL.revokeObjectURL(blobURL);
}
} }
/** /**
......
...@@ -81,6 +81,7 @@ export class VAxios { ...@@ -81,6 +81,7 @@ export class VAxios {
this.axiosInstance.interceptors.request.use((config: AxiosRequestConfig) => { this.axiosInstance.interceptors.request.use((config: AxiosRequestConfig) => {
// If cancel repeat request is turned on, then cancel repeat request is prohibited // If cancel repeat request is turned on, then cancel repeat request is prohibited
const { const {
// @ts-ignore
headers: { ignoreCancelToken }, headers: { ignoreCancelToken },
} = config; } = config;
...@@ -149,6 +150,7 @@ export class VAxios { ...@@ -149,6 +150,7 @@ export class VAxios {
data: formData, data: formData,
headers: { headers: {
'Content-type': ContentTypeEnum.FORM_DATA, 'Content-type': ContentTypeEnum.FORM_DATA,
// @ts-ignore
ignoreCancelToken: true, ignoreCancelToken: true,
}, },
}); });
......
...@@ -35,7 +35,7 @@ export function formatRequestDate(params: Recordable) { ...@@ -35,7 +35,7 @@ export function formatRequestDate(params: Recordable) {
if (value) { if (value) {
try { try {
params[key] = isString(value) ? value.trim() : value; params[key] = isString(value) ? value.trim() : value;
} catch (error) { } catch (error: any) {
throw new Error(error); throw new Error(error);
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论