feat: save
This commit is contained in:
@@ -112,7 +112,7 @@ html.dark {
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1680px) {
|
||||
@media (max-width: 1720px) {
|
||||
:root {
|
||||
--toolbar-width: 50vw;
|
||||
--article-width: 50vw;
|
||||
|
||||
@@ -36,7 +36,7 @@ defineEmits(['click'])
|
||||
class="loading"
|
||||
icon="eos-icons:loading"
|
||||
width="18"
|
||||
color="#ffffff"
|
||||
:color="type === 'info'?'#000000':'#ffffff'"
|
||||
/>
|
||||
<div class="key-notice" v-if="keyboard">
|
||||
<Icon icon="bi:keyboard" width="14" color="#ffffff"/>
|
||||
@@ -121,7 +121,7 @@ defineEmits(['click'])
|
||||
|
||||
&.info {
|
||||
background: var(--btn-info);
|
||||
border: 1px solid var(--color-main-text);
|
||||
border: 1px solid var(--color-main-text);
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
|
||||
@@ -91,9 +91,9 @@ const {
|
||||
<BackIcon class="z-2" @click="$router.back"/>
|
||||
<div class="absolute text-2xl text-align-center w-full">{{ runtimeStore.editDict.name }}</div>
|
||||
<div class="flex">
|
||||
<BaseButton type="info" @click="isEdit = true">编辑</BaseButton>
|
||||
<!-- <BaseButton type="info" @click="router.push('batch-edit-article')">文章管理</BaseButton>-->
|
||||
<BaseButton :loading="studyLoading" @click="addMyStudyList">学习</BaseButton>
|
||||
<BaseButton :loading="studyLoading||loading" type="info" @click="isEdit = true">编辑</BaseButton>
|
||||
<!-- <BaseButton type="info" @click="router.push('batch-edit-article')">文章管理</BaseButton>-->
|
||||
<BaseButton :loading="studyLoading||loading" @click="addMyStudyList">学习</BaseButton>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-lg ">介绍:{{ runtimeStore.editDict.description }}</div>
|
||||
|
||||
@@ -206,8 +206,8 @@ defineRender(() => {
|
||||
<BackIcon class="z-2" onClick={() => router.back()}/>
|
||||
<div class="absolute page-title text-align-center w-full">{runtimeStore.editDict.name}</div>
|
||||
<div class="flex">
|
||||
<BaseButton type="info" onClick={() => isEdit = true}>编辑</BaseButton>
|
||||
<BaseButton loading={studyLoading} onClick={addMyStudyList}>学习</BaseButton>
|
||||
<BaseButton loading={studyLoading || loading} type="info" onClick={() => isEdit = true}>编辑</BaseButton>
|
||||
<BaseButton loading={studyLoading || loading} onClick={addMyStudyList}>学习</BaseButton>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-lg ">介绍:{runtimeStore.editDict.description}</div>
|
||||
|
||||
Reference in New Issue
Block a user