v1.4 版本发布,修复bug、优化细节、新增定时任务管理,详细信息查看发行版说明

This commit is contained in:
郑杰
2019-01-08 17:01:08 +08:00
parent ff0c36b5d4
commit 7afe6a2129
25 changed files with 522 additions and 8435 deletions

View File

@@ -0,0 +1,36 @@
<template>
<div>
<el-button size="mini" type="text" @click="to">编辑</el-button>
<eForm ref="form" :sup_this="sup_this" :is-add="false"/>
</div>
</template>
<script>
import eForm from './form'
export default {
components: { eForm },
props: {
data: {
type: Object,
required: true
},
sup_this: {
type: Object,
required: true
}
},
methods: {
to() {
const _this = this.$refs.form
_this.form = { id: this.data.id, jobName: this.data.jobName, beanName: this.data.beanName, methodName: this.data.methodName, params: this.data.params, cronExpression: this.data.cronExpression, isPause: this.data.isPause.toString(), remark: this.data.remark }
_this.dialog = true
}
}
}
</script>
<style scoped>
div{
display: inline-block;
margin-right: 3px;
}
</style>