mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[new feature] ActionSheet: add color option (#4073)
This commit is contained in:
parent
c012b29a20
commit
a75e4cfb18
@ -58,7 +58,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
show: false,
|
show: false,
|
||||||
actions: [
|
actions: [
|
||||||
{ name: 'Option' },
|
{ name: 'Option', color: '#07c160' },
|
||||||
{ loading: true },
|
{ loading: true },
|
||||||
{ name: 'Disabled Option', disabled: true }
|
{ name: 'Disabled Option', disabled: true }
|
||||||
]
|
]
|
||||||
@ -124,6 +124,7 @@ export default {
|
|||||||
|------|------|------|
|
|------|------|------|
|
||||||
| name | Title | `string` |
|
| name | Title | `string` |
|
||||||
| subname | Subtitle | `string` |
|
| subname | Subtitle | `string` |
|
||||||
|
| color | Text color | `string` |
|
||||||
| className | className for the option | `any` |
|
| className | className for the option | `any` |
|
||||||
| loading | Whether to be loading status | `boolean` |
|
| loading | Whether to be loading status | `boolean` |
|
||||||
| disabled | Whether to be disabled | `boolean` |
|
| disabled | Whether to be disabled | `boolean` |
|
||||||
|
@ -61,8 +61,8 @@ export default {
|
|||||||
return {
|
return {
|
||||||
show: false,
|
show: false,
|
||||||
actions: [
|
actions: [
|
||||||
{ name: '选项' },
|
{ name: '选项', color: '#07c160' },
|
||||||
{ name: '选项', loading: true },
|
{ loading: true },
|
||||||
{ name: '禁用选项', disabled: true }
|
{ name: '禁用选项', disabled: true }
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
@ -133,6 +133,7 @@ export default {
|
|||||||
|------|------|------|
|
|------|------|------|
|
||||||
| name | 标题 | `string` |
|
| name | 标题 | `string` |
|
||||||
| subname | 二级标题 | `string` |
|
| subname | 二级标题 | `string` |
|
||||||
|
| color | 选项文字颜色 | `string` |
|
||||||
| className | 为对应列添加额外的 class | `any` |
|
| className | 为对应列添加额外的 class | `any` |
|
||||||
| loading | 是否为加载状态 | `boolean` |
|
| loading | 是否为加载状态 | `boolean` |
|
||||||
| disabled | 是否为禁用状态 | `boolean` |
|
| disabled | 是否为禁用状态 | `boolean` |
|
||||||
|
@ -66,6 +66,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { GREEN } from '../../utils/color';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
i18n: {
|
i18n: {
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
@ -106,7 +108,7 @@ export default {
|
|||||||
|
|
||||||
statusActions() {
|
statusActions() {
|
||||||
return [
|
return [
|
||||||
{ name: this.$t('option') },
|
{ name: this.$t('option'), color: GREEN },
|
||||||
{ loading: true },
|
{ loading: true },
|
||||||
{ name: this.$t('disabledOption'), disabled: true }
|
{ name: this.$t('disabledOption'), disabled: true }
|
||||||
];
|
];
|
||||||
|
@ -12,6 +12,7 @@ import { PopupMixinProps } from '../mixins/popup/type';
|
|||||||
|
|
||||||
export type ActionSheetItem = {
|
export type ActionSheetItem = {
|
||||||
name: string;
|
name: string;
|
||||||
|
color?: string;
|
||||||
subname?: string;
|
subname?: string;
|
||||||
loading?: boolean;
|
loading?: boolean;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
@ -96,6 +97,7 @@ function ActionSheet(
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
class={[bem('item', { disabled }), item.className, 'van-hairline--top']}
|
class={[bem('item', { disabled }), item.className, 'van-hairline--top']}
|
||||||
|
style={{ color: item.color }}
|
||||||
onClick={onClickOption}
|
onClick={onClickOption}
|
||||||
>
|
>
|
||||||
{OptionContent()}
|
{OptionContent()}
|
||||||
|
@ -12,6 +12,12 @@ exports[`callback events 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`color option 1`] = `
|
||||||
|
<div class="van-popup van-popup--bottom van-action-sheet" name="van-popup-slide-bottom">
|
||||||
|
<div class="van-action-sheet__item van-hairline--top" style="color: red;"><span class="van-action-sheet__name">Option</span></div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`disable lazy-render 1`] = `
|
exports[`disable lazy-render 1`] = `
|
||||||
<div class="van-popup van-popup--bottom van-action-sheet" style="display: none;" name="van-popup-slide-bottom">
|
<div class="van-popup van-popup--bottom van-action-sheet" style="display: none;" name="van-popup-slide-bottom">
|
||||||
<div class="van-action-sheet__item van-hairline--top"><span class="van-action-sheet__name">Option</span></div>
|
<div class="van-action-sheet__item van-hairline--top"><span class="van-action-sheet__name">Option</span></div>
|
||||||
|
@ -151,3 +151,14 @@ test('round prop', () => {
|
|||||||
|
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('color option', () => {
|
||||||
|
const wrapper = mount(ActionSheet, {
|
||||||
|
propsData: {
|
||||||
|
value: true,
|
||||||
|
actions: [{ name: 'Option', color: 'red' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(wrapper).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
@ -114,7 +114,7 @@ export default {
|
|||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
|------|------|------|------|------|
|
|------|------|------|------|------|
|
||||||
| name | 标识符 | 任意类型 | - | - |
|
| name | 标识符 | `any` | - | - |
|
||||||
| shape | 形状,可选值为 `square` | `string` | `round` | 1.6.0 |
|
| shape | 形状,可选值为 `square` | `string` | `round` | 1.6.0 |
|
||||||
| disabled | 是否为禁用状态 | `boolean` | `false` | - |
|
| disabled | 是否为禁用状态 | `boolean` | `false` | - |
|
||||||
| icon-size | 图标大小,默认单位为`px` | `string | number` | `20px` | 2.0.0 |
|
| icon-size | 图标大小,默认单位为`px` | `string | number` | `20px` | 2.0.0 |
|
||||||
@ -126,7 +126,7 @@ export default {
|
|||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
|------|------|------|------|------|
|
|------|------|------|------|------|
|
||||||
| v-model | 当前选中项的标识符 | 任意类型 | - | - |
|
| v-model | 当前选中项的标识符 | `any` | - | - |
|
||||||
| disabled | 是否禁用所有单选框 | `boolean` | `false` | - |
|
| disabled | 是否禁用所有单选框 | `boolean` | `false` | - |
|
||||||
|
|
||||||
### Radio Events
|
### Radio Events
|
||||||
|
Loading…
x
Reference in New Issue
Block a user