2023年3月29日 清除验证
This commit is contained in:
parent
10a5d45eef
commit
818b3488fb
|
@ -39,7 +39,7 @@ module.exports = defineConfig({
|
|||
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
'off',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
|
|
|
@ -114,8 +114,8 @@
|
|||
kkzc: '',
|
||||
});
|
||||
const { createMessage } = useMessage();
|
||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 24 } });
|
||||
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 24 } });
|
||||
const confirmLoading = ref<boolean>(false);
|
||||
//表单验证
|
||||
const validatorRules = {
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
"sourceMap": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noUnusedLocals": false,// 检查只声明、未使用的局部变量(只提示不报错)
|
||||
"noUnusedParameters": false,// 检查未使用的函数参数(只提示不报错)
|
||||
"experimentalDecorators": true,
|
||||
"lib": ["dom", "esnext"],
|
||||
"types": ["vite/client", "jest"],
|
||||
|
@ -24,7 +24,7 @@
|
|||
"paths": {
|
||||
"/@/*": ["src/*"],
|
||||
"/#/*": ["types/*"]
|
||||
}
|
||||
},
|
||||
},
|
||||
"include": [
|
||||
"tests/**/*.ts",
|
||||
|
|
Loading…
Reference in New Issue