You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 years ago | |
---|---|---|
.. | ||
code | 4 years ago | |
customer | 4 years ago | |
dataReport | 4 years ago | |
miniPro | 4 years ago | |
pcWork | 4 years ago | |
productConfig | 4 years ago | |
columns.js | 4 years ago | |
readme.js | 4 years ago |
readme.js
/**
* js属性说明
*/
export default {
mokuaiguanli: [
{
key: 'resourcename', //属性key,对应数据库字段名称
title: '模块名称', //属性中文名
type: 'input', //组件类型
rule: [
//组件规则
{
required: true, //是否必填
message: '请输入模块名称', //没有填写时的提示信息
pattern: app.util.validateForm('phone'), //根据一定规则进行判断
trigger: 'blur'
}
],
display: ['formA', 'formU', 'table', 'model'], //需要显示该组件的模块
fixed: true, //
width: 80,
showFlag: '1', //需要判断显隐的标识
show: true //需要显隐控制,默认为显示
}
]
}