mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore: prefer using ref in script setup (#9276)
This commit is contained in:
parent
c9fecc14ef
commit
cb25a8c4ae
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, reactive } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { ActionSheetAction } from '..';
|
import { ActionSheetAction } from '..';
|
||||||
import { Toast } from '../../toast';
|
import { Toast } from '../../toast';
|
||||||
@ -36,13 +36,11 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const show = reactive({
|
const showBasic = ref(false);
|
||||||
basic: false,
|
const showCancel = ref(false);
|
||||||
cancel: false,
|
const showTitle = ref(false);
|
||||||
title: false,
|
const showStatus = ref(false);
|
||||||
status: false,
|
const showDescription = ref(false);
|
||||||
description: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const simpleActions = computed<ActionSheetAction[]>(() => [
|
const simpleActions = computed<ActionSheetAction[]>(() => [
|
||||||
{ name: t('option1') },
|
{ name: t('option1') },
|
||||||
@ -63,7 +61,7 @@ const actionsWithDescription = computed<ActionSheetAction[]>(() => [
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
const onSelect = (item: ActionSheetAction) => {
|
const onSelect = (item: ActionSheetAction) => {
|
||||||
show.basic = false;
|
showBasic.value = false;
|
||||||
Toast(item.name);
|
Toast(item.name);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -72,31 +70,31 @@ const onCancel = () => Toast(t('cancel'));
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block card :title="t('basicUsage')">
|
<demo-block card :title="t('basicUsage')">
|
||||||
<van-cell is-link :title="t('basicUsage')" @click="show.basic = true" />
|
<van-cell is-link :title="t('basicUsage')" @click="showBasic = true" />
|
||||||
<van-cell is-link :title="t('showCancel')" @click="show.cancel = true" />
|
<van-cell is-link :title="t('showCancel')" @click="showCancel = true" />
|
||||||
<van-cell
|
<van-cell
|
||||||
is-link
|
is-link
|
||||||
:title="t('showDescription')"
|
:title="t('showDescription')"
|
||||||
@click="show.description = true"
|
@click="showDescription = true"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block card :title="t('optionStatus')">
|
<demo-block card :title="t('optionStatus')">
|
||||||
<van-cell is-link :title="t('optionStatus')" @click="show.status = true" />
|
<van-cell is-link :title="t('optionStatus')" @click="showStatus = true" />
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block card :title="t('customPanel')">
|
<demo-block card :title="t('customPanel')">
|
||||||
<van-cell is-link :title="t('customPanel')" @click="show.title = true" />
|
<van-cell is-link :title="t('customPanel')" @click="showTitle = true" />
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<van-action-sheet
|
<van-action-sheet
|
||||||
v-model:show="show.basic"
|
v-model:show="showBasic"
|
||||||
:actions="simpleActions"
|
:actions="simpleActions"
|
||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<van-action-sheet
|
<van-action-sheet
|
||||||
v-model:show="show.cancel"
|
v-model:show="showCancel"
|
||||||
:actions="simpleActions"
|
:actions="simpleActions"
|
||||||
close-on-click-action
|
close-on-click-action
|
||||||
:cancel-text="t('cancel')"
|
:cancel-text="t('cancel')"
|
||||||
@ -104,7 +102,7 @@ const onCancel = () => Toast(t('cancel'));
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<van-action-sheet
|
<van-action-sheet
|
||||||
v-model:show="show.description"
|
v-model:show="showDescription"
|
||||||
:actions="actionsWithDescription"
|
:actions="actionsWithDescription"
|
||||||
close-on-click-action
|
close-on-click-action
|
||||||
:cancel-text="t('cancel')"
|
:cancel-text="t('cancel')"
|
||||||
@ -112,13 +110,13 @@ const onCancel = () => Toast(t('cancel'));
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<van-action-sheet
|
<van-action-sheet
|
||||||
v-model:show="show.status"
|
v-model:show="showStatus"
|
||||||
close-on-click-action
|
close-on-click-action
|
||||||
:actions="statusActions"
|
:actions="statusActions"
|
||||||
:cancel-text="t('cancel')"
|
:cancel-text="t('cancel')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<van-action-sheet v-model:show="show.title" :title="t('title')">
|
<van-action-sheet v-model:show="showTitle" :title="t('title')">
|
||||||
<div class="demo-action-sheet-content">{{ t('content') }}</div>
|
<div class="demo-action-sheet-content">{{ t('content') }}</div>
|
||||||
</van-action-sheet>
|
</van-action-sheet>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const format = (rate: number) => Math.min(Math.max(rate, 0), 100);
|
const format = (rate: number) => Math.min(Math.max(rate, 0), 100);
|
||||||
@ -24,13 +24,11 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const rate = ref(70);
|
||||||
rate: 70,
|
const currentRate1 = ref(70);
|
||||||
currentRate1: 70,
|
const currentRate2 = ref(70);
|
||||||
currentRate2: 70,
|
const currentRate3 = ref(70);
|
||||||
currentRate3: 70,
|
const currentRate4 = ref(70);
|
||||||
currentRate4: 70,
|
|
||||||
});
|
|
||||||
|
|
||||||
const gradientColor = {
|
const gradientColor = {
|
||||||
'0%': '#3fecff',
|
'0%': '#3fecff',
|
||||||
@ -38,54 +36,54 @@ const gradientColor = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const add = () => {
|
const add = () => {
|
||||||
state.rate = format(state.rate + 20);
|
rate.value = format(rate.value + 20);
|
||||||
};
|
};
|
||||||
|
|
||||||
const reduce = () => {
|
const reduce = () => {
|
||||||
state.rate = format(state.rate - 20);
|
rate.value = format(rate.value - 20);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('basicUsage')">
|
<demo-block :title="t('basicUsage')">
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate1"
|
v-model:current-rate="currentRate1"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
:text="state.currentRate1.toFixed(0) + '%'"
|
:text="currentRate1.toFixed(0) + '%'"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('customStyle')">
|
<demo-block :title="t('customStyle')">
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate3"
|
v-model:current-rate="currentRate3"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
:stroke-width="60"
|
:stroke-width="60"
|
||||||
:text="t('customWidth')"
|
:text="t('customWidth')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate3"
|
v-model:current-rate="currentRate3"
|
||||||
color="#ee0a24"
|
color="#ee0a24"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
layer-color="#ebedf0"
|
layer-color="#ebedf0"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
:text="t('customColor')"
|
:text="t('customColor')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate2"
|
v-model:current-rate="currentRate2"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
:color="gradientColor"
|
:color="gradientColor"
|
||||||
:text="t('gradient')"
|
:text="t('gradient')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate4"
|
v-model:current-rate="currentRate4"
|
||||||
color="#07c160"
|
color="#07c160"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
:clockwise="false"
|
:clockwise="false"
|
||||||
:text="t('counterClockwise')"
|
:text="t('counterClockwise')"
|
||||||
@ -93,9 +91,9 @@ const reduce = () => {
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<van-circle
|
<van-circle
|
||||||
v-model:current-rate="state.currentRate4"
|
v-model:current-rate="currentRate4"
|
||||||
color="#7232dd"
|
color="#7232dd"
|
||||||
:rate="state.rate"
|
:rate="rate"
|
||||||
:speed="100"
|
:speed="100"
|
||||||
size="120px"
|
size="120px"
|
||||||
:clockwise="false"
|
:clockwise="false"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -16,17 +16,15 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const active1 = ref([0]);
|
||||||
active1: [0],
|
const active2 = ref(0);
|
||||||
active2: 0,
|
const active3 = ref([]);
|
||||||
active3: [],
|
const active4 = ref([]);
|
||||||
active4: [],
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('basicUsage')">
|
<demo-block :title="t('basicUsage')">
|
||||||
<van-collapse v-model="state.active1">
|
<van-collapse v-model="active1">
|
||||||
<van-collapse-item :title="t('title') + 1">
|
<van-collapse-item :title="t('title') + 1">
|
||||||
{{ t('text') }}
|
{{ t('text') }}
|
||||||
</van-collapse-item>
|
</van-collapse-item>
|
||||||
@ -40,7 +38,7 @@ const state = reactive({
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('accordion')">
|
<demo-block :title="t('accordion')">
|
||||||
<van-collapse v-model="state.active2" accordion>
|
<van-collapse v-model="active2" accordion>
|
||||||
<van-collapse-item :title="t('title') + 1">
|
<van-collapse-item :title="t('title') + 1">
|
||||||
{{ t('text') }}
|
{{ t('text') }}
|
||||||
</van-collapse-item>
|
</van-collapse-item>
|
||||||
@ -54,7 +52,7 @@ const state = reactive({
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('disabled')">
|
<demo-block :title="t('disabled')">
|
||||||
<van-collapse v-model="state.active3">
|
<van-collapse v-model="active3">
|
||||||
<van-collapse-item :title="t('title') + 1">
|
<van-collapse-item :title="t('title') + 1">
|
||||||
{{ t('text') }}
|
{{ t('text') }}
|
||||||
</van-collapse-item>
|
</van-collapse-item>
|
||||||
@ -68,7 +66,7 @@ const state = reactive({
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('titleSlot')">
|
<demo-block :title="t('titleSlot')">
|
||||||
<van-collapse v-model="state.active4">
|
<van-collapse v-model="active4">
|
||||||
<van-collapse-item>
|
<van-collapse-item>
|
||||||
<template #title>
|
<template #title>
|
||||||
{{ t('title') + 1 }}<van-icon name="question-o" />
|
{{ t('title') + 1 }}<van-icon name="question-o" />
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { reactive } from '@vue/reactivity';
|
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
@ -22,12 +22,8 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const rate = ref(4);
|
||||||
rate: 4,
|
const slider = ref(50);
|
||||||
slider: 50,
|
|
||||||
switchChecked: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const themeVars = {
|
const themeVars = {
|
||||||
rateIconFullColor: '#07c160',
|
rateIconFullColor: '#07c160',
|
||||||
sliderBarHeight: '4px',
|
sliderBarHeight: '4px',
|
||||||
@ -44,13 +40,13 @@ const themeVars = {
|
|||||||
<van-form>
|
<van-form>
|
||||||
<van-field name="rate" :label="t('rate')">
|
<van-field name="rate" :label="t('rate')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-rate v-model="state.rate" />
|
<van-rate v-model="rate" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="slider" :label="t('slider')">
|
<van-field name="slider" :label="t('slider')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-slider v-model="state.slider" />
|
<van-slider v-model="slider" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
@ -67,13 +63,13 @@ const themeVars = {
|
|||||||
<van-form>
|
<van-form>
|
||||||
<van-field name="rate" :label="t('rate')">
|
<van-field name="rate" :label="t('rate')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-rate v-model="state.rate" />
|
<van-rate v-model="rate" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="slider" :label="t('slider')">
|
<van-field name="slider" :label="t('slider')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-slider v-model="state.slider" />
|
<van-slider v-model="slider" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, reactive } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { CouponInfo } from '../../coupon';
|
import { CouponInfo } from '../../coupon';
|
||||||
import { Toast } from '../../toast';
|
import { Toast } from '../../toast';
|
||||||
@ -27,11 +27,9 @@ const getRandomId = (max = 999999) =>
|
|||||||
String(Math.floor(Math.random() * max) + 1);
|
String(Math.floor(Math.random() * max) + 1);
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const showList = ref(false);
|
||||||
showList: false,
|
const chosenCoupon = ref(-1);
|
||||||
chosenCoupon: -1,
|
const exchangedCoupons = ref<CouponInfo[]>([]);
|
||||||
exchangedCoupons: [] as CouponInfo[],
|
|
||||||
});
|
|
||||||
|
|
||||||
const coupon = computed(() => ({
|
const coupon = computed(() => ({
|
||||||
id: 1,
|
id: 1,
|
||||||
@ -71,7 +69,7 @@ const disabledDiscountCoupon = computed(() => ({
|
|||||||
const coupons = computed(() => [
|
const coupons = computed(() => [
|
||||||
coupon.value,
|
coupon.value,
|
||||||
discountCoupon.value,
|
discountCoupon.value,
|
||||||
...state.exchangedCoupons,
|
...exchangedCoupons.value,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const disabledCoupons = computed(() => [
|
const disabledCoupons = computed(() => [
|
||||||
@ -80,13 +78,13 @@ const disabledCoupons = computed(() => [
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
const onChange = (index: number) => {
|
const onChange = (index: number) => {
|
||||||
state.showList = false;
|
showList.value = false;
|
||||||
state.chosenCoupon = index;
|
chosenCoupon.value = index;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onExchange = () => {
|
const onExchange = () => {
|
||||||
Toast(t('exchange'));
|
Toast(t('exchange'));
|
||||||
state.exchangedCoupons.push({
|
exchangedCoupons.value.push({
|
||||||
...coupon.value,
|
...coupon.value,
|
||||||
id: getRandomId(),
|
id: getRandomId(),
|
||||||
});
|
});
|
||||||
@ -97,18 +95,18 @@ const onExchange = () => {
|
|||||||
<demo-block :title="t('basicUsage')">
|
<demo-block :title="t('basicUsage')">
|
||||||
<van-coupon-cell
|
<van-coupon-cell
|
||||||
:coupons="coupons"
|
:coupons="coupons"
|
||||||
:chosen-coupon="state.chosenCoupon"
|
:chosen-coupon="chosenCoupon"
|
||||||
@click="state.showList = true"
|
@click="showList = true"
|
||||||
/>
|
/>
|
||||||
<van-popup
|
<van-popup
|
||||||
v-model:show="state.showList"
|
v-model:show="showList"
|
||||||
round
|
round
|
||||||
position="bottom"
|
position="bottom"
|
||||||
style="height: 90%; padding-top: 4px"
|
style="height: 90%; padding-top: 4px"
|
||||||
>
|
>
|
||||||
<van-coupon-list
|
<van-coupon-list
|
||||||
:coupons="coupons"
|
:coupons="coupons"
|
||||||
:chosen-coupon="state.chosenCoupon"
|
:chosen-coupon="chosenCoupon"
|
||||||
:disabled-coupons="disabledCoupons"
|
:disabled-coupons="disabledCoupons"
|
||||||
:show-count="false"
|
:show-count="false"
|
||||||
@change="onChange"
|
@change="onChange"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, reactive, ref } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import type { DropdownItemInstance } from '../../dropdown-item';
|
import type { DropdownItemInstance } from '../../dropdown-item';
|
||||||
|
|
||||||
@ -47,12 +47,10 @@ const i18n = {
|
|||||||
const item = ref<DropdownItemInstance>();
|
const item = ref<DropdownItemInstance>();
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
|
|
||||||
const state = reactive({
|
const switch1 = ref(true);
|
||||||
switch1: true,
|
const switch2 = ref(false);
|
||||||
switch2: false,
|
const value1 = ref(0);
|
||||||
value1: 0,
|
const value2 = ref('a');
|
||||||
value2: 'a',
|
|
||||||
});
|
|
||||||
|
|
||||||
const option1 = computed(() => t('option1'));
|
const option1 = computed(() => t('option1'));
|
||||||
const option2 = computed(() => t('option2'));
|
const option2 = computed(() => t('option2'));
|
||||||
@ -65,31 +63,23 @@ const onConfirm = () => {
|
|||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('basicUsage')">
|
<demo-block :title="t('basicUsage')">
|
||||||
<van-dropdown-menu>
|
<van-dropdown-menu>
|
||||||
<van-dropdown-item v-model="state.value1" :options="option1" />
|
<van-dropdown-item v-model="value1" :options="option1" />
|
||||||
<van-dropdown-item v-model="state.value2" :options="option2" />
|
<van-dropdown-item v-model="value2" :options="option2" />
|
||||||
</van-dropdown-menu>
|
</van-dropdown-menu>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('customContent')">
|
<demo-block :title="t('customContent')">
|
||||||
<van-dropdown-menu>
|
<van-dropdown-menu>
|
||||||
<van-dropdown-item v-model="state.value1" :options="option1" />
|
<van-dropdown-item v-model="value1" :options="option1" />
|
||||||
<van-dropdown-item :title="t('itemTitle')" ref="item">
|
<van-dropdown-item :title="t('itemTitle')" ref="item">
|
||||||
<van-cell center :title="t('switchTitle1')">
|
<van-cell center :title="t('switchTitle1')">
|
||||||
<template #right-icon>
|
<template #right-icon>
|
||||||
<van-switch
|
<van-switch v-model="switch1" size="24" active-color="#ee0a24" />
|
||||||
v-model="state.switch1"
|
|
||||||
size="24"
|
|
||||||
active-color="#ee0a24"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
</van-cell>
|
</van-cell>
|
||||||
<van-cell center :title="t('switchTitle2')">
|
<van-cell center :title="t('switchTitle2')">
|
||||||
<template #right-icon>
|
<template #right-icon>
|
||||||
<van-switch
|
<van-switch v-model="switch2" size="24" active-color="#ee0a24" />
|
||||||
v-model="state.switch2"
|
|
||||||
size="24"
|
|
||||||
active-color="#ee0a24"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
</van-cell>
|
</van-cell>
|
||||||
<div style="padding: 5px 16px">
|
<div style="padding: 5px 16px">
|
||||||
@ -109,22 +99,22 @@ const onConfirm = () => {
|
|||||||
|
|
||||||
<demo-block :title="t('customActiveColor')">
|
<demo-block :title="t('customActiveColor')">
|
||||||
<van-dropdown-menu active-color="#1989fa">
|
<van-dropdown-menu active-color="#1989fa">
|
||||||
<van-dropdown-item v-model="state.value1" :options="option1" />
|
<van-dropdown-item v-model="value1" :options="option1" />
|
||||||
<van-dropdown-item v-model="state.value2" :options="option2" />
|
<van-dropdown-item v-model="value2" :options="option2" />
|
||||||
</van-dropdown-menu>
|
</van-dropdown-menu>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('expandDirection')">
|
<demo-block :title="t('expandDirection')">
|
||||||
<van-dropdown-menu direction="up">
|
<van-dropdown-menu direction="up">
|
||||||
<van-dropdown-item v-model="state.value1" :options="option1" />
|
<van-dropdown-item v-model="value1" :options="option1" />
|
||||||
<van-dropdown-item v-model="state.value2" :options="option2" />
|
<van-dropdown-item v-model="value2" :options="option2" />
|
||||||
</van-dropdown-menu>
|
</van-dropdown-menu>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block :title="t('disableMenu')">
|
<demo-block :title="t('disableMenu')">
|
||||||
<van-dropdown-menu>
|
<van-dropdown-menu>
|
||||||
<van-dropdown-item v-model="state.value1" disabled :options="option1" />
|
<van-dropdown-item v-model="value1" disabled :options="option1" />
|
||||||
<van-dropdown-item v-model="state.value2" disabled :options="option2" />
|
<van-dropdown-item v-model="value2" disabled :options="option2" />
|
||||||
</van-dropdown-menu>
|
</van-dropdown-menu>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -30,43 +30,41 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const text = ref('');
|
||||||
text: '',
|
const phone = ref('');
|
||||||
phone: '',
|
const digit = ref('');
|
||||||
digit: '',
|
const number = ref('');
|
||||||
number: '',
|
const password = ref('');
|
||||||
password: '',
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('customType')">
|
<demo-block :title="t('customType')">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.text"
|
v-model="text"
|
||||||
:label="t('text')"
|
:label="t('text')"
|
||||||
:placeholder="t('textPlaceholder')"
|
:placeholder="t('textPlaceholder')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.phone"
|
v-model="phone"
|
||||||
type="tel"
|
type="tel"
|
||||||
:label="t('phone')"
|
:label="t('phone')"
|
||||||
:placeholder="t('phonePlaceholder')"
|
:placeholder="t('phonePlaceholder')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.digit"
|
v-model="digit"
|
||||||
type="digit"
|
type="digit"
|
||||||
:label="t('digit')"
|
:label="t('digit')"
|
||||||
:placeholder="t('digitPlaceholder')"
|
:placeholder="t('digitPlaceholder')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.number"
|
v-model="number"
|
||||||
type="number"
|
type="number"
|
||||||
:label="t('number')"
|
:label="t('number')"
|
||||||
:placeholder="t('numberPlaceholder')"
|
:placeholder="t('numberPlaceholder')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.password"
|
v-model="password"
|
||||||
type="password"
|
type="password"
|
||||||
:label="t('password')"
|
:label="t('password')"
|
||||||
:placeholder="t('passwordPlaceholder')"
|
:placeholder="t('passwordPlaceholder')"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -18,24 +18,22 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const phone = ref('123');
|
||||||
phone: '123',
|
const username = ref('');
|
||||||
username: '',
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('errorInfo')">
|
<demo-block :title="t('errorInfo')">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.username"
|
v-model="username"
|
||||||
error
|
error
|
||||||
required
|
required
|
||||||
:label="t('username')"
|
:label="t('username')"
|
||||||
:placeholder="t('usernamePlaceholder')"
|
:placeholder="t('usernamePlaceholder')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.phone"
|
v-model="phone"
|
||||||
required
|
required
|
||||||
:label="t('phone')"
|
:label="t('phone')"
|
||||||
:placeholder="t('phonePlaceholder')"
|
:placeholder="t('phonePlaceholder')"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -18,10 +18,8 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const value1 = ref('');
|
||||||
value1: '',
|
const value2 = ref('');
|
||||||
value2: '',
|
|
||||||
});
|
|
||||||
const formatter = (value: string) => value.replace(/\d/g, '');
|
const formatter = (value: string) => value.replace(/\d/g, '');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -29,13 +27,13 @@ const formatter = (value: string) => value.replace(/\d/g, '');
|
|||||||
<demo-block :title="t('formatValue')">
|
<demo-block :title="t('formatValue')">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value1"
|
v-model="value1"
|
||||||
:label="t('text')"
|
:label="t('text')"
|
||||||
:formatter="formatter"
|
:formatter="formatter"
|
||||||
:placeholder="t('formatOnChange')"
|
:placeholder="t('formatOnChange')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value2"
|
v-model="value2"
|
||||||
:label="t('text')"
|
:label="t('text')"
|
||||||
:formatter="formatter"
|
:formatter="formatter"
|
||||||
format-trigger="onBlur"
|
format-trigger="onBlur"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -16,24 +16,22 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const icon1 = ref('');
|
||||||
icon1: '',
|
const icon2 = ref('123');
|
||||||
icon2: '123',
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block :title="t('showIcon')">
|
<demo-block :title="t('showIcon')">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.icon1"
|
v-model="icon1"
|
||||||
:label="t('text')"
|
:label="t('text')"
|
||||||
left-icon="smile-o"
|
left-icon="smile-o"
|
||||||
right-icon="warning-o"
|
right-icon="warning-o"
|
||||||
:placeholder="t('showIcon')"
|
:placeholder="t('showIcon')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.icon2"
|
v-model="icon2"
|
||||||
clearable
|
clearable
|
||||||
:label="t('text')"
|
:label="t('text')"
|
||||||
left-icon="music-o"
|
left-icon="music-o"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { FieldValidateError } from '../../field/types';
|
import { FieldValidateError } from '../../field/types';
|
||||||
|
|
||||||
@ -21,10 +21,8 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const username = ref('');
|
||||||
username: '',
|
const password = ref('');
|
||||||
password: '',
|
|
||||||
});
|
|
||||||
|
|
||||||
const onSubmit = (values: Record<string, string>) => {
|
const onSubmit = (values: Record<string, string>) => {
|
||||||
console.log('submit', values);
|
console.log('submit', values);
|
||||||
@ -43,14 +41,14 @@ const onFailed = (errorInfo: {
|
|||||||
<van-form @submit="onSubmit" @failed="onFailed">
|
<van-form @submit="onSubmit" @failed="onFailed">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.username"
|
v-model="username"
|
||||||
name="username"
|
name="username"
|
||||||
:label="t('username')"
|
:label="t('username')"
|
||||||
:rules="[{ required: true, message: t('requireUsername') }]"
|
:rules="[{ required: true, message: t('requireUsername') }]"
|
||||||
:placeholder="t('username')"
|
:placeholder="t('username')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.password"
|
v-model="password"
|
||||||
type="password"
|
type="password"
|
||||||
name="password"
|
name="password"
|
||||||
:label="t('password')"
|
:label="t('password')"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import FieldTypeArea from './FieldTypeArea.vue';
|
import FieldTypeArea from './FieldTypeArea.vue';
|
||||||
import FieldTypePicker from './FieldTypePicker.vue';
|
import FieldTypePicker from './FieldTypePicker.vue';
|
||||||
@ -38,16 +38,14 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const rate = ref(3);
|
||||||
rate: 3,
|
const radio = ref('1');
|
||||||
radio: '1',
|
const slider = ref(50);
|
||||||
slider: 50,
|
const stepper = ref(1);
|
||||||
stepper: 1,
|
const uploader = ref([{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }]);
|
||||||
uploader: [{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }],
|
const checkbox = ref(false);
|
||||||
checkbox: false,
|
const checkboxGroup = ref([]);
|
||||||
checkboxGroup: [],
|
const switchChecked = ref(false);
|
||||||
switchChecked: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onSubmit = (values: Record<string, string>) => {
|
const onSubmit = (values: Record<string, string>) => {
|
||||||
console.log(values);
|
console.log(values);
|
||||||
@ -60,22 +58,19 @@ const onSubmit = (values: Record<string, string>) => {
|
|||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field name="switch" :label="t('switch')">
|
<van-field name="switch" :label="t('switch')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-switch v-model="state.switchChecked" size="20" />
|
<van-switch v-model="switchChecked" size="20" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="checkbox" :label="t('checkbox')">
|
<van-field name="checkbox" :label="t('checkbox')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-checkbox v-model="state.checkbox" shape="square" />
|
<van-checkbox v-model="checkbox" shape="square" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="checkboxGroup" :label="t('checkboxGroup')">
|
<van-field name="checkboxGroup" :label="t('checkboxGroup')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-checkbox-group
|
<van-checkbox-group v-model="checkboxGroup" direction="horizontal">
|
||||||
v-model="state.checkboxGroup"
|
|
||||||
direction="horizontal"
|
|
||||||
>
|
|
||||||
<van-checkbox name="1" shape="square">
|
<van-checkbox name="1" shape="square">
|
||||||
{{ t('checkbox') }} 1
|
{{ t('checkbox') }} 1
|
||||||
</van-checkbox>
|
</van-checkbox>
|
||||||
@ -88,7 +83,7 @@ const onSubmit = (values: Record<string, string>) => {
|
|||||||
|
|
||||||
<van-field name="radio" :label="t('radio')">
|
<van-field name="radio" :label="t('radio')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-radio-group v-model="state.radio" direction="horizontal">
|
<van-radio-group v-model="radio" direction="horizontal">
|
||||||
<van-radio name="1">{{ t('radio') }} 1</van-radio>
|
<van-radio name="1">{{ t('radio') }} 1</van-radio>
|
||||||
<van-radio name="2">{{ t('radio') }} 2</van-radio>
|
<van-radio name="2">{{ t('radio') }} 2</van-radio>
|
||||||
</van-radio-group>
|
</van-radio-group>
|
||||||
@ -97,25 +92,25 @@ const onSubmit = (values: Record<string, string>) => {
|
|||||||
|
|
||||||
<van-field name="stepper" :label="t('stepper')">
|
<van-field name="stepper" :label="t('stepper')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-stepper v-model="state.stepper" />
|
<van-stepper v-model="stepper" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="rate" :label="t('rate')">
|
<van-field name="rate" :label="t('rate')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-rate v-model="state.rate" />
|
<van-rate v-model="rate" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="slider" :label="t('slider')">
|
<van-field name="slider" :label="t('slider')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-slider v-model="state.slider" />
|
<van-slider v-model="slider" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
<van-field name="uploader" :label="t('uploader')">
|
<van-field name="uploader" :label="t('uploader')">
|
||||||
<template #input>
|
<template #input>
|
||||||
<van-uploader v-model="state.uploader" max-count="2" />
|
<van-uploader v-model="uploader" max-count="2" />
|
||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { areaList } from '@vant/area-data';
|
import { areaList } from '@vant/area-data';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { AreaColumnOption } from '../../area';
|
import { AreaColumnOption } from '../../area';
|
||||||
@ -19,40 +19,33 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const areaCode = ref('');
|
||||||
value: '',
|
const showArea = ref(false);
|
||||||
showArea: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onConfirm = (values: AreaColumnOption[]) => {
|
const onConfirm = (values: AreaColumnOption[]) => {
|
||||||
state.value = values
|
areaCode.value = values
|
||||||
.filter((item) => !!item)
|
.filter((item) => !!item)
|
||||||
.map((item) => item.name)
|
.map((item) => item.name)
|
||||||
.join('/');
|
.join('/');
|
||||||
state.showArea = false;
|
showArea.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCancel = () => {
|
const onCancel = () => {
|
||||||
state.showArea = false;
|
showArea.value = false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value"
|
v-model="areaCode"
|
||||||
is-link
|
is-link
|
||||||
readonly
|
readonly
|
||||||
name="area"
|
name="area"
|
||||||
:label="t('picker')"
|
:label="t('picker')"
|
||||||
:placeholder="t('placeholder')"
|
:placeholder="t('placeholder')"
|
||||||
@click="state.showArea = true"
|
@click="showArea = true"
|
||||||
/>
|
/>
|
||||||
<van-popup
|
<van-popup v-model:show="showArea" round position="bottom" teleport="body">
|
||||||
v-model:show="state.showArea"
|
|
||||||
round
|
|
||||||
position="bottom"
|
|
||||||
teleport="body"
|
|
||||||
>
|
|
||||||
<van-area
|
<van-area
|
||||||
:area-list="t('areaList')"
|
:area-list="t('areaList')"
|
||||||
@confirm="onConfirm"
|
@confirm="onConfirm"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -14,31 +14,29 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const result = ref('');
|
||||||
value: '',
|
const showCalendar = ref(false);
|
||||||
showCalendar: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const formatDate = (date: Date) => `${date.getMonth() + 1}/${date.getDate()}`;
|
const formatDate = (date: Date) => `${date.getMonth() + 1}/${date.getDate()}`;
|
||||||
|
|
||||||
const onConfirm = (date: Date) => {
|
const onConfirm = (date: Date) => {
|
||||||
state.value = formatDate(date);
|
result.value = formatDate(date);
|
||||||
state.showCalendar = false;
|
showCalendar.value = false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value"
|
v-model="result"
|
||||||
is-link
|
is-link
|
||||||
readonly
|
readonly
|
||||||
name="calendar"
|
name="calendar"
|
||||||
:label="t('calendar')"
|
:label="t('calendar')"
|
||||||
:placeholder="t('placeholder')"
|
:placeholder="t('placeholder')"
|
||||||
@click="state.showCalendar = true"
|
@click="showCalendar = true"
|
||||||
/>
|
/>
|
||||||
<van-calendar
|
<van-calendar
|
||||||
v-model:show="state.showCalendar"
|
v-model:show="showCalendar"
|
||||||
round
|
round
|
||||||
teleport="body"
|
teleport="body"
|
||||||
@confirm="onConfirm"
|
@confirm="onConfirm"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -14,37 +14,30 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const result = ref('');
|
||||||
value: '',
|
const showPicker = ref(false);
|
||||||
showPicker: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onConfirm = (time: string) => {
|
const onConfirm = (time: string) => {
|
||||||
state.value = time;
|
result.value = time;
|
||||||
state.showPicker = false;
|
showPicker.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCancel = () => {
|
const onCancel = () => {
|
||||||
state.showPicker = false;
|
showPicker.value = false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value"
|
v-model="result"
|
||||||
is-link
|
is-link
|
||||||
readonly
|
readonly
|
||||||
name="datetimePicker"
|
name="datetimePicker"
|
||||||
:label="t('label')"
|
:label="t('label')"
|
||||||
:placeholder="t('placeholder')"
|
:placeholder="t('placeholder')"
|
||||||
@click="state.showPicker = true"
|
@click="showPicker = true"
|
||||||
/>
|
/>
|
||||||
<van-popup
|
<van-popup v-model:show="showPicker" round position="bottom" teleport="body">
|
||||||
v-model:show="state.showPicker"
|
|
||||||
round
|
|
||||||
position="bottom"
|
|
||||||
teleport="body"
|
|
||||||
>
|
|
||||||
<van-datetime-picker type="time" @confirm="onConfirm" @cancel="onCancel" />
|
<van-datetime-picker type="time" @confirm="onConfirm" @cancel="onCancel" />
|
||||||
</van-popup>
|
</van-popup>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
@ -16,37 +16,30 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const result = ref('');
|
||||||
value: '',
|
const showPicker = ref(false);
|
||||||
showPicker: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onConfirm = (value: string) => {
|
const onConfirm = (value: string) => {
|
||||||
state.value = value;
|
result.value = value;
|
||||||
state.showPicker = false;
|
showPicker.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCancel = () => {
|
const onCancel = () => {
|
||||||
state.showPicker = false;
|
showPicker.value = false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value"
|
v-model="result"
|
||||||
is-link
|
is-link
|
||||||
readonly
|
readonly
|
||||||
name="picker"
|
name="picker"
|
||||||
:label="t('picker')"
|
:label="t('picker')"
|
||||||
:placeholder="t('placeholder')"
|
:placeholder="t('placeholder')"
|
||||||
@click="state.showPicker = true"
|
@click="showPicker = true"
|
||||||
/>
|
/>
|
||||||
<van-popup
|
<van-popup v-model:show="showPicker" round position="bottom" teleport="body">
|
||||||
v-model:show="state.showPicker"
|
|
||||||
round
|
|
||||||
position="bottom"
|
|
||||||
teleport="body"
|
|
||||||
>
|
|
||||||
<van-picker
|
<van-picker
|
||||||
:columns="t('textColumns')"
|
:columns="t('textColumns')"
|
||||||
@confirm="onConfirm"
|
@confirm="onConfirm"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { FieldValidateError } from '../../field/types';
|
import { FieldValidateError } from '../../field/types';
|
||||||
import { Toast } from '../../toast';
|
import { Toast } from '../../toast';
|
||||||
@ -32,12 +32,10 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const value1 = ref('');
|
||||||
value1: '',
|
const value2 = ref('');
|
||||||
value2: '',
|
const value3 = ref('abc');
|
||||||
value3: 'abc',
|
const value4 = ref('');
|
||||||
value4: '',
|
|
||||||
});
|
|
||||||
const pattern = /\d{6}/;
|
const pattern = /\d{6}/;
|
||||||
|
|
||||||
const validator = (val: string) => /1\d{10}/.test(val);
|
const validator = (val: string) => /1\d{10}/.test(val);
|
||||||
@ -71,28 +69,28 @@ const onFailed = (errorInfo: {
|
|||||||
<van-form @sumbit="onSubmit" @failed="onFailed">
|
<van-form @sumbit="onSubmit" @failed="onFailed">
|
||||||
<van-cell-group inset>
|
<van-cell-group inset>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value1"
|
v-model="value1"
|
||||||
name="pattern"
|
name="pattern"
|
||||||
:label="t('label')"
|
:label="t('label')"
|
||||||
:rules="[{ pattern, message: t('message') }]"
|
:rules="[{ pattern, message: t('message') }]"
|
||||||
:placeholder="t('pattern')"
|
:placeholder="t('pattern')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value2"
|
v-model="value2"
|
||||||
name="validator"
|
name="validator"
|
||||||
:label="t('label')"
|
:label="t('label')"
|
||||||
:rules="[{ validator, message: t('message') }]"
|
:rules="[{ validator, message: t('message') }]"
|
||||||
:placeholder="t('validator')"
|
:placeholder="t('validator')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value3"
|
v-model="value3"
|
||||||
name="validatorMessage"
|
name="validatorMessage"
|
||||||
:label="t('label')"
|
:label="t('label')"
|
||||||
:rules="[{ validator: validatorMessage }]"
|
:rules="[{ validator: validatorMessage }]"
|
||||||
:placeholder="t('validatorMessage')"
|
:placeholder="t('validatorMessage')"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
v-model="state.value4"
|
v-model="value4"
|
||||||
name="asyncValidator"
|
name="asyncValidator"
|
||||||
:label="t('label')"
|
:label="t('label')"
|
||||||
:rules="[{ validator: asyncValidator, message: t('message') }]"
|
:rules="[{ validator: asyncValidator, message: t('message') }]"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { ImagePreview, ImagePreviewOptions } from '..';
|
import { ImagePreview, ImagePreviewOptions } from '..';
|
||||||
import { Toast } from '../../toast';
|
import { Toast } from '../../toast';
|
||||||
@ -37,10 +37,8 @@ const images = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const show = ref(false);
|
||||||
show: false,
|
const index = ref(0);
|
||||||
index: 0,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onClose = () => Toast(t('closed'));
|
const onClose = () => Toast(t('closed'));
|
||||||
|
|
||||||
@ -52,11 +50,11 @@ const beforeClose = () =>
|
|||||||
});
|
});
|
||||||
|
|
||||||
const showComponentCall = () => {
|
const showComponentCall = () => {
|
||||||
state.show = true;
|
show.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onChange = (index: number) => {
|
const onChange = (newIndex: number) => {
|
||||||
state.index = index;
|
index.value = newIndex;
|
||||||
};
|
};
|
||||||
|
|
||||||
const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => {
|
const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => {
|
||||||
@ -102,12 +100,8 @@ const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => {
|
|||||||
<van-cell is-link @click="showComponentCall">
|
<van-cell is-link @click="showComponentCall">
|
||||||
{{ t('componentCall') }}
|
{{ t('componentCall') }}
|
||||||
</van-cell>
|
</van-cell>
|
||||||
<van-image-preview
|
<van-image-preview v-model:show="show" :images="images" @change="onChange">
|
||||||
v-model:show="state.show"
|
<template #index>{{ t('index', index) }}</template>
|
||||||
:images="images"
|
|
||||||
@change="onChange"
|
|
||||||
>
|
|
||||||
<template #index>{{ t('index', state.index) }}</template>
|
|
||||||
</van-image-preview>
|
</van-image-preview>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, reactive } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useTranslate } from '@demo/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import { ShareSheetOption, ShareSheetOptions } from '..';
|
import { ShareSheetOption, ShareSheetOptions } from '..';
|
||||||
import { Toast } from '../../toast';
|
import { Toast } from '../../toast';
|
||||||
@ -42,12 +42,10 @@ const i18n = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const t = useTranslate(i18n);
|
const t = useTranslate(i18n);
|
||||||
const show = reactive({
|
const showBasic = ref(false);
|
||||||
basic: false,
|
const showWithDesc = ref(false);
|
||||||
withDesc: false,
|
const showMultiLine = ref(false);
|
||||||
multiLine: false,
|
const showCustomIcon = ref(false);
|
||||||
customIcon: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const options = computed(() => [
|
const options = computed(() => [
|
||||||
{ name: t('wechat'), icon: 'wechat' },
|
{ name: t('wechat'), icon: 'wechat' },
|
||||||
@ -101,18 +99,18 @@ const optionsWithDesc = computed<ShareSheetOptions>(() => [
|
|||||||
|
|
||||||
const onSelect = (option: ShareSheetOption) => {
|
const onSelect = (option: ShareSheetOption) => {
|
||||||
Toast(option.name);
|
Toast(option.name);
|
||||||
show.basic = false;
|
showBasic.value = false;
|
||||||
show.withDesc = false;
|
showWithDesc.value = false;
|
||||||
show.multiLine = false;
|
showMultiLine.value = false;
|
||||||
show.customIcon = false;
|
showCustomIcon.value = false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<demo-block card :title="t('basicUsage')">
|
<demo-block card :title="t('basicUsage')">
|
||||||
<van-cell is-link :title="t('showSheet')" @click="show.basic = true" />
|
<van-cell is-link :title="t('showSheet')" @click="showBasic = true" />
|
||||||
<van-share-sheet
|
<van-share-sheet
|
||||||
v-model:show="show.basic"
|
v-model:show="showBasic"
|
||||||
:title="t('title')"
|
:title="t('title')"
|
||||||
:options="options"
|
:options="options"
|
||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
@ -120,9 +118,9 @@ const onSelect = (option: ShareSheetOption) => {
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block card :title="t('multiLine')">
|
<demo-block card :title="t('multiLine')">
|
||||||
<van-cell is-link :title="t('showSheet')" @click="show.multiLine = true" />
|
<van-cell is-link :title="t('showSheet')" @click="showMultiLine = true" />
|
||||||
<van-share-sheet
|
<van-share-sheet
|
||||||
v-model:show="show.multiLine"
|
v-model:show="showMultiLine"
|
||||||
:title="t('title')"
|
:title="t('title')"
|
||||||
:options="multiLineOptions"
|
:options="multiLineOptions"
|
||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
@ -130,18 +128,18 @@ const onSelect = (option: ShareSheetOption) => {
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block card :title="t('customIcon')">
|
<demo-block card :title="t('customIcon')">
|
||||||
<van-cell is-link :title="t('showSheet')" @click="show.customIcon = true" />
|
<van-cell is-link :title="t('showSheet')" @click="showCustomIcon = true" />
|
||||||
<van-share-sheet
|
<van-share-sheet
|
||||||
v-model:show="show.customIcon"
|
v-model:show="showCustomIcon"
|
||||||
:options="customIconOptions"
|
:options="customIconOptions"
|
||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block card :title="t('withDesc')">
|
<demo-block card :title="t('withDesc')">
|
||||||
<van-cell is-link :title="t('showSheet')" @click="show.withDesc = true" />
|
<van-cell is-link :title="t('showSheet')" @click="showWithDesc = true" />
|
||||||
<van-share-sheet
|
<van-share-sheet
|
||||||
v-model:show="show.withDesc"
|
v-model:show="showWithDesc"
|
||||||
:title="t('title')"
|
:title="t('title')"
|
||||||
:options="optionsWithDesc"
|
:options="optionsWithDesc"
|
||||||
:description="t('description')"
|
:description="t('description')"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user