fix(系统设置): 环境默认数据展示
This commit is contained in:
parent
6cd7fd617b
commit
c8143a0f1f
|
@ -119,6 +119,16 @@
|
||||||
this.list();
|
this.list();
|
||||||
},
|
},
|
||||||
httpConfig: function (o) {
|
httpConfig: function (o) {
|
||||||
|
// 历史数据处理
|
||||||
|
if (this.httpConfig && this.httpConfig.socket) {
|
||||||
|
this.condition.type = "NONE";
|
||||||
|
this.condition.socket = this.httpConfig.socket;
|
||||||
|
this.condition.protocol = this.httpConfig.protocol;
|
||||||
|
this.condition.port = this.httpConfig.port;
|
||||||
|
this.condition.domain = this.httpConfig.domain;
|
||||||
|
this.condition.time = new Date().getTime();
|
||||||
|
this.add();
|
||||||
|
}
|
||||||
this.condition = {type: "NONE", details: [new KeyValue({name: "", value: "contains"})], protocol: "http", socket: "", domain: "", port: 0};
|
this.condition = {type: "NONE", details: [new KeyValue({name: "", value: "contains"})], protocol: "http", socket: "", domain: "", port: 0};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -222,6 +232,10 @@
|
||||||
obj.details = this.condition.details ? JSON.parse(JSON.stringify(this.condition.details)) : this.condition.details;
|
obj.details = this.condition.details ? JSON.parse(JSON.stringify(this.condition.details)) : this.condition.details;
|
||||||
}
|
}
|
||||||
this.httpConfig.conditions.unshift(obj);
|
this.httpConfig.conditions.unshift(obj);
|
||||||
|
this.httpConfig.socket = null;
|
||||||
|
this.httpConfig.protocol = null;
|
||||||
|
this.httpConfig.port = null;
|
||||||
|
this.httpConfig.domain = null;
|
||||||
},
|
},
|
||||||
remove(row) {
|
remove(row) {
|
||||||
const index = this.httpConfig.conditions.findIndex((d) => d.id === row.id);
|
const index = this.httpConfig.conditions.findIndex((d) => d.id === row.id);
|
||||||
|
|
|
@ -15,18 +15,6 @@
|
||||||
@refresh="initTableData"/>
|
@refresh="initTableData"/>
|
||||||
<status-edit ref="statusEdit" :plan-id="reviewId"
|
<status-edit ref="statusEdit" :plan-id="reviewId"
|
||||||
:select-ids="new Set(Array.from(this.selectRows).map(row => row.id))" @refresh="initTableData"/>
|
:select-ids="new Set(Array.from(this.selectRows).map(row => row.id))" @refresh="initTableData"/>
|
||||||
|
|
||||||
<el-table
|
|
||||||
v-loading="result.loading"
|
|
||||||
class="adjust-table"
|
|
||||||
border
|
|
||||||
@select-all="handleSelectAll"
|
|
||||||
@filter-change="filter"
|
|
||||||
@sort-change="sort"
|
|
||||||
@select="handleSelectionChange"
|
|
||||||
row-key="id"
|
|
||||||
@row-click="showDetail"
|
|
||||||
:data="tableData">
|
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="result.loading"
|
v-loading="result.loading"
|
||||||
class="test-content adjust-table ms-select-all-fixed"
|
class="test-content adjust-table ms-select-all-fixed"
|
||||||
|
|
Loading…
Reference in New Issue