vue3-curd 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/dist/src/api/app/translation/index.d.ts +9 -0
- package/dist/src/api/app/translation/types.d.ts +24 -0
- package/dist/src/api/system/commonDict/data/index.d.ts +8 -0
- package/dist/src/api/system/commonDict/data/types.d.ts +24 -0
- package/dist/src/api/system/dict/data/index.d.ts +8 -0
- package/dist/src/api/system/dict/data/types.d.ts +24 -0
- package/dist/src/api/system/oss/index.d.ts +6 -0
- package/dist/src/api/system/oss/types.d.ts +21 -0
- package/dist/src/components/CURD/composables/useDictData.d.ts +6 -0
- package/dist/src/components/CURD/composables/useFormData.d.ts +6 -0
- package/dist/src/components/CURD/composables/useTableData.d.ts +30 -0
- package/dist/src/components/CURD/constants.d.ts +20 -0
- package/dist/src/components/CURD/curdEdit.d.ts +55 -0
- package/dist/src/components/CURD/curdSearch.d.ts +17 -0
- package/dist/src/components/CURD/curdTable.d.ts +42 -0
- package/dist/src/components/CURD/index.d.ts +274 -0
- package/dist/src/components/CURD/types.d.ts +165 -0
- package/dist/src/components/CURD/utils.d.ts +15 -0
- package/dist/src/components/DictTag/index.d.ts +24 -0
- package/dist/src/components/Editor/index.d.ts +237 -0
- package/dist/src/components/FileUpload/index.d.ts +63 -0
- package/dist/src/components/ImageUpload/index.d.ts +107 -0
- package/dist/src/components/OssImagePreview/index.d.ts +26 -0
- package/dist/src/components/SvgIcon/index.d.ts +41 -0
- package/dist/src/components/TranslateInput/index.d.ts +27 -0
- package/dist/src/components/ossFile/index.d.ts +34 -0
- package/dist/src/directive/common/copyText.d.ts +5 -0
- package/dist/src/directive/curd-perm.d.ts +9 -0
- package/dist/src/index.d.ts +16 -0
- package/dist/src/plugin.d.ts +14 -0
- package/dist/src/plugins/modal.d.ts +20 -0
- package/dist/src/store/modules/dict.d.ts +56 -0
- package/dist/src/store/modules/translation.d.ts +88 -0
- package/dist/src/utils/dict.d.ts +8 -0
- package/dist/src/utils/download.d.ts +1 -0
- package/dist/src/utils/errorCode.d.ts +2 -0
- package/dist/src/utils/http.d.ts +7 -0
- package/dist/src/utils/index.d.ts +23 -0
- package/dist/src/utils/propTypes.d.ts +12 -0
- package/dist/src/utils/ruoyi.d.ts +15 -0
- package/dist/src/utils/translation.d.ts +5 -0
- package/dist/style.css +1 -0
- package/dist/vue3-curd.es.js +3089 -0
- package/dist/vue3-curd.es.js.map +1 -0
- package/dist/vue3-curd.umd.js +2 -0
- package/dist/vue3-curd.umd.js.map +1 -0
- package/package.json +103 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{
|
|
3
|
+
modelValue?: any;
|
|
4
|
+
type?: any;
|
|
5
|
+
disabled?: any;
|
|
6
|
+
placeholder?: any;
|
|
7
|
+
rows?: any;
|
|
8
|
+
showWordLimit?: any;
|
|
9
|
+
maxlength?: any;
|
|
10
|
+
}, {
|
|
11
|
+
getTranslate: () => any;
|
|
12
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (...args: any[]) => void;
|
|
14
|
+
focus: (...args: any[]) => void;
|
|
15
|
+
}, string, PublicProps, Readonly<{
|
|
16
|
+
modelValue?: any;
|
|
17
|
+
type?: any;
|
|
18
|
+
disabled?: any;
|
|
19
|
+
placeholder?: any;
|
|
20
|
+
rows?: any;
|
|
21
|
+
showWordLimit?: any;
|
|
22
|
+
maxlength?: any;
|
|
23
|
+
}> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25
|
+
onFocus?: (...args: any[]) => any;
|
|
26
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { OssVO } from '../../api/system/oss/types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
data: {
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
default: () => OssVO;
|
|
7
|
+
};
|
|
8
|
+
width: {
|
|
9
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
height: {
|
|
13
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
17
|
+
data: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: () => OssVO;
|
|
20
|
+
};
|
|
21
|
+
width: {
|
|
22
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
height: {
|
|
26
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
data: Record<string, any>;
|
|
31
|
+
width: string | number;
|
|
32
|
+
height: string | number;
|
|
33
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Directive } from 'vue';
|
|
2
|
+
type PermChecker = (value: string | string[]) => boolean;
|
|
3
|
+
export declare const setPermissionChecker: (opts: {
|
|
4
|
+
hasPermi?: PermChecker;
|
|
5
|
+
hasRoles?: PermChecker;
|
|
6
|
+
}) => void;
|
|
7
|
+
export declare const hasPermi: Directive;
|
|
8
|
+
export declare const hasRoles: Directive;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { default as Curd } from './components/CURD/index';
|
|
2
|
+
export { default as DictTag } from './components/DictTag/index';
|
|
3
|
+
export { default as SvgIcon } from './components/SvgIcon/index';
|
|
4
|
+
export { default as OssImagePreview } from './components/OssImagePreview/index';
|
|
5
|
+
export { default as OssFile } from './components/ossFile/index';
|
|
6
|
+
export { default as Editor } from './components/Editor/index';
|
|
7
|
+
export { default as TranslateInput } from './components/TranslateInput/index';
|
|
8
|
+
export { default as ImageUpload } from './components/ImageUpload/index';
|
|
9
|
+
export { default as FileUpload } from './components/FileUpload/index';
|
|
10
|
+
export * from './components/CURD/types';
|
|
11
|
+
export { setRequest, setGlobalHeaders, setBaseUrl, getRequest, getGlobalHeaders, getBaseUrl } from './utils/http';
|
|
12
|
+
export { setPermissionChecker } from './directive/curd-perm';
|
|
13
|
+
export { download } from './utils/download';
|
|
14
|
+
export { install } from './plugin';
|
|
15
|
+
export type { Vue3CurdOptions } from './plugin';
|
|
16
|
+
export { default } from './plugin';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { AxiosInstance } from 'axios';
|
|
3
|
+
export interface Vue3CurdOptions {
|
|
4
|
+
request?: AxiosInstance;
|
|
5
|
+
globalHeaders?: () => Record<string, string>;
|
|
6
|
+
baseUrl?: string;
|
|
7
|
+
hasPermi?: (value: string | string[]) => boolean;
|
|
8
|
+
hasRoles?: (value: string | string[]) => boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const install: (app: App, options?: Vue3CurdOptions) => void;
|
|
11
|
+
declare const _default: {
|
|
12
|
+
install: (app: App, options?: Vue3CurdOptions) => void;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { MessageBoxData } from 'element-plus';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
msg(content: any): void;
|
|
4
|
+
msgError(content: any): void;
|
|
5
|
+
msgSuccess(content: any): void;
|
|
6
|
+
msgWarning(content: any): void;
|
|
7
|
+
alert(content: any): void;
|
|
8
|
+
alertError(content: any): void;
|
|
9
|
+
alertSuccess(content: any): void;
|
|
10
|
+
alertWarning(content: any): void;
|
|
11
|
+
notify(content: any): void;
|
|
12
|
+
notifyError(content: any): void;
|
|
13
|
+
notifySuccess(content: any): void;
|
|
14
|
+
notifyWarning(content: any): void;
|
|
15
|
+
confirm(content: any): Promise<MessageBoxData>;
|
|
16
|
+
prompt(content: any, title: any, inputType?: any): Promise<MessageBoxData>;
|
|
17
|
+
loading(content: string): void;
|
|
18
|
+
closeLoading(): void;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { StoreDefinition } from 'pinia';
|
|
2
|
+
export declare const useDictStore: StoreDefinition<"dict", Pick<{
|
|
3
|
+
dict: globalThis.Ref<Map<string, {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
elTagType?: ElTagType;
|
|
7
|
+
elTagClass?: string;
|
|
8
|
+
remark?: string;
|
|
9
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>, Map<string, DictDataOption[]> | (Map<string, {
|
|
10
|
+
label: string;
|
|
11
|
+
value: string;
|
|
12
|
+
elTagType?: ElTagType;
|
|
13
|
+
elTagClass?: string;
|
|
14
|
+
remark?: string;
|
|
15
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>)>;
|
|
16
|
+
getDict: (_key: string) => DictDataOption[] | null;
|
|
17
|
+
setDict: (_key: string, _value: DictDataOption[]) => boolean;
|
|
18
|
+
removeDict: (_key: string) => boolean;
|
|
19
|
+
cleanDict: () => void;
|
|
20
|
+
}, "dict">, Pick<{
|
|
21
|
+
dict: globalThis.Ref<Map<string, {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
elTagType?: ElTagType;
|
|
25
|
+
elTagClass?: string;
|
|
26
|
+
remark?: string;
|
|
27
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>, Map<string, DictDataOption[]> | (Map<string, {
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
elTagType?: ElTagType;
|
|
31
|
+
elTagClass?: string;
|
|
32
|
+
remark?: string;
|
|
33
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>)>;
|
|
34
|
+
getDict: (_key: string) => DictDataOption[] | null;
|
|
35
|
+
setDict: (_key: string, _value: DictDataOption[]) => boolean;
|
|
36
|
+
removeDict: (_key: string) => boolean;
|
|
37
|
+
cleanDict: () => void;
|
|
38
|
+
}, never>, Pick<{
|
|
39
|
+
dict: globalThis.Ref<Map<string, {
|
|
40
|
+
label: string;
|
|
41
|
+
value: string;
|
|
42
|
+
elTagType?: ElTagType;
|
|
43
|
+
elTagClass?: string;
|
|
44
|
+
remark?: string;
|
|
45
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>, Map<string, DictDataOption[]> | (Map<string, {
|
|
46
|
+
label: string;
|
|
47
|
+
value: string;
|
|
48
|
+
elTagType?: ElTagType;
|
|
49
|
+
elTagClass?: string;
|
|
50
|
+
remark?: string;
|
|
51
|
+
}[]> & Omit<Map<string, DictDataOption[]>, keyof Map<any, any>>)>;
|
|
52
|
+
getDict: (_key: string) => DictDataOption[] | null;
|
|
53
|
+
setDict: (_key: string, _value: DictDataOption[]) => boolean;
|
|
54
|
+
removeDict: (_key: string) => boolean;
|
|
55
|
+
cleanDict: () => void;
|
|
56
|
+
}, "getDict" | "setDict" | "removeDict" | "cleanDict">>;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { TranslationVO } from '../../api/app/translation/types';
|
|
2
|
+
import { StoreDefinition } from 'pinia';
|
|
3
|
+
export declare const useTranslationStore: StoreDefinition<"translation", Pick<{
|
|
4
|
+
translation: globalThis.Ref<{
|
|
5
|
+
key: string;
|
|
6
|
+
value: {
|
|
7
|
+
translationId: string | number;
|
|
8
|
+
name: string;
|
|
9
|
+
zhTw: string;
|
|
10
|
+
zhHk: string;
|
|
11
|
+
zhCn: string;
|
|
12
|
+
enUs: string;
|
|
13
|
+
};
|
|
14
|
+
}[], {
|
|
15
|
+
key: string;
|
|
16
|
+
value: TranslationVO;
|
|
17
|
+
}[] | {
|
|
18
|
+
key: string;
|
|
19
|
+
value: {
|
|
20
|
+
translationId: string | number;
|
|
21
|
+
name: string;
|
|
22
|
+
zhTw: string;
|
|
23
|
+
zhHk: string;
|
|
24
|
+
zhCn: string;
|
|
25
|
+
enUs: string;
|
|
26
|
+
};
|
|
27
|
+
}[]>;
|
|
28
|
+
getTranslation: (_key: string) => TranslationVO | null;
|
|
29
|
+
setTranslation: (_key: string, _value: TranslationVO) => void;
|
|
30
|
+
clearTranslation: () => void;
|
|
31
|
+
}, "translation">, Pick<{
|
|
32
|
+
translation: globalThis.Ref<{
|
|
33
|
+
key: string;
|
|
34
|
+
value: {
|
|
35
|
+
translationId: string | number;
|
|
36
|
+
name: string;
|
|
37
|
+
zhTw: string;
|
|
38
|
+
zhHk: string;
|
|
39
|
+
zhCn: string;
|
|
40
|
+
enUs: string;
|
|
41
|
+
};
|
|
42
|
+
}[], {
|
|
43
|
+
key: string;
|
|
44
|
+
value: TranslationVO;
|
|
45
|
+
}[] | {
|
|
46
|
+
key: string;
|
|
47
|
+
value: {
|
|
48
|
+
translationId: string | number;
|
|
49
|
+
name: string;
|
|
50
|
+
zhTw: string;
|
|
51
|
+
zhHk: string;
|
|
52
|
+
zhCn: string;
|
|
53
|
+
enUs: string;
|
|
54
|
+
};
|
|
55
|
+
}[]>;
|
|
56
|
+
getTranslation: (_key: string) => TranslationVO | null;
|
|
57
|
+
setTranslation: (_key: string, _value: TranslationVO) => void;
|
|
58
|
+
clearTranslation: () => void;
|
|
59
|
+
}, never>, Pick<{
|
|
60
|
+
translation: globalThis.Ref<{
|
|
61
|
+
key: string;
|
|
62
|
+
value: {
|
|
63
|
+
translationId: string | number;
|
|
64
|
+
name: string;
|
|
65
|
+
zhTw: string;
|
|
66
|
+
zhHk: string;
|
|
67
|
+
zhCn: string;
|
|
68
|
+
enUs: string;
|
|
69
|
+
};
|
|
70
|
+
}[], {
|
|
71
|
+
key: string;
|
|
72
|
+
value: TranslationVO;
|
|
73
|
+
}[] | {
|
|
74
|
+
key: string;
|
|
75
|
+
value: {
|
|
76
|
+
translationId: string | number;
|
|
77
|
+
name: string;
|
|
78
|
+
zhTw: string;
|
|
79
|
+
zhHk: string;
|
|
80
|
+
zhCn: string;
|
|
81
|
+
enUs: string;
|
|
82
|
+
};
|
|
83
|
+
}[]>;
|
|
84
|
+
getTranslation: (_key: string) => TranslationVO | null;
|
|
85
|
+
setTranslation: (_key: string, _value: TranslationVO) => void;
|
|
86
|
+
clearTranslation: () => void;
|
|
87
|
+
}, "getTranslation" | "setTranslation" | "clearTranslation">>;
|
|
88
|
+
export default useTranslationStore;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const useDict: (...args: string[]) => {
|
|
2
|
+
[key: string]: DictDataOption[];
|
|
3
|
+
};
|
|
4
|
+
export declare const useOneDict: (dictType: string) => Promise<DictDataOption[]>;
|
|
5
|
+
export declare const useCommonDict: (...args: string[]) => {
|
|
6
|
+
[key: string]: DictDataOption[];
|
|
7
|
+
};
|
|
8
|
+
export declare const useOneCommonDict: (dictType: string) => Promise<DictDataOption[]>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function download(url: string, params: any, fileName: string): Promise<void>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AxiosInstance } from 'axios';
|
|
2
|
+
export declare const getRequest: () => AxiosInstance;
|
|
3
|
+
export declare const setRequest: (instance: AxiosInstance) => void;
|
|
4
|
+
export declare const getGlobalHeaders: () => Record<string, string>;
|
|
5
|
+
export declare const setGlobalHeaders: (fn: () => Record<string, string>) => void;
|
|
6
|
+
export declare const getBaseUrl: () => string;
|
|
7
|
+
export declare const setBaseUrl: (url: string) => void;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare const formatDate: (cellValue: string) => string;
|
|
2
|
+
export declare const formatTime: (time: string, option: string) => string;
|
|
3
|
+
export declare const getQueryObject: (url: string) => {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const byteLength: (str: string) => number;
|
|
7
|
+
export declare const cleanArray: (actual: Array<any>) => any[];
|
|
8
|
+
export declare const param: (json: any) => string;
|
|
9
|
+
export declare const param2Obj: (url: string) => any;
|
|
10
|
+
export declare const html2Text: (val: string) => string;
|
|
11
|
+
export declare const objectMerge: (target: any, source: any | any[]) => any;
|
|
12
|
+
export declare const toggleClass: (element: HTMLElement, className: string) => void;
|
|
13
|
+
export declare const getTime: (type: string) => number | Date;
|
|
14
|
+
export declare const debounce: (func: any, wait: number, immediate: boolean) => (...args: any) => any;
|
|
15
|
+
export declare const deepClone: (source: any) => any;
|
|
16
|
+
export declare const uniqueArr: (arr: any) => unknown[];
|
|
17
|
+
export declare const createUniqueString: () => string;
|
|
18
|
+
export declare const hasClass: (ele: HTMLElement, cls: string) => boolean;
|
|
19
|
+
export declare const addClass: (ele: HTMLElement, cls: string) => void;
|
|
20
|
+
export declare const removeClass: (ele: HTMLElement, cls: string) => void;
|
|
21
|
+
export declare const isExternal: (path: string) => boolean;
|
|
22
|
+
export declare const guid: () => string;
|
|
23
|
+
export declare const getMonthAndDay: (dateStr: string) => string;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { default as VueTypes, VueTypeValidableDef, VueTypesInterface } from 'vue-types';
|
|
3
|
+
import { b } from 'node_modules/vue-types/dist/shared/vue-types.d8e57a80.mjs';
|
|
4
|
+
type PropTypes = VueTypesInterface & {
|
|
5
|
+
readonly style: VueTypeValidableDef<CSSProperties>;
|
|
6
|
+
readonly fieldOption: VueTypeValidableDef<Array<FieldOption>>;
|
|
7
|
+
};
|
|
8
|
+
declare const propTypes: PropTypes;
|
|
9
|
+
export default class ProjectTypes extends VueTypes {
|
|
10
|
+
static get style(): VueTypeValidableDef<any, b<any>>;
|
|
11
|
+
}
|
|
12
|
+
export { propTypes };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare function parseTime(time: any, pattern?: string): string;
|
|
2
|
+
export declare const addDateRange: (params: any, dateRange: any[], propName?: string) => any;
|
|
3
|
+
export declare const selectDictLabel: (datas: any, value: number | string) => string;
|
|
4
|
+
export declare const selectDictLabels: (datas: any, value: any, separator: any) => string;
|
|
5
|
+
export declare function sprintf(str: string): string;
|
|
6
|
+
export declare const parseStrEmpty: (str: any) => any;
|
|
7
|
+
export declare const mergeRecursive: (source: any, target: any) => any;
|
|
8
|
+
export declare const handleTree: <T>(data: any[], id?: string, parentId?: string, children?: string) => T[];
|
|
9
|
+
export declare const tansParams: (params: any) => string;
|
|
10
|
+
export declare const getNormalPath: (p: string) => string;
|
|
11
|
+
export declare const blobValidate: (data: any) => boolean;
|
|
12
|
+
declare const _default: {
|
|
13
|
+
handleTree: <T>(data: any[], id?: string, parentId?: string, children?: string) => T[];
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.sub-el-icon[data-v-ed552a8d],.nav-icon[data-v-ed552a8d]{display:inline-block;font-size:15px;margin-right:12px;position:relative}.svg-icon[data-v-ed552a8d]{width:1em;height:1em;position:relative;fill:currentColor;vertical-align:-2px}.el-tag+.el-tag[data-v-9a5060d2]{margin-left:5px;margin-bottom:3px;margin-top:3px}.el-image[data-v-dc163acb]{border-radius:2px}.el-image[data-v-dc163acb] .el-image__inner{transition:all .3s;cursor:pointer}.el-image[data-v-dc163acb] .image-slot{display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#909399;font-size:30px}.image-slot[data-v-dc163acb]{display:flex;justify-content:center;align-items:center;width:110px;height:100px;color:#909399;font-size:30px;border-radius:5px}.el-image[data-v-04035581]{border-radius:4px}.el-image[data-v-04035581] .el-image__inner{transition:all .3s;cursor:pointer}.el-image[data-v-04035581] .el-image__inner:hover{transform:scale(1.2)}.el-image[data-v-04035581] .image-slot{display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#909399;font-size:30px}.paging[data-v-5f05b778]{padding:12px 15px 15px;font-size:14px}.image-preview[data-v-5f05b778]{display:flex;justify-content:center}.el-switch .is-disabled[data-v-5f05b778]{opacity:1}.image-style[data-v-5f05b778]{display:flex;justify-content:center}.tc-text[data-v-5f05b778]{display:flex;text-overflow:ellipsis;line-clamp:2;-webkit-line-clamp:2;overflow:hidden;-webkit-box-orient:vertical}.el-column-tag[data-v-5f05b778]{margin-right:2px}.color-cell[data-v-5f05b778]{display:flex;justify-content:center}.color-cell-item[data-v-5f05b778]{width:24px;height:24px;border-radius:2px}.upload-file-uploader[data-v-027e6121]{margin-bottom:5px}.upload-file-list .el-upload-list__item[data-v-027e6121]{border:1px solid #e4e7ed;line-height:2;margin-bottom:10px;position:relative;padding-left:10px}.upload-file-list .ele-upload-list__item-content[data-v-027e6121]{display:flex;justify-content:space-between;align-items:center;color:inherit}.ele-upload-list__item-content-action .el-link[data-v-027e6121]{margin-right:10px}[data-v-c17cf859] .hide .el-upload--picture-card{display:none}[data-v-c17cf859] .el-upload--picture-card{width:var(--9d14746a);height:var(--9d14746a);line-height:var(--9d14746a)}[data-v-c17cf859] .el-upload-list__item{width:var(--9d14746a);height:var(--9d14746a)}.editor-img-uploader{display:none}.editor,.ql-toolbar{white-space:pre-wrap!important;line-height:normal!important}.quill-img{display:none}.ql-snow .ql-tooltip[data-mode=link]:before{content:"请输入链接地址:"}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"保存";padding-right:0}.ql-snow .ql-tooltip[data-mode=video]:before{content:"请输入视频地址:"}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:"14px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:"10px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:"18px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:"32px"}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:"文本"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{content:"标题1"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{content:"标题2"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{content:"标题3"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{content:"标题4"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{content:"标题5"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{content:"标题6"}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:"标准字体"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:"衬线字体"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:"等宽字体"}.color-picker-tips[data-v-aa73b22b]{margin-left:10px;color:#666}[data-v-aa73b22b] .el-p .el-input__wrapper{width:100%!important}.curdEditDialog .el-dialog__footer{padding-top:0!important;padding-right:12px}.curd-search-card[data-v-225efee8]{margin-bottom:12px!important}.curd-search-card[data-v-225efee8] .el-form-item__label{font-weight:400;font-size:14px;color:var(--el-text-color-regular)}.search[data-v-225efee8]{cursor:pointer;padding:12px 14px 0;border-radius:4px}
|