Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sukbearai committed Sep 7, 2024
1 parent 97f3101 commit 47ec859
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/pages/index/components/left-bottom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ onMounted(() => {
</script>

<template>
<div class="left_boottom_wrap beautify-scroll-def" :class="{ 'overflow-y-auto': !indexConfig.leftBottomSwiper }">
<div class="beautify-scroll-def left_boottom_wrap" :class="{ 'overflow-y-auto': !indexConfig.leftBottomSwiper }">
<component
:is="comName"
v-model="state.scroll"
Expand Down
2 changes: 1 addition & 1 deletion app/pages/index/components/right-bottom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ onMounted(() => {
<div class="flex">
<div class="info">
<span class="labels">设备ID:</span>
<span class="text-content zhuyao"> {{ item.gatewayno }}</span>
<span class="zhuyao text-content"> {{ item.gatewayno }}</span>
</div>
<div class="info">
<span class="labels">型号:</span>
Expand Down
4 changes: 3 additions & 1 deletion app/utils/web-channel.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,9 @@ function QObject(name, data, webChannel) {

data.properties.forEach(bindGetterSetter)

data.signals.forEach((signal) => { addSignal(signal, false) })
data.signals.forEach((signal) => {
addSignal(signal, false)
})

for (const name in data.enums) {
object[name] = data.enums[name]
Expand Down

0 comments on commit 47ec859

Please sign in to comment.