|
@@ -583,14 +583,22 @@
|
|
|
|
|
|
|
|
<section
|
|
<section
|
|
|
v-if="userStore.getUser.username"
|
|
v-if="userStore.getUser.username"
|
|
|
- class="side-card side-card--placeholder rounded-md"
|
|
|
|
|
- :style="{ minHeight: '78px', backgroundColor: '#3575e4' }"
|
|
|
|
|
|
|
+ class="side-card side-card--placeholder side-card--consult-panel rounded-md"
|
|
|
|
|
+ :style="{
|
|
|
|
|
+ minHeight: '78px',
|
|
|
|
|
+ backgroundColor:
|
|
|
|
|
+ themeStore.theme === 'light' ? '#0079ff' : '#3575e4',
|
|
|
|
|
+ }"
|
|
|
>
|
|
>
|
|
|
<div class="placeholder-panel flex flex-col text-left">
|
|
<div class="placeholder-panel flex flex-col text-left">
|
|
|
<!-- <div class="text-sm">需要帮助?</div> -->
|
|
<!-- <div class="text-sm">需要帮助?</div> -->
|
|
|
<div class="text-[10px]">{{ t("home.consultTip") }}</div>
|
|
<div class="text-[10px]">{{ t("home.consultTip") }}</div>
|
|
|
<div
|
|
<div
|
|
|
- class="bg-[#79ebfa] text-sm text-center text-[#004098] py-1 px-2 rounded-full mt-2 w-[30%] cursor-pointer"
|
|
|
|
|
|
|
+ class="consult-panel__button bg-[#79ebfa] text-sm text-center text-[#004098] py-1 px-2 rounded-full mt-2 w-[30%] cursor-pointer"
|
|
|
|
|
+ :style="{
|
|
|
|
|
+ backgroundColor:
|
|
|
|
|
+ themeStore.theme === 'light' ? '#ffffff' : '#79ebfa',
|
|
|
|
|
+ }"
|
|
|
@click="openConsult"
|
|
@click="openConsult"
|
|
|
>
|
|
>
|
|
|
{{ t("home.consult") }}
|
|
{{ t("home.consult") }}
|