|
@@ -119,7 +119,6 @@
|
|
|
</template>
|
|
|
<a-button
|
|
|
style="
|
|
|
- font-size: 14px;
|
|
|
color: rgba(255, 255, 255, 0.5);
|
|
|
border: none;
|
|
|
display: flex;
|
|
@@ -159,15 +158,20 @@
|
|
|
src="./images/小助手.png"
|
|
|
style="width: 10px; height: 12px; margin-right: 2px"
|
|
|
/>
|
|
|
- <span style="font-size: 14px">小助手</span>
|
|
|
+ <span>小助手</span>
|
|
|
<div class="dropdown-triangle"></div>
|
|
|
</div>
|
|
|
</a-popover>
|
|
|
<a-popover v-if="isScanImage()" trigger="hover" class="tw-cursor-pointer">
|
|
|
<template #title>
|
|
|
- <span style="color: var(--app-main-text-color); font-size: 16px"
|
|
|
- >小助手</span
|
|
|
+ <span
|
|
|
+ style="
|
|
|
+ color: var(--app-main-text-color);
|
|
|
+ font-size: var(--app-title-font-size);
|
|
|
+ "
|
|
|
>
|
|
|
+ 小助手
|
|
|
+ </span>
|
|
|
</template>
|
|
|
<template #content>
|
|
|
<table class="assistant-table">
|
|
@@ -248,7 +252,7 @@
|
|
|
src="./images/小助手.png"
|
|
|
style="width: 10px; height: 12px; margin-right: 2px"
|
|
|
/>
|
|
|
- <span style="font-size: 14px">小助手</span>
|
|
|
+ <span>小助手</span>
|
|
|
<div class="dropdown-triangle"></div>
|
|
|
</div>
|
|
|
</a-popover>
|
|
@@ -262,10 +266,7 @@
|
|
|
src="./images/分组.png"
|
|
|
style="width: 10px; height: 12px; margin-right: 2px"
|
|
|
/>
|
|
|
- <div
|
|
|
- class="tw-overflow-ellipsis tw-overflow-hidden tw-whitespace-nowrap"
|
|
|
- style="font-size: 14px"
|
|
|
- >
|
|
|
+ <div class="tw-overflow-ellipsis tw-overflow-hidden tw-whitespace-nowrap">
|
|
|
{{ "分组:" + store.setting.groupNumber }}
|
|
|
</div>
|
|
|
<div v-if="store.groups.length > 1" class="dropdown-triangle"></div>
|
|
@@ -273,7 +274,6 @@
|
|
|
<div class="tw-flex tw-gap-4">
|
|
|
<div
|
|
|
class="tw-flex tw-place-items-center tw-cursor-pointer"
|
|
|
- style="font-size: 14px"
|
|
|
@click="openProfileModal"
|
|
|
>
|
|
|
<!-- <UserOutlined /> -->
|
|
@@ -282,7 +282,6 @@
|
|
|
<div
|
|
|
class="tw-flex tw-place-items-center tw-cursor-pointer"
|
|
|
@click="logout"
|
|
|
- style="font-size: 14px"
|
|
|
>
|
|
|
<!-- <PoweroffOutlined /> -->
|
|
|
退出
|
|
@@ -470,7 +469,6 @@ watch(
|
|
|
}
|
|
|
.header-container {
|
|
|
position: relative;
|
|
|
- font-size: 16px;
|
|
|
height: 56px;
|
|
|
line-height: 16px;
|
|
|
|
|
@@ -495,11 +493,11 @@ watch(
|
|
|
line-height: 30px;
|
|
|
}
|
|
|
.header-small-text {
|
|
|
- font-size: 12px;
|
|
|
- /* line-height: 12px; */
|
|
|
+ font-size: var(--app-secondary-font-size);
|
|
|
}
|
|
|
.highlight-text {
|
|
|
color: white;
|
|
|
+ font-size: var(--app-title-font-size);
|
|
|
}
|
|
|
.header-bg-color.ant-btn:hover {
|
|
|
background-color: var(--app-ant-select-bg-override-color) !important;
|