1
2
3
4
5
6
7
8
9
10
11
12
13
| export const openDataProps = {
| detailed: { default: false, type: Boolean },
| disabled: { default: false, type: Boolean },
| placeholder: { default: '系统自动生成', type: String },
| /**
| * currUser - 当前用户
| * currTime - 当前时间
| * currOrganize - 所属组织
| * currPosition - 所属岗位
| */
| type: { default: 'currUser', type: String },
| value: { default: '', type: String },
| };
|
|