master
xy 3 years ago
parent 95e24a0d30
commit 53d2ef8725

@ -194,6 +194,24 @@ export default {
); );
}, },
}, },
{
label: "排序",
width: 120,
customFn: (row) => {
return (
<el-input-number
style="width:80px;"
controls={false}
min={0}
precision={0}
v-model={row.sort}
placeholder="排序"
size="small"
disabled={this.flag.indexOf(row.name)!== -1}
></el-input-number>
);
}
},
{ {
label: "说明", label: "说明",
minWidth: 240, minWidth: 240,
@ -410,6 +428,7 @@ export default {
name: "", name: "",
type: "", type: "",
student_query: 0, student_query: 0,
sort: "",
remark: "", remark: "",
template_id: this.id, template_id: this.id,
}); });

Loading…
Cancel
Save