diff --git a/src/views/AutomaticMode/index.vue b/src/views/AutomaticMode/index.vue index 652d32d..69b8e66 100644 --- a/src/views/AutomaticMode/index.vue +++ b/src/views/AutomaticMode/index.vue @@ -679,6 +679,20 @@ const delMode = () => { gap: 10px; height: 100%; + &::-webkit-scrollbar { + width: 32px; + /* 滚动条宽度 */ + height: 22px; + /* 滚动条高度 */ + } + + &::-webkit-scrollbar-thumb { + background-color: darkgrey; + /* 滚动条滑块颜色 */ + border-radius: 10px; + /* 滑块圆角 */ + } + .time { width: 100px; border-left: 1px solid #ccc; diff --git a/src/views/HandleControl/index.vue b/src/views/HandleControl/index.vue index 6193321..0993fef 100644 --- a/src/views/HandleControl/index.vue +++ b/src/views/HandleControl/index.vue @@ -398,6 +398,7 @@ RPC.post('/m9z/getDeviceSunRiseTime', { comm_uid: commit_uid }).then(res => { isSync.value = false }, 1000); }).finally(() => { + isInitData.value = false RPC.post('/adl400/readPhaseData', { comm_uid: commit_uid }).then(res => { powerPhases.value[0].voltage = res.aVoltage + 'V' powerPhases.value[0].current = res.aElectricCurrent + 'A'