mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 10:18:42 +08:00 
			
		
		
		
	使用 uview 重构实际登陆
This commit is contained in:
		
							
								
								
									
										24
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-gap/props.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-gap/props.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| export default { | ||||
|     props: { | ||||
|         // 背景颜色(默认transparent) | ||||
|         bgColor: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.gap.bgColor | ||||
|         }, | ||||
|         // 分割槽高度,单位px(默认30) | ||||
|         height: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.gap.height | ||||
|         }, | ||||
|         // 与上一个组件的距离 | ||||
|         marginTop: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.gap.marginTop | ||||
|         }, | ||||
|         // 与下一个组件的距离 | ||||
|         marginBottom: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.gap.marginBottom | ||||
|         } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										38
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-gap/u-gap.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-gap/u-gap.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| <template> | ||||
| 	<view class="u-gap" :style="[gapStyle]"></view> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| 	import props from './props.js'; | ||||
| 	/** | ||||
| 	 * gap 间隔槽 | ||||
| 	 * @description 该组件一般用于内容块之间的用一个灰色块隔开的场景,方便用户风格统一,减少工作量 | ||||
| 	 * @tutorial https://www.uviewui.com/components/gap.html | ||||
| 	 * @property {String}			bgColor			背景颜色 (默认 'transparent' ) | ||||
| 	 * @property {String | Number}	height			分割槽高度,单位px (默认 20 ) | ||||
| 	 * @property {String | Number}	marginTop		与前一个组件的距离,单位px( 默认 0 ) | ||||
| 	 * @property {String | Number}	marginBottom	与后一个组件的距离,单位px (默认 0 ) | ||||
| 	 * @property {Object}			customStyle		定义需要用到的外部样式 | ||||
| 	 *  | ||||
| 	 * @example <u-gap height="80" bg-color="#bbb"></u-gap> | ||||
| 	 */ | ||||
| 	export default { | ||||
| 		name: "u-gap", | ||||
| 		mixins: [uni.$u.mpMixin, uni.$u.mixin,props], | ||||
| 		computed: { | ||||
| 			gapStyle() { | ||||
| 				const style = { | ||||
| 					backgroundColor: this.bgColor, | ||||
| 					height: uni.$u.addUnit(this.height), | ||||
| 					marginTop: uni.$u.addUnit(this.marginTop), | ||||
| 					marginBottom: uni.$u.addUnit(this.marginBottom), | ||||
| 				} | ||||
| 				return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle)) | ||||
| 			} | ||||
| 		} | ||||
| 	}; | ||||
| </script> | ||||
|  | ||||
| <style lang="scss" scoped> | ||||
| 	@import "../../libs/css/components.scss"; | ||||
| </style> | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV