Merge pull request 'fix : 样式修改' (#298) from dengjie into dev
Reviewed-on: http://git.feashow.cn/clay/tunnel-cloud-web/pulls/298
This commit is contained in:
@@ -106,7 +106,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div class="device-table">
|
<div class="device-table">
|
||||||
<el-table stripe
|
<el-table stripe v-loading="loading"
|
||||||
style="background-color: #011c29;--el-table-border-color: none;"
|
style="background-color: #011c29;--el-table-border-color: none;"
|
||||||
:header-cell-style="{backgroundColor: '#064B66',color: '#fff',fontSize: '40px',borderBottom: 'none' }"
|
:header-cell-style="{backgroundColor: '#064B66',color: '#fff',fontSize: '40px',borderBottom: 'none' }"
|
||||||
:data="alarmList">
|
:data="alarmList">
|
||||||
@@ -183,7 +183,7 @@ const isDetailVisited = ref(false);
|
|||||||
const showFan = ref(false);
|
const showFan = ref(false);
|
||||||
const drawerLeft = ref(true);
|
const drawerLeft = ref(true);
|
||||||
const showTunnelTitle = ref(true);
|
const showTunnelTitle = ref(true);
|
||||||
// const loading = ref(false);
|
const loading = ref(false);
|
||||||
const initialIndex = ref(0)
|
const initialIndex = ref(0)
|
||||||
const showFanLoading = ref(0)
|
const showFanLoading = ref(0)
|
||||||
const showWindLoading = ref(0)
|
const showWindLoading = ref(0)
|
||||||
@@ -326,14 +326,14 @@ const handleChangeState = (row) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
const getAlarmList = () => {
|
const getAlarmList = () => {
|
||||||
// loading.value = true
|
loading.value = true
|
||||||
getAlarmInfo({
|
getAlarmInfo({
|
||||||
tunnelId: tunnelId.value,
|
tunnelId: tunnelId.value,
|
||||||
lookupStatus: queryParams.lookupStatus,
|
lookupStatus: queryParams.lookupStatus,
|
||||||
...pageInfo
|
...pageInfo
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code === 1000) {
|
if (res.code === 1000) {
|
||||||
// loading.value = false
|
loading.value = false
|
||||||
alarmList.value = res.data.rows
|
alarmList.value = res.data.rows
|
||||||
total.value = res.data.total
|
total.value = res.data.total
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user