新增设置默认显示类型、显示名字、排列顺序
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user