Commit ebace7545967145ee0139c9edce7670edd3abb13

Authored by loveumiko
2 parents bbe8167d 381ac034

Merge branch 'main_dev' of http://git.yunteng.com/yunteng/thingskit-front into f…

…eat/device-new-protocol
... ... @@ -183,7 +183,6 @@
183 183 padding: 10px 4px 10px 10px;
184 184
185 185 img {
186   - width: @logo-width;
187 186 height: @logo-width;
188 187 }
189 188 }
... ...
... ... @@ -16,8 +16,8 @@
16 16 <div class="hidden min-h-full pl-4 mr-4 xl:flex xl:flex-col xl:w-6/12">
17 17 <!-- <AppLogo class="-enter-x" /> -->
18 18 <div style="display: flex; margin-top: 10px">
19   - <img v-if="defaultLogo" :src="defaultLogo" style="width: 48px; height: 48px" />
20   - <img style="width: 48px; height: 48px" v-else src="/src/assets/images/logo.png" />
  19 + <img v-if="defaultLogo" :src="defaultLogo" class="h-12" />
  20 + <img class="h-12" v-else src="/src/assets/images/logo.png" />
21 21 <div
22 22 class="ml-2 truncate md:opacity-100"
23 23 style="
... ...
... ... @@ -34,6 +34,12 @@
34 34 },
35 35 },
36 36 {
  37 + field: ComponentConfigFieldEnum.SHOW_DEVICE_NAME,
  38 + label: '显示设备名称',
  39 + component: 'Checkbox',
  40 + defaultValue: option.showDeviceName,
  41 + },
  42 + {
37 43 field: ComponentConfigFieldEnum.SHOW_TIME,
38 44 label: '显示时间',
39 45 component: 'Checkbox',
... ...