lhl 169f162bfc end | 1 week ago | |
---|---|---|
.. | ||
components | 1 week ago | |
changelog.md | 1 week ago | |
package.json | 1 week ago | |
readme.md | 1 week ago |
HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。简单实用,代码就100行,支持扩展,小巧美观,滚动速度有快中慢三档,如果不满意可以自行调整
http://kangleyunju.gitee.io/uniapp
默认垂直滚动
<xzw-notice :list="list"/>
不同主题色theme
<xzw-notice theme="error" direction="row" speed="slow" :list="list"/>
水平滚动
<xzw-notice theme="info" direction="row" :list="list"/>
滚动速度,快中慢三档,fast,normal,slow
<xzw-notice theme="primary" :list="list" theKey="title" speed="fast" direction="row"/>
点击公告,点击更多触发事件
<xzw-notice theme="warning" :list="list" @goItem="goItem" @goMore="goMore" />
绑定公告数组,默认取每一项的title字段,可以通过theKey改变读取的字段
<xzw-notice theme="success" :list="list" theKey="title" speed="fast"/>
是否显示左侧喇叭,是否显示右侧更多
<xzw-notice theme="primary" :list="list" theKey="title" :showIcon="false" :showMore="false" speed="slow"/>
|属性名 |类型 |默认值 |说明 |
|:-: |:-: |:-: |:-: |
|list |Array |[] |公告数组 |
|theme |String |default |主题色 |
|showIcon |Boolean |true |是否显示左侧喇叭 |
|showMore |Boolean |true |是否显示右侧更多 |
|theKey |String |title |公告数组的键名 |
|direction |String |column |滚动的方向 |
|speed |String |normal |滚动速度 |
事件称名 | 说明 | 返回值 |
---|---|---|
@goItem | 点击公告 | - |
@goMore | 点击更多 | - |