summaryrefslogtreecommitdiff
path: root/src/views/_sila/Power/Dynamic/CurrentInput.vue
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-08-08 17:27:36 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-08-08 17:27:36 +0300
commit0332cf97422e5989f466373ace45fee9babd2fb3 (patch)
tree3a48602947fd0f79145c5ae842190529b6f9b503 /src/views/_sila/Power/Dynamic/CurrentInput.vue
parent1f71e4f7800c0db4d639b42bfc0b5efa9ecc87a2 (diff)
downloadwebui-vue-0332cf97422e5989f466373ace45fee9babd2fb3.tar.xz
fix dymamic collapse
Diffstat (limited to 'src/views/_sila/Power/Dynamic/CurrentInput.vue')
-rw-r--r--src/views/_sila/Power/Dynamic/CurrentInput.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/views/_sila/Power/Dynamic/CurrentInput.vue b/src/views/_sila/Power/Dynamic/CurrentInput.vue
index d95d8e80..f3db0c75 100644
--- a/src/views/_sila/Power/Dynamic/CurrentInput.vue
+++ b/src/views/_sila/Power/Dynamic/CurrentInput.vue
@@ -1,8 +1,8 @@
<template>
<collapse
id="collapse_InputCur"
- default-open
:title="$t('pagePowerSup.InputCurrent')"
+ @opened="onOpened"
>
<template #image>
<img src="@/assets/images/_sila/collapsed/current.svg" />
@@ -169,15 +169,21 @@ export default {
this.loadData();
},
methods: {
+ onOpened(state) {
+ if (state) {
+ this.loadData();
+ }
+ },
loadData() {
let payload = { metricsName: 'psu_current', lastHour: false };
if (this.timeScale === 'hour') {
payload.lastHour = true;
}
-
+ this.startLoader();
this.$store.dispatch('powerSupply/getPsu', payload).finally(() => {
this.$root.$emit('psu-current');
this.isBusy = false;
+ this.endLoader();
});
},
},