|
|
@ -152,7 +152,7 @@ |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 添加或修改${functionName}对话框 --> |
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
|
|
|
<el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body :close-on-click-modal="false"> |
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> |
|
|
|
#foreach($column in $columns) |
|
|
|
#set($field=$column.javaField) |
|
|
@ -296,8 +296,14 @@ export default { |
|
|
|
|
|
|
|
#end |
|
|
|
#end |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
// 排序方式 |
|
|
|
params: { |
|
|
|
// 按哪个字段排序 |
|
|
|
orderBy: "create_time", |
|
|
|
// desc降序,升序asc |
|
|
|
sort: "desc", |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 表单参数 |
|
|
|
form: {}, |
|
|
@ -506,3 +512,11 @@ export default { |
|
|
|
} |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
|
|
@import "@/assets/css/dialog.scss"; |
|
|
|
//::v-deep { |
|
|
|
// .el-dialog { |
|
|
|
// margin-top: 10vh !important; |
|
|
|
// } |
|
|
|
//} |
|
|
|
</style> |
|
|
|