code init

This commit is contained in:
chenxiaoxi
2021-05-25 18:06:45 +08:00
parent 02698d6dab
commit f54a8d4fa1
1367 changed files with 540755 additions and 21713 deletions
File diff suppressed because it is too large Load Diff
+55
View File
@@ -0,0 +1,55 @@
# 组件相关
## twoOption
搜索字段
```
{
label: '计划状态',
value: 'access_content',
type: 'INPUT', // 搜索字段的类型
disabled: false,
selVal: '' // 特殊组件会使用到
}
```
### type
- SEL_OPTION
- SEL_OPTS
- DATE_PIC_OPTS
- INPUT
### selVal
#### SEL_OPTION
- ORGLIST
- USERLIST
- ROLELIST
#### SEL_OPTS
- ORGLIST
- USERLIST
- ROLELIST
- SVPPS
## threeOptions
搜索字段对应的选项
```javascript
[
{
label: '未发布',
value: '1'
},
{
label: '已发布',
value: '2'
},
]
```