mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-01 02:38:43 +08:00 
			
		
		
		
	使用 uview 重构实际登陆
This commit is contained in:
		| @@ -0,0 +1,44 @@ | ||||
| export default { | ||||
|     props: { | ||||
|         // 显示文字 | ||||
|         title: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.alert.title | ||||
|         }, | ||||
|         // 主题,success/warning/info/error | ||||
|         type: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.alert.type | ||||
|         }, | ||||
|         // 辅助性文字 | ||||
|         description: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.alert.description | ||||
|         }, | ||||
|         // 是否可关闭 | ||||
|         closable: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.alert.closable | ||||
|         }, | ||||
|         // 是否显示图标 | ||||
|         showIcon: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.alert.showIcon | ||||
|         }, | ||||
|         // 浅或深色调,light-浅色,dark-深色 | ||||
|         effect: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.alert.effect | ||||
|         }, | ||||
|         // 文字是否居中 | ||||
|         center: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.alert.center | ||||
|         }, | ||||
|         // 字体大小 | ||||
|         fontSize: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.alert.fontSize | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV