mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 18:28:43 +08:00 
			
		
		
		
	多模块重构 12:修改项目名字,按照新的规则
This commit is contained in:
		
							
								
								
									
										109
									
								
								yudao-ui-app-v1/uni_modules/uview-ui/components/u-cell/props.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										109
									
								
								yudao-ui-app-v1/uni_modules/uview-ui/components/u-cell/props.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,109 @@ | ||||
| export default { | ||||
|     props: { | ||||
|         // 标题 | ||||
|         title: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.cell.title | ||||
|         }, | ||||
|         // 标题下方的描述信息 | ||||
|         label: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.cell.label | ||||
|         }, | ||||
|         // 右侧的内容 | ||||
|         value: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.cell.value | ||||
|         }, | ||||
|         // 左侧图标名称,或者图片链接(本地文件建议使用绝对地址) | ||||
|         icon: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.icon | ||||
|         }, | ||||
|         // 标题的宽度,单位任意,数值默认为px单位 | ||||
|         titleWidth: { | ||||
|             type: [String, Number], | ||||
|             default: uni.$u.props.cell.titleWidth | ||||
|         }, | ||||
|         // 是否禁用cell | ||||
|         disabled: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.disabled | ||||
|         }, | ||||
|         // 是否显示下边框 | ||||
|         border: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.border | ||||
|         }, | ||||
|         // 内容是否垂直居中(主要是针对右侧的value部分) | ||||
|         center: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.center | ||||
|         }, | ||||
|         // 点击后跳转的URL地址 | ||||
|         url: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.url | ||||
|         }, | ||||
|         // 链接跳转的方式,内部使用的是uView封装的route方法,可能会进行拦截操作 | ||||
|         linkType: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.linkType | ||||
|         }, | ||||
|         // 是否开启点击反馈(表现为点击时加上灰色背景) | ||||
|         clickable: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.clickable | ||||
|         }, | ||||
|         // 是否展示右侧箭头并开启点击反馈 | ||||
|         isLink: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.isLink | ||||
|         }, | ||||
|         // 是否显示表单状态下的必填星号(此组件可能会内嵌入input组件) | ||||
|         required: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.required | ||||
|         }, | ||||
|         // 右侧的图标箭头 | ||||
|         rightIcon: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.rightIcon | ||||
|         }, | ||||
|         // 右侧箭头的方向,可选值为:left,up,down | ||||
|         arrowDirection: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.arrowDirection | ||||
|         }, | ||||
|         // 左侧图标样式 | ||||
|         iconStyle: { | ||||
|             type: Object, | ||||
|             default: () => {} | ||||
|         }, | ||||
|         // 右侧箭头图标的样式 | ||||
|         rightIconStyle: { | ||||
|             type: Object, | ||||
|             default: () => uni.$u.props.cell.rightIconStyle | ||||
|         }, | ||||
|         // 标题的样式 | ||||
|         titleStyle: { | ||||
|             type: Object, | ||||
|             default: () => uni.$u.props.cell.titleStyle | ||||
|         }, | ||||
|         // 单位元的大小,可选值为large | ||||
|         size: { | ||||
|             type: String, | ||||
|             default: uni.$u.props.cell.size | ||||
|         }, | ||||
|         // 点击cell是否阻止事件传播 | ||||
|         stop: { | ||||
|             type: Boolean, | ||||
|             default: uni.$u.props.cell.stop | ||||
|         }, | ||||
|         // 标识符,cell被点击时返回 | ||||
|         name: { | ||||
|             type: [Number, String], | ||||
|             default: uni.$u.props.cell.name | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV