Files
frontend-app/uni_modules/uview-plus/components/u-tabs/tabs.js
T

35 lines
730 B
JavaScript
Raw Normal View History

2025-08-05 15:25:23 +08:00
/*
* @Author : LQ
* @Description :
2026-07-23 14:31:06 +08:00
* @version : 3.0
2025-08-05 15:25:23 +08:00
* @Date : 2021-08-20 16:44:21
2026-07-23 14:31:06 +08:00
* @LastAuthor : jry
* @lastTime : 2025-12-19 08:55:21
* @FilePath : /uview-plus/libs/config/props/tabs.js
2025-08-05 15:25:23 +08:00
*/
export default {
//
tabs: {
duration: 300,
list: [],
2026-07-23 14:31:06 +08:00
lineColor: '',
2025-08-05 15:25:23 +08:00
activeStyle: {
color: '#303133'
},
inactiveStyle: {
color: '#606266'
},
lineWidth: 20,
lineHeight: 3,
lineBgSize: 'cover',
itemStyle: {
height: '44px'
},
2026-07-23 14:31:06 +08:00
scrollable: true,
current: 0,
keyName: 'name',
iconStyle: {},
shapeMode: ''
}
}