|
|
|
@ -85,6 +85,11 @@ export default {
|
|
|
|
|
inputType: "input",
|
|
|
|
|
label: "报表编码",
|
|
|
|
|
field: "reportCode"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
inputType: "input",
|
|
|
|
|
label: "制作人",
|
|
|
|
|
field: "reportAuthor"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// 操作按钮
|
|
|
|
@ -182,6 +187,17 @@ export default {
|
|
|
|
|
],
|
|
|
|
|
disabled: "disableOnEdit"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "制作人", //名称
|
|
|
|
|
placeholder: "",
|
|
|
|
|
field: "reportAuthor",
|
|
|
|
|
editField: "reportAuthor",
|
|
|
|
|
inputType: "input",
|
|
|
|
|
rules: [
|
|
|
|
|
{ min: 1, max: 100, message: "不超过100个字符", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
disabled: false
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "描述", //报表描述
|
|
|
|
|
placeholder: "",
|
|
|
|
|