| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*******************************************************************************
- * Copyright(c) 2022 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:
- * 2.功能描述:用于将内容分隔为多个区域
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * admin 2022-11-17 1.00 新建
- *******************************************************************************/
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- // 样式
- style:String,
- //高度
- height: {
- type: String,
- value: '2rpx',
- },
- //背景色
- backgroundColor: {
- type: String,
- value: '#e0e1e2'
- },
- //上边距
- marginTop: {
- type: String,
- value: '15rpx'
- },
- //下边距
- marginBottom: {
- type: String,
- value: '15rpx'
- },
-
- },
- /**
- * 组件的选项
- */
- options: {
- addGlobalClass: true,
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|