fix: 取消保存后自动排序
parent
5f2884010f
commit
2d14c42c9c
|
|
@ -65,7 +65,7 @@
|
||||||
"editor.formatOnSave": false,
|
"editor.formatOnSave": false,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll": "explicit",
|
"source.fixAll": "explicit",
|
||||||
"source.organizeImports": "never"
|
"source.organizeImports": false
|
||||||
},
|
},
|
||||||
"eslint.rules.customizations": [
|
"eslint.rules.customizations": [
|
||||||
{ "rule": "style/*", "severity": "off" },
|
{ "rule": "style/*", "severity": "off" },
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
import type { ButtonProps as AntdButtonProps } from '@/components/Button'
|
|
||||||
import type { TableActionType } from '@/components/Table/src/types/table'
|
|
||||||
import type { NamePath, RuleObject } from 'ant-design-vue/lib/form/interface'
|
import type { NamePath, RuleObject } from 'ant-design-vue/lib/form/interface'
|
||||||
import type { RowProps } from 'ant-design-vue/lib/grid/Row'
|
|
||||||
import type { CSSProperties, VNode } from 'vue'
|
import type { CSSProperties, VNode } from 'vue'
|
||||||
|
import type { RowProps } from 'ant-design-vue/lib/grid/Row'
|
||||||
import type { FormItem } from './formItem'
|
import type { FormItem } from './formItem'
|
||||||
import type { ColEx, ComponentType } from './index'
|
import type { ColEx, ComponentType } from './index'
|
||||||
|
import type { ButtonProps as AntdButtonProps } from '@/components/Button'
|
||||||
|
import type { TableActionType } from '@/components/Table/src/types/table'
|
||||||
|
|
||||||
export type FieldMapToTime = [string, [string, string], (string | [string, string])?][]
|
export type FieldMapToTime = [string, [string, string], (string | [string, string])?][]
|
||||||
|
|
||||||
|
|
@ -267,7 +267,7 @@ export interface HelpComponentProps {
|
||||||
|
|
||||||
export interface InputAttribute {
|
export interface InputAttribute {
|
||||||
// 输入框默认输入的最大长度
|
// 输入框默认输入的最大长度
|
||||||
maxlength?: number | string,
|
maxlength?: number
|
||||||
// 是否显示输入的最大长度
|
// 是否显示输入的最大长度
|
||||||
showCount?: boolean
|
showCount?: boolean
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue