detail preview可以设置空颜色

This commit is contained in:
X1627315083
2025-05-08 14:09:12 +08:00
parent a4e040d0ff
commit 610e715ca7
30 changed files with 1323 additions and 6496 deletions

View File

@@ -231,4 +231,114 @@ const projectList = {
}
],
}
export {projectList}
const openTypeList = (t)=>{
return {
tools:{
icon:'fi-rr-magic-wand',
label:'Advanced tools',
value:'advancedTools',
list:[
{
icon:'',
label:'All',
value:'all',
}
]
},
library:{
icon:'fi-rr-followcollection',
label:'Library',
value:'library',
router:'/home/library',
list:[
{
icon:'fi-rr-grid',
label:t('LibraryPage.Moodboard'),
value:'Moodboard',
router:'library=Moodboard'
},{
icon:'fi-rs-objects-column',
label:t('LibraryPage.Prints'),
value:'Printboard',
router:'library=Printboard'
},{
icon:'icon iconfont icon-a-waitao_changkuanwaitao11x',
label:t('LibraryPage.Sketches'),
value:'Sketchboard',
router:'library=Sketchboard'
},{
icon:'fi-ss-puzzle-piece',
label:t('LibraryPage.DesignElements'),
value:'DesignElements',
router:'library=DesignElements'
},{
icon:'fi-rs-people',
label:t('LibraryPage.Mannequins'),
value:'Models',
router:'library=Models'
},{
icon:'fi-ss-gem',
label:t('LibraryPage.brandDNA'),
value:'MyBrand',
router:'library=MyBrand'
},
]
},
history:{
icon:'fi-br-time-past',
label:'History',
value:'history',
list:[
{
icon:'',
label:'All',
value:'all',
}
]
},
gallery:{
icon:'fi-rr-gallery',
label:'Gallery',
value:'works',
router:'/home/works',
list:[
{
icon:'',
label:'All',
value:'all',
router:'works=all'
},{
icon:'',
label:'Like Works',
value:'favoriteWorks',
router:'works=favoriteWorks'
},{
icon:'',
label:'My Works',
value:'myWorks',
router:'works=myWorks'
},{
icon:'',
label:'New Year 2025',
value:'NewYear_2025',
router:'works=NewYear_2025'
},
]
},
event:{
icon:'fi-rr-calendar-star',
label:'Event',
value:'event',
router:'/home/events',
list:[
{
icon:'',
label:'All',
value:'all',
router:''
}
]
},
}
}
export {projectList,openTypeList}