mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: fix some Numeric type
This commit is contained in:
parent
a541090f3a
commit
26cbffe6c1
@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import VanDatePicker from '..';
|
import VanDatePicker from '..';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '../../../docs/site/use-translate';
|
import { useTranslate } from '../../../docs/site';
|
||||||
import type { PickerOption } from '../../picker';
|
import type { PickerOption } from '../../picker';
|
||||||
import { DatePickerColumnType } from '../DatePicker';
|
import { DatePickerColumnType } from '../DatePicker';
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ import VanPicker, { PickerConfirmEventParams } from '../../picker';
|
|||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '../../../docs/site';
|
import { useTranslate } from '../../../docs/site';
|
||||||
import { basicColumns } from '../../picker/demo/data';
|
import { basicColumns } from '../../picker/demo/data';
|
||||||
|
import type { Numeric } from '../../utils';
|
||||||
|
|
||||||
const t = useTranslate({
|
const t = useTranslate({
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
@ -19,7 +20,7 @@ const t = useTranslate({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const result = ref<string | number>('');
|
const result = ref<Numeric>('');
|
||||||
const showPicker = ref(false);
|
const showPicker = ref(false);
|
||||||
|
|
||||||
const onConfirm = ({ selectedOptions }: PickerConfirmEventParams) => {
|
const onConfirm = ({ selectedOptions }: PickerConfirmEventParams) => {
|
||||||
|
@ -20,6 +20,7 @@ import {
|
|||||||
createNamespace,
|
createNamespace,
|
||||||
HAPTICS_FEEDBACK,
|
HAPTICS_FEEDBACK,
|
||||||
BORDER_UNSET_TOP_BOTTOM,
|
BORDER_UNSET_TOP_BOTTOM,
|
||||||
|
type Numeric,
|
||||||
} from '../utils';
|
} from '../utils';
|
||||||
import {
|
import {
|
||||||
isOptionExist,
|
isOptionExist,
|
||||||
@ -64,7 +65,7 @@ export const pickerSharedProps = {
|
|||||||
|
|
||||||
const pickerProps = extend({}, pickerSharedProps, {
|
const pickerProps = extend({}, pickerSharedProps, {
|
||||||
columns: makeArrayProp<PickerOption | PickerColumn>(),
|
columns: makeArrayProp<PickerOption | PickerColumn>(),
|
||||||
modelValue: makeArrayProp<number | string>(),
|
modelValue: makeArrayProp<Numeric>(),
|
||||||
toolbarPosition: makeStringProp<PickerToolbarPosition>('top'),
|
toolbarPosition: makeStringProp<PickerToolbarPosition>('top'),
|
||||||
columnsFieldNames: Object as PropType<PickerFieldNames>,
|
columnsFieldNames: Object as PropType<PickerFieldNames>,
|
||||||
});
|
});
|
||||||
@ -112,7 +113,7 @@ export default defineComponent({
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
const setValue = (index: number, value: string | number) => {
|
const setValue = (index: number, value: Numeric) => {
|
||||||
if (selectedValues.value[index] !== value) {
|
if (selectedValues.value[index] !== value) {
|
||||||
const newValues = selectedValues.value.slice(0);
|
const newValues = selectedValues.value.slice(0);
|
||||||
newValues[index] = value;
|
newValues[index] = value;
|
||||||
@ -120,7 +121,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onChange = (value: number | string, columnIndex: number) => {
|
const onChange = (value: Numeric, columnIndex: number) => {
|
||||||
setValue(columnIndex, value);
|
setValue(columnIndex, value);
|
||||||
|
|
||||||
if (columnsType.value === 'cascade') {
|
if (columnsType.value === 'cascade') {
|
||||||
@ -216,7 +217,7 @@ export default defineComponent({
|
|||||||
optionHeight={optionHeight.value}
|
optionHeight={optionHeight.value}
|
||||||
swipeDuration={props.swipeDuration}
|
swipeDuration={props.swipeDuration}
|
||||||
visibleOptionNum={props.visibleOptionNum}
|
visibleOptionNum={props.visibleOptionNum}
|
||||||
onChange={(value: number | string) => onChange(value, columnIndex)}
|
onChange={(value: Numeric) => onChange(value, columnIndex)}
|
||||||
/>
|
/>
|
||||||
));
|
));
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@ import {
|
|||||||
preventDefault,
|
preventDefault,
|
||||||
createNamespace,
|
createNamespace,
|
||||||
makeRequiredProp,
|
makeRequiredProp,
|
||||||
|
type Numeric,
|
||||||
} from '../utils';
|
} from '../utils';
|
||||||
import { getElementTranslateY, findIndexOfEnabledOption } from './utils';
|
import { getElementTranslateY, findIndexOfEnabledOption } from './utils';
|
||||||
|
|
||||||
@ -208,7 +209,7 @@ export default defineComponent({
|
|||||||
return props.options.map((option, index) => {
|
return props.options.map((option, index) => {
|
||||||
const text = option[props.fields.text];
|
const text = option[props.fields.text];
|
||||||
const { disabled } = option;
|
const { disabled } = option;
|
||||||
const value: string | number = option[props.fields.value];
|
const value: Numeric = option[props.fields.value];
|
||||||
const data = {
|
const data = {
|
||||||
role: 'button',
|
role: 'button',
|
||||||
style: optionStyle,
|
style: optionStyle,
|
||||||
|
@ -4,7 +4,7 @@ import VanPicker from '..';
|
|||||||
import VanField from '../../field';
|
import VanField from '../../field';
|
||||||
import VanPopup from '../../popup';
|
import VanPopup from '../../popup';
|
||||||
import { basicColumns } from './data';
|
import { basicColumns } from './data';
|
||||||
import { useTranslate } from '../../../docs/site/use-translate';
|
import { useTranslate } from '../../../docs/site';
|
||||||
import type { PickerConfirmEventParams } from '../types';
|
import type { PickerConfirmEventParams } from '../types';
|
||||||
|
|
||||||
const t = useTranslate({
|
const t = useTranslate({
|
||||||
@ -33,7 +33,7 @@ const onCancel = () => {
|
|||||||
};
|
};
|
||||||
const onConfirm = ({ selectedOptions }: PickerConfirmEventParams) => {
|
const onConfirm = ({ selectedOptions }: PickerConfirmEventParams) => {
|
||||||
showPicker.value = false;
|
showPicker.value = false;
|
||||||
fieldValue.value = selectedOptions[0].text as string;
|
fieldValue.value = selectedOptions[0]!.text as string;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ export type PickerColumnProvide = {
|
|||||||
export type PickerInstance = ComponentPublicInstance<PickerProps, PickerExpose>;
|
export type PickerInstance = ComponentPublicInstance<PickerProps, PickerExpose>;
|
||||||
|
|
||||||
export type PickerConfirmEventParams = {
|
export type PickerConfirmEventParams = {
|
||||||
selectedValues: Array<number | string>;
|
selectedValues: Numeric[];
|
||||||
selectedOptions: Array<PickerOption | undefined>;
|
selectedOptions: Array<PickerOption | undefined>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { isDef, clamp, extend } from '../utils';
|
import { isDef, clamp, extend, type Numeric } from '../utils';
|
||||||
import type { Ref } from 'vue';
|
import type { Ref } from 'vue';
|
||||||
import type { PickerOption, PickerColumn, PickerFieldNames } from './types';
|
import type { PickerOption, PickerColumn, PickerFieldNames } from './types';
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ export function findIndexOfEnabledOption(
|
|||||||
|
|
||||||
export const isOptionExist = (
|
export const isOptionExist = (
|
||||||
options: PickerOption[],
|
options: PickerOption[],
|
||||||
value: number | string | undefined,
|
value: Numeric | undefined,
|
||||||
fields: Required<PickerFieldNames>
|
fields: Required<PickerFieldNames>
|
||||||
) =>
|
) =>
|
||||||
value !== undefined &&
|
value !== undefined &&
|
||||||
@ -49,7 +49,7 @@ export const isOptionExist = (
|
|||||||
|
|
||||||
export function findOptionByValue(
|
export function findOptionByValue(
|
||||||
options: PickerOption[],
|
options: PickerOption[],
|
||||||
value: number | string,
|
value: Numeric,
|
||||||
fields: Required<PickerFieldNames>
|
fields: Required<PickerFieldNames>
|
||||||
): PickerOption | undefined {
|
): PickerOption | undefined {
|
||||||
const index = options.findIndex((option) => option[fields.value] === value);
|
const index = options.findIndex((option) => option[fields.value] === value);
|
||||||
@ -60,7 +60,7 @@ export function findOptionByValue(
|
|||||||
export function formatCascadeColumns(
|
export function formatCascadeColumns(
|
||||||
columns: PickerColumn | PickerColumn[],
|
columns: PickerColumn | PickerColumn[],
|
||||||
fields: Required<PickerFieldNames>,
|
fields: Required<PickerFieldNames>,
|
||||||
selectedValues: Ref<Array<number | string>>
|
selectedValues: Ref<Numeric[]>
|
||||||
) {
|
) {
|
||||||
const formatted: PickerColumn[] = [];
|
const formatted: PickerColumn[] = [];
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import VanTimePicker from '..';
|
import VanTimePicker from '..';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '../../../docs/site/use-translate';
|
import { useTranslate } from '../../../docs/site';
|
||||||
import type { PickerOption } from '../../picker';
|
import type { PickerOption } from '../../picker';
|
||||||
import { TimePickerColumnType } from '../TimePicker';
|
import type { TimePickerColumnType } from '../TimePicker';
|
||||||
|
|
||||||
const t = useTranslate({
|
const t = useTranslate({
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user