Commit ebace7545967145ee0139c9edce7670edd3abb13
Merge branch 'main_dev' of http://git.yunteng.com/yunteng/thingskit-front into f…
…eat/device-new-protocol
Showing
3 changed files
with
8 additions
and
3 deletions
| ... | ... | @@ -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', | ... | ... |