提交初始版本,使用vant ui库
This commit is contained in:
		
							
								
								
									
										39
									
								
								miniprogram_npm/@vant/weapp/button/index.wxs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								miniprogram_npm/@vant/weapp/button/index.wxs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| /* eslint-disable */ | ||||
| var style = require('../wxs/style.wxs'); | ||||
|  | ||||
| function rootStyle(data) { | ||||
|   if (!data.color) { | ||||
|     return data.customStyle; | ||||
|   } | ||||
|  | ||||
|   var properties = { | ||||
|     color: data.plain ? data.color : '#fff', | ||||
|     background: data.plain ? null : data.color, | ||||
|   }; | ||||
|  | ||||
|   // hide border when color is linear-gradient | ||||
|   if (data.color.indexOf('gradient') !== -1) { | ||||
|     properties.border = 0; | ||||
|   } else { | ||||
|     properties['border-color'] = data.color; | ||||
|   } | ||||
|  | ||||
|   return style([properties, data.customStyle]); | ||||
| } | ||||
|  | ||||
| function loadingColor(data) { | ||||
|   if (data.plain) { | ||||
|     return data.color ? data.color : '#c9c9c9'; | ||||
|   } | ||||
|  | ||||
|   if (data.type === 'default') { | ||||
|     return '#c9c9c9'; | ||||
|   } | ||||
|  | ||||
|   return '#fff'; | ||||
| } | ||||
|  | ||||
| module.exports = { | ||||
|   rootStyle: rootStyle, | ||||
|   loadingColor: loadingColor, | ||||
| }; | ||||
		Reference in New Issue
	
	Block a user