新增 消息定时推送功能
This commit is contained in:
@@ -71,6 +71,7 @@
|
||||
<el-select {% raw %}v-model="searchForm.status" {% endraw %} placeholder="全部状态" clearable>
|
||||
<el-option label="草稿" value="draft"></el-option>
|
||||
<el-option label="已排期" value="scheduled"></el-option>
|
||||
<el-option label="运行中" value="running"></el-option>
|
||||
<el-option label="已暂停" value="paused"></el-option>
|
||||
<el-option label="已完成" value="completed"></el-option>
|
||||
<el-option label="失败" value="failed"></el-option>
|
||||
@@ -719,6 +720,7 @@ new Vue({
|
||||
const typeMap = {
|
||||
'draft': 'info',
|
||||
'scheduled': 'success',
|
||||
'running': 'warning',
|
||||
'paused': 'warning',
|
||||
'completed': '',
|
||||
'failed': 'danger'
|
||||
@@ -729,6 +731,7 @@ new Vue({
|
||||
const textMap = {
|
||||
'draft': '草稿',
|
||||
'scheduled': '已排期',
|
||||
'running': '运行中',
|
||||
'paused': '已暂停',
|
||||
'completed': '已完成',
|
||||
'failed': '失败'
|
||||
@@ -739,6 +742,7 @@ new Vue({
|
||||
const statusMap = {
|
||||
'completed': 'success',
|
||||
'failed': 'exception',
|
||||
'running': 'warning',
|
||||
'scheduled': 'warning',
|
||||
'paused': 'info'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user