diff --git a/src/components/cloud/CloudEditModal.vue b/src/components/cloud/CloudEditModal.vue index ebf267b..41aafe8 100644 --- a/src/components/cloud/CloudEditModal.vue +++ b/src/components/cloud/CloudEditModal.vue @@ -251,8 +251,8 @@ watch(() => props.initialValue, value => {
当前进度
diff --git a/src/components/cloud/MapPickerModal.vue b/src/components/cloud/MapPickerModal.vue index a30fb76..3a6373f 100644 --- a/src/components/cloud/MapPickerModal.vue +++ b/src/components/cloud/MapPickerModal.vue @@ -194,11 +194,12 @@ onBeforeUnmount(() => {{{ footerText }}
共 {{ pendingImages.length }} 张待处理图片。
{{ item.description || '没有图片说明。' }}
换个云型筛选试试,或者等社区上传更多作品。
@@ -576,6 +577,7 @@ onUnmounted(() => { secondary strong :disabled="currentPage <= 1" + class="oc-panel-button oc-panel-button--neutral" @click="goToPage(currentPage - 1)" > 上一页 @@ -586,7 +588,8 @@ onUnmounted(() => { v-if="page === 1 || page === totalPages || Math.abs(page - currentPage) <= 2" secondary strong - :type="page === currentPage ? 'primary' : 'default'" + :class="page === currentPage ? 'oc-panel-button oc-panel-button--sky' : 'oc-panel-button oc-panel-button--neutral'" + type="default" @click="goToPage(page)" > {{ page }} @@ -601,6 +604,7 @@ onUnmounted(() => { secondary strong :disabled="currentPage >= totalPages" + class="oc-panel-button oc-panel-button--neutral" @click="goToPage(currentPage + 1)" > 下一页 diff --git a/src/views/profile/ProfileSettingsView.vue b/src/views/profile/ProfileSettingsView.vue index a27a6a7..0ff79cc 100644 --- a/src/views/profile/ProfileSettingsView.vue +++ b/src/views/profile/ProfileSettingsView.vue @@ -82,7 +82,7 @@ async function savePassword() {公开贡献
{{ approvedShots }}
当前公开可见的云图数量
@@ -585,12 +585,12 @@ watch(selectedUploadDate, async newValue => {总拍摄数
{{ totalShots }}
最常拍云型
{{ mostCommonCloudType.name }}
@@ -598,12 +598,12 @@ watch(selectedUploadDate, async newValue => {
拍摄天数
{{ shootingDays }}
{{ isOwnProfile ? '已通过 / 待审核' : '公开通过数' }}
{{ approvedShots }} / {{ pendingShots }}
@@ -639,7 +639,8 @@ watch(selectedUploadDate, async newValue => {
v-if="isOwnProfile && selectedCloudCount"
secondary
strong
- type="error"
+ type="default"
+ class="oc-panel-button oc-panel-button--danger"
@click="deleteCloudByIds(Array.from(selectedCloudIds))"
>
删除已选 {{ selectedCloudCount }}
@@ -648,23 +649,25 @@ watch(selectedUploadDate, async newValue => {
v-if="isOwnProfile"
secondary
strong
+ class="oc-panel-button oc-panel-button--neutral"
@click="toggleSelectionMode"
>
{{ selectionMode ? '取消选择' : '选择图片' }}
-
共 {{ items.length }} 张图片