1
This commit is contained in:
41
uview-plus/components/u-row-notice/props.js
Normal file
41
uview-plus/components/u-row-notice/props.js
Normal file
@@ -0,0 +1,41 @@
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import defProps from '../../libs/config/props.js'
|
||||
export const props = defineMixin({
|
||||
props: {
|
||||
// 显示的内容,字符串
|
||||
text: {
|
||||
type: String,
|
||||
default: () => defProps.rowNotice.text
|
||||
},
|
||||
// 是否显示左侧的音量图标
|
||||
icon: {
|
||||
type: String,
|
||||
default: () => defProps.rowNotice.icon
|
||||
},
|
||||
// 通告模式,link-显示右箭头,closable-显示右侧关闭图标
|
||||
mode: {
|
||||
type: String,
|
||||
default: () => defProps.rowNotice.mode
|
||||
},
|
||||
// 文字颜色,各图标也会使用文字颜色
|
||||
color: {
|
||||
type: String,
|
||||
default: () => defProps.rowNotice.color
|
||||
},
|
||||
// 背景颜色
|
||||
bgColor: {
|
||||
type: String,
|
||||
default: () => defProps.rowNotice.bgColor
|
||||
},
|
||||
// 字体大小,单位px
|
||||
fontSize: {
|
||||
type: [String, Number],
|
||||
default: () => defProps.rowNotice.fontSize
|
||||
},
|
||||
// 水平滚动时的滚动速度,即每秒滚动多少px(rpx),这有利于控制文字无论多少时,都能有一个恒定的速度
|
||||
speed: {
|
||||
type: [String, Number],
|
||||
default: () => defProps.rowNotice.speed
|
||||
}
|
||||
}
|
||||
})
|
||||
21
uview-plus/components/u-row-notice/rowNotice.js
Normal file
21
uview-plus/components/u-row-notice/rowNotice.js
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* @Author : LQ
|
||||
* @Description :
|
||||
* @version : 1.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : LQ
|
||||
* @lastTime : 2021-08-20 17:19:13
|
||||
* @FilePath : /u-view2.0/uview-ui/libs/config/props/rowNotice.js
|
||||
*/
|
||||
export default {
|
||||
// rowNotice
|
||||
rowNotice: {
|
||||
text: '',
|
||||
icon: 'volume',
|
||||
mode: '',
|
||||
color: '#f9ae3d',
|
||||
bgColor: '#fdf6ec',
|
||||
fontSize: 14,
|
||||
speed: 80
|
||||
}
|
||||
}
|
||||
337
uview-plus/components/u-row-notice/u-row-notice.vue
Normal file
337
uview-plus/components/u-row-notice/u-row-notice.vue
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user