250 lines
5.7 KiB
Vue
250 lines
5.7 KiB
Vue
<template>
|
|
<demo-block card :title="t('basicUsage')">
|
|
<van-field
|
|
v-model="base.result"
|
|
is-link
|
|
readonly
|
|
:label="t('area')"
|
|
:placeholder="t('selectArea')"
|
|
@click="base.show = true"
|
|
/>
|
|
<van-popup v-model:show="base.show" round teleport="body" position="bottom">
|
|
<van-cascader
|
|
v-model="base.value"
|
|
:title="t('selectArea')"
|
|
:options="t('options')"
|
|
@close="base.show = false"
|
|
@finish="onFinish('base', $event)"
|
|
/>
|
|
</van-popup>
|
|
</demo-block>
|
|
|
|
<demo-block card :title="t('customColor')">
|
|
<van-field
|
|
v-model="customColor.result"
|
|
is-link
|
|
readonly
|
|
:label="t('area')"
|
|
:placeholder="t('selectArea')"
|
|
@click="customColor.show = true"
|
|
/>
|
|
<van-popup
|
|
v-model:show="customColor.show"
|
|
round
|
|
teleport="body"
|
|
position="bottom"
|
|
>
|
|
<van-cascader
|
|
v-model="customColor.value"
|
|
:title="t('selectArea')"
|
|
:options="t('options')"
|
|
active-color="#1989fa"
|
|
@close="customColor.show = false"
|
|
@finish="onFinish('customColor', $event)"
|
|
/>
|
|
</van-popup>
|
|
</demo-block>
|
|
|
|
<demo-block card :title="t('asyncOptions')">
|
|
<van-field
|
|
v-model="async.result"
|
|
is-link
|
|
readonly
|
|
:label="t('area')"
|
|
:placeholder="t('selectArea')"
|
|
@click="async.show = true"
|
|
/>
|
|
<van-popup
|
|
v-model:show="async.show"
|
|
round
|
|
teleport="body"
|
|
position="bottom"
|
|
>
|
|
<van-cascader
|
|
v-model="async.value"
|
|
:title="t('selectArea')"
|
|
:options="async.options"
|
|
@close="async.show = false"
|
|
@change="loadDynamicOptions"
|
|
@finish="onFinish('async', $event)"
|
|
/>
|
|
</van-popup>
|
|
</demo-block>
|
|
|
|
<demo-block card :title="t('customFieldNames')">
|
|
<van-field
|
|
v-model="customFieldNames.result"
|
|
is-link
|
|
readonly
|
|
:label="t('area')"
|
|
:placeholder="t('selectArea')"
|
|
@click="customFieldNames.show = true"
|
|
/>
|
|
<van-popup
|
|
v-model:show="customFieldNames.show"
|
|
round
|
|
teleport="body"
|
|
position="bottom"
|
|
safe-area-inset-bottom
|
|
>
|
|
<van-cascader
|
|
v-model="customFieldNames.value"
|
|
:title="t('selectArea')"
|
|
:options="customFieldOptions"
|
|
:field-names="fieldNames"
|
|
@close="customFieldNames.show = false"
|
|
@finish="onFinish('customFieldNames', $event)"
|
|
/>
|
|
</van-popup>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, reactive, toRefs } from 'vue';
|
|
import { CascaderOption } from '..';
|
|
import { useTranslate } from '@demo/use-translate';
|
|
import { deepClone } from '../../utils/deep-clone';
|
|
import zhCNOptions from './area-zh-CN';
|
|
import enUSOptions from './area-en-US';
|
|
|
|
const i18n = {
|
|
'zh-CN': {
|
|
area: '地区',
|
|
options: zhCNOptions,
|
|
selectArea: '请选择地区',
|
|
customColor: '自定义颜色',
|
|
asyncOptions: '异步加载选项',
|
|
asyncOptions1: [
|
|
{
|
|
text: '浙江省',
|
|
value: '330000',
|
|
children: [],
|
|
},
|
|
],
|
|
asyncOptions2: [
|
|
{ text: '杭州市', value: '330100' },
|
|
{ text: '宁波市', value: '330200' },
|
|
],
|
|
customFieldNames: '自定义字段名',
|
|
},
|
|
'en-US': {
|
|
area: 'Area',
|
|
options: enUSOptions,
|
|
selectArea: 'Select Area',
|
|
customColor: 'Custom Color',
|
|
asyncOptions: 'Async Options',
|
|
asyncOptions1: [
|
|
{
|
|
text: 'Zhejiang',
|
|
value: '330000',
|
|
children: [],
|
|
},
|
|
],
|
|
asyncOptions2: [
|
|
{ text: 'Hangzhou', value: '330100' },
|
|
{ text: 'Ningbo', value: '330200' },
|
|
],
|
|
customFieldNames: 'Custom Field Names',
|
|
},
|
|
};
|
|
|
|
type StateItem = {
|
|
show: boolean;
|
|
value: string | number | null;
|
|
result: string;
|
|
options?: CascaderOption[];
|
|
};
|
|
|
|
export default {
|
|
setup() {
|
|
const t = useTranslate(i18n);
|
|
const state = reactive<Record<string, StateItem>>({
|
|
base: {
|
|
show: false,
|
|
value: '',
|
|
result: '',
|
|
},
|
|
customColor: {
|
|
show: false,
|
|
value: null,
|
|
result: '',
|
|
},
|
|
async: {
|
|
show: false,
|
|
value: null,
|
|
result: '',
|
|
options: t('asyncOptions1'),
|
|
},
|
|
customFieldNames: {
|
|
show: false,
|
|
value: null,
|
|
result: '',
|
|
},
|
|
});
|
|
|
|
const fieldNames = {
|
|
text: 'name',
|
|
value: 'code',
|
|
children: 'items',
|
|
};
|
|
|
|
const customFieldOptions = computed(() => {
|
|
const options = deepClone(t('options'));
|
|
const adjustFieldName = (item: CascaderOption) => {
|
|
if ('text' in item) {
|
|
item.name = item.text;
|
|
delete item.text;
|
|
}
|
|
if ('value' in item) {
|
|
item.code = item.value;
|
|
delete item.value;
|
|
}
|
|
if ('children' in item) {
|
|
item.items = item.children;
|
|
delete item.children;
|
|
item.items.forEach(adjustFieldName);
|
|
}
|
|
};
|
|
options.forEach(adjustFieldName);
|
|
return options;
|
|
});
|
|
|
|
const loadDynamicOptions = ({ value }: CascaderOption) => {
|
|
if (value === '330000') {
|
|
setTimeout(() => {
|
|
state.async.options![0].children = t('asyncOptions2');
|
|
}, 500);
|
|
}
|
|
};
|
|
|
|
const onFinish = (
|
|
type: string,
|
|
{
|
|
value,
|
|
selectedOptions,
|
|
}: { value: number | string; selectedOptions: CascaderOption[] }
|
|
) => {
|
|
const result = selectedOptions
|
|
.map((option) => option.text || option.name)
|
|
.join('/');
|
|
|
|
state[type] = {
|
|
...state[type],
|
|
show: false,
|
|
value,
|
|
result,
|
|
};
|
|
};
|
|
|
|
return {
|
|
...toRefs(state),
|
|
t,
|
|
onFinish,
|
|
fieldNames,
|
|
customFieldOptions,
|
|
loadDynamicOptions,
|
|
};
|
|
},
|
|
};
|
|
</script>
|