diff --git a/example/pages/action-sheet/index.js b/example/pages/action-sheet/index.js index 68c271d1..20793b61 100644 --- a/example/pages/action-sheet/index.js +++ b/example/pages/action-sheet/index.js @@ -6,10 +6,11 @@ Page({ show2: false, show3: false, show4: false, + show5: false, action1: [ { name: '选项' }, { name: '选项' }, - { name: '选项', subname: '描述信息' } + { name: '选项', subname: '副文本' } ], action2: [ { name: '选项', color: '#07c160' }, @@ -38,5 +39,9 @@ Page({ toggleActionSheet4() { this.toggle('show4'); + }, + + toggleActionSheet5() { + this.toggle('show5'); } }); diff --git a/example/pages/action-sheet/index.wxml b/example/pages/action-sheet/index.wxml index 57da2e91..65070e34 100644 --- a/example/pages/action-sheet/index.wxml +++ b/example/pages/action-sheet/index.wxml @@ -30,10 +30,21 @@ - + 弹出菜单 + + + + + 弹出菜单 + diff --git a/packages/action-sheet/README.md b/packages/action-sheet/README.md index d8af7840..40c062bf 100644 --- a/packages/action-sheet/README.md +++ b/packages/action-sheet/README.md @@ -39,7 +39,7 @@ Page({ }, { name: '选项', - subname: '描述信息', + subname: '副文本', openType: 'share' } ] @@ -92,6 +92,18 @@ Page({ /> ``` +### 展示描述信息 + +设置`description`属性后,会在选项上方显示描述信息 + +```html + +``` + ### 展示标题栏 通过设置`title`属性展示标题栏,同时可以使用插槽自定义菜单内容 @@ -110,12 +122,13 @@ Page({ |-----------|-----------|-----------|-------------|-------------| | actions | 菜单选项 | *Array* | `[]` | - | | title | 标题 | *string* | - | - | +| description | 选项上方的描述信息 | *string* | - | 1.0.0 | | z-index | z-index 层级 | *number* | `100` | - | | cancel-text | 取消按钮文字 | *string* | - | - | -| round | 是否显示圆角 | *boolean* | `true` | 1.0.0 | | overlay | 是否显示遮罩层 | *boolean* | - | - | -| close-on-click-overlay | 点击遮罩是否关闭菜单 | *boolean* | - | - | +| round | 是否显示圆角 | *boolean* | `true` | 1.0.0 | | close-on-click-action | 是否在点击选项后关闭 | *boolean* | `true` | - | +| close-on-click-overlay | 点击遮罩是否关闭菜单 | *boolean* | - | - | | safe-area-inset-bottom | 是否为 iPhoneX 留出底部安全距离 | *boolean* | `true` | - | ### Events diff --git a/packages/action-sheet/index.less b/packages/action-sheet/index.less index cd2fcfff..625e20b5 100644 --- a/packages/action-sheet/index.less +++ b/packages/action-sheet/index.less @@ -50,6 +50,14 @@ text-align: center; } + &__description { + padding: @padding-md; + color: @action-sheet-description-color; + font-size: @action-sheet-description-font-size; + line-height: @action-sheet-description-line-height; + text-align: center; + } + &__close { position: absolute !important; top: 0; diff --git a/packages/action-sheet/index.ts b/packages/action-sheet/index.ts index 22006c74..02ed3e81 100644 --- a/packages/action-sheet/index.ts +++ b/packages/action-sheet/index.ts @@ -6,6 +6,7 @@ VantComponent({ show: Boolean, title: String, cancelText: String, + description: String, round: { type: Boolean, value: true diff --git a/packages/action-sheet/index.wxml b/packages/action-sheet/index.wxml index c5bbf685..2dcbf4f8 100644 --- a/packages/action-sheet/index.wxml +++ b/packages/action-sheet/index.wxml @@ -19,6 +19,9 @@ bind:click="onClose" /> + + {{ description }} +