style: 调整工作台样式错乱

This commit is contained in:
kailong321200875 2023-04-18 18:31:31 +08:00
parent 962689a8bd
commit cc18f297ef
1 changed files with 17 additions and 15 deletions

View File

@ -123,7 +123,7 @@ const { t } = useI18n()
class="w-70px h-70px rounded-[50%] mr-20px" class="w-70px h-70px rounded-[50%] mr-20px"
/> />
<div> <div>
<div class="text-20px text-700"> <div class="text-20px">
{{ t('workplace.goodMorning') }}Archer{{ t('workplace.happyDay') }} {{ t('workplace.goodMorning') }}Archer{{ t('workplace.happyDay') }}
</div> </div>
<div class="mt-10px text-14px text-gray-500"> <div class="mt-10px text-14px text-gray-500">
@ -243,20 +243,22 @@ const { t } = useI18n()
<span>{{ t('workplace.shortcutOperation') }}</span> <span>{{ t('workplace.shortcutOperation') }}</span>
</template> </template>
<ElSkeleton :loading="loading" animated> <ElSkeleton :loading="loading" animated>
<ElCol <ElRow>
v-for="item in 9" <ElCol
:key="`card-${item}`" v-for="item in 9"
:xl="12" :key="`card-${item}`"
:lg="12" :xl="12"
:md="12" :lg="12"
:sm="24" :md="12"
:xs="24" :sm="24"
class="mb-10px" :xs="24"
> class="mb-10px"
<ElLink type="default" :underline="false"> >
{{ t('workplace.operation') }}{{ item }} <ElLink type="default" :underline="false">
</ElLink> {{ t('workplace.operation') }}{{ item }}
</ElCol> </ElLink>
</ElCol>
</ElRow>
</ElSkeleton> </ElSkeleton>
</ElCard> </ElCard>