升级:1、增加界面夜间模式
2、qtask 功能交互升级
3、mysql连接管理增加心跳保活
4、其他修改
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<div class="col-xs-6">
|
||||
<div class="input-group">
|
||||
<span class="input-group-btn">
|
||||
<a href="javascript:;" class="btn" type="button"> 选择QTask任务</a>
|
||||
<a class="btn btn-default" type="button"> 选择QTask任务</a>
|
||||
</span>
|
||||
<select class="form-control" v-model="row">
|
||||
<option v-for="item in list.rows" :value="item" v-text="`${item.name}--${item.title}`"></option>
|
||||
@@ -26,7 +26,7 @@
|
||||
<div class="form-group">
|
||||
<label for="para" class="col-sm-2 required">数据平台</label>
|
||||
<div class="col-md-6">
|
||||
<select v-model="row.dbPlatId" class="form-control">
|
||||
<select v-model="row.dbplatid" class="form-control">
|
||||
<option></option>
|
||||
<option v-for="item in dbPlats" :value="item.key" v-text="item.name"></option>
|
||||
</select>
|
||||
@@ -87,7 +87,7 @@
|
||||
catalogs: function () {
|
||||
let dbPlats = this.dbPlats;
|
||||
for (i in dbPlats) {
|
||||
if (dbPlats[i].key == this.row.dbPlatId) {
|
||||
if (dbPlats[i].key == this.row.dbplatid) {
|
||||
return dbPlats[i]["catalogs"]
|
||||
}
|
||||
}
|
||||
@@ -104,7 +104,7 @@
|
||||
dbList().then(res => {
|
||||
this.dbPlats = res.rows;
|
||||
})
|
||||
qtaskList().then(res => {
|
||||
qtaskList({}).then(res => {
|
||||
let list = res
|
||||
|
||||
if(list && list.rows.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user