新增设置默认显示类型、显示名字、排列顺序

This commit is contained in:
chuzhongzai
2024-09-01 19:17:01 +08:00
parent bb6e7c2874
commit b0730f5114
3 changed files with 53 additions and 9 deletions
+9 -3
View File
@@ -104,9 +104,15 @@ let inputNode = ref(null)
//是否正在编辑页数
let isEditingPage = ref(false)
let category = ref("myDownload") //myDownload myCollect total
let galleryNameType = ref("shortName") // shortName name
let sortType = ref("shortName") // shortName name createTime
let category = computed(() => {
return store.state.category
})
let galleryNameType = computed(() => {
return store.state.galleryNameType
})
let sortType = computed(() => {
return store.state.sortType
})
let targetPage = ref(1) // 当前页数
let username = computed(() => {
return store.state.username