mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
155 lines
3.5 KiB
Vue
155 lines
3.5 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block card :title="t('basicUsage')">
|
|
<van-cell is-link :title="t('basicUsage')" @click="show.basic = true" />
|
|
<van-cell is-link :title="t('showCancel')" @click="show.cancel = true" />
|
|
<van-cell
|
|
is-link
|
|
:title="t('showDescription')"
|
|
@click="show.description = true"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block card :title="t('optionStatus')">
|
|
<van-cell
|
|
is-link
|
|
:title="t('optionStatus')"
|
|
@click="show.status = true"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block card :title="t('customPanel')">
|
|
<van-cell is-link :title="t('customPanel')" @click="show.title = true" />
|
|
</demo-block>
|
|
|
|
<van-action-sheet
|
|
v-model:show="show.basic"
|
|
:actions="simpleActions"
|
|
@select="onSelect"
|
|
/>
|
|
|
|
<van-action-sheet
|
|
v-model:show="show.cancel"
|
|
:actions="simpleActions"
|
|
close-on-click-action
|
|
:cancel-text="t('cancel')"
|
|
@cancel="onCancel"
|
|
/>
|
|
|
|
<van-action-sheet
|
|
v-model:show="show.description"
|
|
:actions="actionsWithDescription"
|
|
close-on-click-action
|
|
:cancel-text="t('cancel')"
|
|
:description="t('description')"
|
|
/>
|
|
|
|
<van-action-sheet
|
|
v-model:show="show.status"
|
|
close-on-click-action
|
|
:actions="statusActions"
|
|
:cancel-text="t('cancel')"
|
|
/>
|
|
|
|
<van-action-sheet v-model:show="show.title" :title="t('title')">
|
|
<div class="demo-action-sheet-content">{{ t('content') }}</div>
|
|
</van-action-sheet>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
import { GREEN } from '../../utils/constant';
|
|
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
option1: '选项一',
|
|
option2: '选项二',
|
|
option3: '选项三',
|
|
subname: '描述信息',
|
|
showCancel: '展示取消按钮',
|
|
buttonText: '弹出菜单',
|
|
customPanel: '自定义面板',
|
|
description: '这是一段描述信息',
|
|
optionStatus: '选项状态',
|
|
coloredOption: '着色选项',
|
|
disabledOption: '禁用选项',
|
|
showDescription: '展示描述信息',
|
|
},
|
|
'en-US': {
|
|
option1: 'Option 1',
|
|
option2: 'Option 2',
|
|
option3: 'Option 3',
|
|
subname: 'Description',
|
|
showCancel: 'Show Cancel Button',
|
|
buttonText: 'Show ActionSheet',
|
|
customPanel: 'Custom Panel',
|
|
description: 'Description',
|
|
optionStatus: 'Option Status',
|
|
coloredOption: 'Colored Option',
|
|
disabledOption: 'Disabled Option',
|
|
showDescription: 'Show Description',
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
show: {
|
|
basic: false,
|
|
cancel: false,
|
|
title: false,
|
|
status: false,
|
|
description: false,
|
|
},
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
simpleActions() {
|
|
return [
|
|
{ name: this.t('option1') },
|
|
{ name: this.t('option2') },
|
|
{ name: this.t('option3') },
|
|
];
|
|
},
|
|
|
|
actionsWithDescription() {
|
|
return [
|
|
{ name: this.t('option1') },
|
|
{ name: this.t('option2') },
|
|
{ name: this.t('option3'), subname: this.t('subname') },
|
|
];
|
|
},
|
|
|
|
statusActions() {
|
|
return [
|
|
{ name: this.t('coloredOption'), color: GREEN },
|
|
{ name: this.t('disabledOption'), disabled: true },
|
|
{ loading: true },
|
|
];
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
onSelect(item) {
|
|
this.show.basic = false;
|
|
this.$toast(item.name);
|
|
},
|
|
|
|
onCancel() {
|
|
this.$toast(this.t('cancel'));
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../../style/var';
|
|
|
|
.demo-action-sheet {
|
|
&-content {
|
|
padding: @padding-md @padding-md @padding-md * 10;
|
|
}
|
|
}
|
|
</style>
|