@ebfe/vant-kit 0.0.10 → 0.0.12
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/FieldDatePicker/FieldDatePicker.vue.d.ts +4 -79
- package/dist/FieldDateRangePicker/FieldDateRangePicker.vue.d.ts +4 -84
- package/dist/FieldTextarea/FieldTextarea.vue.d.ts +14 -0
- package/dist/index.d.ts +6 -0
- package/dist/vant-kit.css +1 -1
- package/dist/vant-kit.es.js +2785 -2750
- package/dist/vant-kit.umd.js +12 -12
- package/package.json +3 -3
|
@@ -1,88 +1,14 @@
|
|
|
1
1
|
import { FieldProps } from 'vant';
|
|
2
2
|
import { TDatePickerConfirmPayload, TDatePickerProps } from '../DatePicker/DatePicker.vue';
|
|
3
|
-
type
|
|
3
|
+
export type TFieldDatePickerProps = TDatePickerProps & {
|
|
4
4
|
fieldProps: Partial<Omit<FieldProps, 'modelValue'>>;
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: any;
|
|
9
|
-
refs: {
|
|
10
|
-
DatePickerRef: ({
|
|
11
|
-
$: import('vue').ComponentInternalInstance;
|
|
12
|
-
$data: {};
|
|
13
|
-
$props: {
|
|
14
|
-
readonly modelValue: string | undefined;
|
|
15
|
-
readonly pickerProps?: Partial<import('vant').DatePickerProps> | undefined;
|
|
16
|
-
readonly showValueFormatter?: ((date?: Date) => string | undefined) | undefined;
|
|
17
|
-
readonly onConfirm?: ((option: TDatePickerConfirmPayload) => any) | undefined;
|
|
18
|
-
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
19
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
20
|
-
$attrs: {
|
|
21
|
-
[x: string]: unknown;
|
|
22
|
-
};
|
|
23
|
-
$refs: {
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
26
|
-
$slots: Readonly<{
|
|
27
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
28
|
-
}>;
|
|
29
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
30
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
31
|
-
$host: Element | null;
|
|
32
|
-
$emit: ((event: "confirm", option: TDatePickerConfirmPayload) => void) & ((event: "update:modelValue", value: string) => void);
|
|
33
|
-
$el: HTMLDivElement;
|
|
34
|
-
$options: import('vue').ComponentOptionsBase<Readonly<TDatePickerProps> & Readonly<{
|
|
35
|
-
onConfirm?: ((option: TDatePickerConfirmPayload) => any) | undefined;
|
|
36
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
37
|
-
}>, {
|
|
38
|
-
setPickerRealtimeDate: (newValue: string | undefined) => void;
|
|
39
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
40
|
-
confirm: (option: TDatePickerConfirmPayload) => any;
|
|
41
|
-
"update:modelValue": (value: string) => any;
|
|
42
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
43
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
44
|
-
created?: (() => void) | (() => void)[];
|
|
45
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
46
|
-
mounted?: (() => void) | (() => void)[];
|
|
47
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
48
|
-
updated?: (() => void) | (() => void)[];
|
|
49
|
-
activated?: (() => void) | (() => void)[];
|
|
50
|
-
deactivated?: (() => void) | (() => void)[];
|
|
51
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
52
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
53
|
-
destroyed?: (() => void) | (() => void)[];
|
|
54
|
-
unmounted?: (() => void) | (() => void)[];
|
|
55
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
56
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
57
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
58
|
-
};
|
|
59
|
-
$forceUpdate: () => void;
|
|
60
|
-
$nextTick: typeof import('vue').nextTick;
|
|
61
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
62
|
-
} & Readonly<{}> & Omit<Readonly<TDatePickerProps> & Readonly<{
|
|
63
|
-
onConfirm?: ((option: TDatePickerConfirmPayload) => any) | undefined;
|
|
64
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
65
|
-
}>, "setPickerRealtimeDate"> & import('vue').ShallowUnwrapRef<{
|
|
66
|
-
setPickerRealtimeDate: (newValue: string | undefined) => void;
|
|
67
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
68
|
-
$slots: Partial<Record<number, (_: any) => any>> & {
|
|
69
|
-
trigger?(_: {
|
|
70
|
-
triggerPopupShow: () => void;
|
|
71
|
-
showValue: string;
|
|
72
|
-
pickerRealtimeOptions: string[];
|
|
73
|
-
}): any;
|
|
74
|
-
};
|
|
75
|
-
}) | null;
|
|
76
|
-
};
|
|
77
|
-
rootEl: HTMLDivElement;
|
|
78
|
-
};
|
|
79
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
80
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<TFieldDatePickerProps, {
|
|
81
7
|
setPickerRealtimeDate: import('vue').ComputedRef<((newValue: string | undefined) => void) | undefined>;
|
|
82
8
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
83
9
|
confirm: (option: TDatePickerConfirmPayload) => any;
|
|
84
10
|
"update:modelValue": (value: string) => any;
|
|
85
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<TFieldDatePickerProps> & Readonly<{
|
|
86
12
|
onConfirm?: ((option: TDatePickerConfirmPayload) => any) | undefined;
|
|
87
13
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
88
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -152,8 +78,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
152
78
|
}): any;
|
|
153
79
|
};
|
|
154
80
|
}) | null;
|
|
155
|
-
}, HTMLDivElement
|
|
156
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
81
|
+
}, HTMLDivElement>, Partial<Record<number, (_: any) => any>>>;
|
|
157
82
|
export default _default;
|
|
158
83
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
159
84
|
new (): {
|
|
@@ -1,93 +1,14 @@
|
|
|
1
1
|
import { FieldProps } from 'vant';
|
|
2
2
|
import { TDateRangePickerConfirmPayload, TDateRangePickerProps } from '../DateRangePicker/DateRangePicker.vue';
|
|
3
|
-
type
|
|
3
|
+
export type TFieldDateRangePickerProps = TDateRangePickerProps & {
|
|
4
4
|
fieldProps: Partial<Omit<FieldProps, 'modelValue'>>;
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: any;
|
|
9
|
-
refs: {
|
|
10
|
-
DateRangePickerRef: ({
|
|
11
|
-
$: import('vue').ComponentInternalInstance;
|
|
12
|
-
$data: {};
|
|
13
|
-
$props: {
|
|
14
|
-
readonly modelValue: string[];
|
|
15
|
-
readonly pickerProps?: Partial<import('vant').DatePickerProps> | undefined;
|
|
16
|
-
readonly startPickerProps?: Partial<import('vant').DatePickerProps> | undefined;
|
|
17
|
-
readonly endPickerProps?: Partial<import('vant').DatePickerProps> | undefined;
|
|
18
|
-
readonly pickerGroupProps?: Partial<import('vant').PickerGroupProps> | undefined;
|
|
19
|
-
readonly showDateRangeDelimiter?: string | undefined;
|
|
20
|
-
readonly showValueFormatter?: ((p: import('../DateRangePicker/DateRangePicker.vue').TDRPickerShowValueFormatterPayload) => string | undefined) | undefined;
|
|
21
|
-
readonly beforeConfirm?: ((newValues: TDateRangePickerProps["modelValue"]) => boolean) | undefined;
|
|
22
|
-
readonly onConfirm?: ((p: TDateRangePickerConfirmPayload) => any) | undefined;
|
|
23
|
-
readonly "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
24
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
25
|
-
$attrs: {
|
|
26
|
-
[x: string]: unknown;
|
|
27
|
-
};
|
|
28
|
-
$refs: {
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
$slots: Readonly<{
|
|
32
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
33
|
-
}>;
|
|
34
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
35
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
36
|
-
$host: Element | null;
|
|
37
|
-
$emit: ((event: "confirm", p: TDateRangePickerConfirmPayload) => void) & ((event: "update:modelValue", value: string[]) => void);
|
|
38
|
-
$el: HTMLDivElement;
|
|
39
|
-
$options: import('vue').ComponentOptionsBase<Readonly<TDateRangePickerProps> & Readonly<{
|
|
40
|
-
onConfirm?: ((p: TDateRangePickerConfirmPayload) => any) | undefined;
|
|
41
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
42
|
-
}>, {
|
|
43
|
-
setPickerRealtimeDate(p: import('../DateRangePicker/DateRangePicker.vue').TSetDRPickerRealtimeDatePayload): void;
|
|
44
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
45
|
-
confirm: (p: TDateRangePickerConfirmPayload) => any;
|
|
46
|
-
"update:modelValue": (value: string[]) => any;
|
|
47
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
48
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
49
|
-
created?: (() => void) | (() => void)[];
|
|
50
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
51
|
-
mounted?: (() => void) | (() => void)[];
|
|
52
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
53
|
-
updated?: (() => void) | (() => void)[];
|
|
54
|
-
activated?: (() => void) | (() => void)[];
|
|
55
|
-
deactivated?: (() => void) | (() => void)[];
|
|
56
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
57
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
58
|
-
destroyed?: (() => void) | (() => void)[];
|
|
59
|
-
unmounted?: (() => void) | (() => void)[];
|
|
60
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
61
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
62
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
63
|
-
};
|
|
64
|
-
$forceUpdate: () => void;
|
|
65
|
-
$nextTick: typeof import('vue').nextTick;
|
|
66
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
67
|
-
} & Readonly<{}> & Omit<Readonly<TDateRangePickerProps> & Readonly<{
|
|
68
|
-
onConfirm?: ((p: TDateRangePickerConfirmPayload) => any) | undefined;
|
|
69
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
70
|
-
}>, "setPickerRealtimeDate"> & import('vue').ShallowUnwrapRef<{
|
|
71
|
-
setPickerRealtimeDate(p: import('../DateRangePicker/DateRangePicker.vue').TSetDRPickerRealtimeDatePayload): void;
|
|
72
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
73
|
-
$slots: Partial<Record<number, (_: any) => any>> & Partial<Record<`${number}-start`, (_: any) => any>> & Partial<Record<`${number}-end`, (_: any) => any>> & {
|
|
74
|
-
trigger?(_: {
|
|
75
|
-
showValue: string;
|
|
76
|
-
triggerPopupShow: () => void;
|
|
77
|
-
pickerRealtimeOptions: string[][];
|
|
78
|
-
}): any;
|
|
79
|
-
};
|
|
80
|
-
}) | null;
|
|
81
|
-
};
|
|
82
|
-
rootEl: HTMLDivElement;
|
|
83
|
-
};
|
|
84
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
85
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<TFieldDateRangePickerProps, {
|
|
86
7
|
setPickerRealtimeDate: import('vue').ComputedRef<((p: import('../DateRangePicker/DateRangePicker.vue').TSetDRPickerRealtimeDatePayload) => void) | undefined>;
|
|
87
8
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
88
9
|
confirm: (p: TDateRangePickerConfirmPayload) => any;
|
|
89
10
|
"update:modelValue": (value: string[]) => any;
|
|
90
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<TFieldDateRangePickerProps> & Readonly<{
|
|
91
12
|
onConfirm?: ((p: TDateRangePickerConfirmPayload) => any) | undefined;
|
|
92
13
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
93
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -162,8 +83,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
162
83
|
}): any;
|
|
163
84
|
};
|
|
164
85
|
}) | null;
|
|
165
|
-
}, HTMLDivElement
|
|
166
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
86
|
+
}, HTMLDivElement>, Partial<Record<number, (_: any) => any>>>;
|
|
167
87
|
export default _default;
|
|
168
88
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
169
89
|
new (): {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FieldProps } from 'vant';
|
|
2
|
+
export type TFieldTextareaProps = {
|
|
3
|
+
fieldProps: Partial<Omit<FieldProps, 'modelValue'>>;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
modelValue?: string;
|
|
7
|
+
} & TFieldTextareaProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: string) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
10
|
+
modelValue?: string;
|
|
11
|
+
} & TFieldTextareaProps> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -27,9 +27,15 @@ export type * from './FieldMaskTxt/FieldMaskTxt.vue';
|
|
|
27
27
|
export { default as FieldSwitchBtn } from './FieldSwitchBtn/FieldSwitchBtn.vue';
|
|
28
28
|
export type * from './FieldSwitchBtn/FieldSwitchBtn.vue';
|
|
29
29
|
export { default as FieldSinglePicker } from './FieldSinglePicker/FieldSinglePicker.vue';
|
|
30
|
+
export type * from './FieldSinglePicker/FieldSinglePicker.vue';
|
|
30
31
|
export { default as FieldMultiPicker } from './FieldMultiPicker/FieldMultiPicker.vue';
|
|
32
|
+
export type * from './FieldMultiPicker/FieldMultiPicker.vue';
|
|
31
33
|
export { default as FieldDatePicker } from './FieldDatePicker/FieldDatePicker.vue';
|
|
34
|
+
export type * from './FieldDatePicker/FieldDatePicker.vue';
|
|
32
35
|
export { default as FieldDateRangePicker } from './FieldDateRangePicker/FieldDateRangePicker.vue';
|
|
36
|
+
export type * from './FieldDateRangePicker/FieldDateRangePicker.vue';
|
|
37
|
+
export { default as FieldTextarea } from './FieldTextarea/FieldTextarea.vue';
|
|
38
|
+
export type * from './FieldTextarea/FieldTextarea.vue';
|
|
33
39
|
/**
|
|
34
40
|
* 业务组件
|
|
35
41
|
*/
|
package/dist/vant-kit.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.van-popup.van-toast{z-index:999999!important}.coloring-avatar-wrapper[data-v-daeab517]{box-sizing:border-box;width:var(--01db2b7c);height:var(--01db2b7c);overflow:hidden;display:flex;justify-content:center;align-items:center;background:var(--cc225d5a);border-radius:50%;border:.88px solid;border-image:linear-gradient(180deg,#fff,#fff0)}.coloring-avatar-wrapper .sub-name[data-v-daeab517]{color:#fff;font-size:var(--38beb273)}.default-trigger-btn[data-v-a0fe5e36]{width:32px;height:15px;box-sizing:border-box;cursor:pointer;display:flex;justify-content:center;align-items:center;border:.5px solid rgba(0,0,0,.45);border-radius:112px;font-size:10px;color:#333}[data-v-
|
|
1
|
+
.van-popup.van-toast{z-index:999999!important}.coloring-avatar-wrapper[data-v-daeab517]{box-sizing:border-box;width:var(--01db2b7c);height:var(--01db2b7c);overflow:hidden;display:flex;justify-content:center;align-items:center;background:var(--cc225d5a);border-radius:50%;border:.88px solid;border-image:linear-gradient(180deg,#fff,#fff0)}.coloring-avatar-wrapper .sub-name[data-v-daeab517]{color:#fff;font-size:var(--38beb273)}.default-trigger-btn[data-v-a0fe5e36]{width:32px;height:15px;box-sizing:border-box;cursor:pointer;display:flex;justify-content:center;align-items:center;border:.5px solid rgba(0,0,0,.45);border-radius:112px;font-size:10px;color:#333}[data-v-92a1a6f6] .van-search,.multi-picker-header[data-v-c62a92ff] .van-search{flex:1;padding-left:0;padding-right:0}.multi-picker-main[data-v-c62a92ff]{min-height:200px;max-height:60vh;overflow:hidden;display:flex;flex-direction:column}.multi-picker-main .multi-picker-tip[data-v-c62a92ff]{padding:10px 16px;text-align:center;font-size:13px;color:#666}.multi-picker-main .multi-picker-cell-group[data-v-c62a92ff]{overflow-y:auto}.field-mask-txt-wrapper[data-v-c38b4355]{width:100%;background-color:var(--van-cell-background)}.field-mask-txt-show-content[data-v-c38b4355]{width:100%;display:flex;align-items:center}.field-mask-txt-show-content .view-trigger[data-v-c38b4355]{color:unset}.hidden[data-v-c38b4355]{display:none}.field-switch-btn-wrapper[data-v-12b4a20e]{width:100%;background-color:var(--van-cell-background)}.field-switch-btn-show-content[data-v-12b4a20e]{width:100%;display:flex}.field-switch-btn-show-content .field-switch-btns-container[data-v-12b4a20e]{flex:1;display:flex;justify-content:flex-end;align-items:center;gap:8px}.field-switch-btn-show-content .field-switch-btn[data-v-12b4a20e]{padding:1px 12px;display:flex;justify-content:center;align-items:center;box-sizing:border-box;border:1px solid var(--van-button-primary-background);border-radius:4px;color:var(--van-button-primary-background);background:#fff;font-size:14px;cursor:pointer}.field-switch-btn-show-content .field-switch-btn-selected[data-v-12b4a20e]{color:#fff;background:var(--van-button-primary-background)}.field-switch-btn-show-content .field-switch-btn-disabled[data-v-12b4a20e]{color:#999;border-color:#9993;background:#9993;cursor:not-allowed}.hidden[data-v-12b4a20e],.hidden[data-v-a5dd858a],.hidden[data-v-65a4a515],.hidden[data-v-886c6741],.hidden[data-v-69e4a9e7]{display:none}[data-v-6ec0e192] .van-field__label--top{margin-bottom:12px}[data-v-6ec0e192] .van-field__value{background-color:#f8f8f8;border-radius:6px;padding:6px 16px}.mask-txt-wrapper[data-v-e7353b20]{display:flex;align-items:center;gap:8px}.slide_model[data-v-594c23f3]{width:100%;height:100vh;z-index:999;position:fixed;left:0;top:0;background:#0006;display:flex;align-items:center;justify-content:center}.slide_wrapper[data-v-594c23f3]{float:left;z-index:1;position:relative;background-color:#fff;width:335px;padding-top:20px}.canvas_img[data-v-594c23f3]{width:var(--b6aa8880);min-height:150px;position:relative;display:flex;align-items:center;justify-content:center;margin:0 0 20px 20px}.canvas_img img[src=""][data-v-594c23f3],.canvas_img img[data-v-594c23f3]:not([src]){visibility:hidden}.big-img[data-v-594c23f3]{width:100%;height:180px}.slider-img[data-v-594c23f3]{width:55px;height:180px;position:absolute;top:0;left:var(--d7a357ba);z-index:2}.canvas_slide[data-v-594c23f3]{width:295px;height:45px;background:#eee;text-align:center;line-height:40px;margin:0 auto;position:relative;font-size:13px}.canvas_kus[data-v-594c23f3]{width:48px;height:45px;background-color:#fff;font-size:18px;font-weight:700;position:absolute;left:var(--d7a357ba);top:0;border:1px solid #ddd;color:#fff;box-shadow:0 0 10px #0000004d;user-select:none;-webkit-user-select:none;cursor:grab;touch-action:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.canvas_kus .slide-icon[data-v-594c23f3]{width:20px;height:20px;margin-top:10px}.canvas_kus[data-v-594c23f3]:active{cursor:grabbing}.canvas_guil[data-v-594c23f3]{width:100%;border-top:1px solid #f4f4f4;height:50px;display:flex;align-items:center;float:left;font-size:15px;color:#666}.canvas_guil .footer-icon[data-v-594c23f3]{width:25px;height:25px;margin-left:15px}
|