Authored by zhangtianqi

腾讯云租户查询告警信息并增加租户的查询条件

... ... @@ -32,9 +32,9 @@
title="腾讯云租户"
:modal="false"
append-to-body
width="80%">
width="95%">
<cm-table-page :columns="tableData.columns" :dataList="tableData.dataList"
:height="height - 163"
:loading="false"
:pageSize="queryParams.pageSize"
:showBorder="false"
... ...
... ... @@ -42,8 +42,8 @@ export default {
let queryParams = Vue.ref({
tenantId:'',
resTypes:'',
pageNum:1,
pageSize:20,
page:1,
limit:20,
});
let count = Vue.ref(0);
... ... @@ -99,8 +99,8 @@ export default {
*/
const getTenantList = ()=>{
proxy.$http.get('/api-web/home/alarm/alarmListPage',queryParams.value,(res)=>{
count.value = res.data.count;
tableData.value.dataList = res.data.rows;
count.value = res.count;
tableData.value.dataList = res.data;
})
}
... ...