This commit is contained in:
X1627315083@163.com
2026-06-01 10:40:11 +08:00
parent 965721bbdd
commit fdc5f9d095
9 changed files with 40 additions and 35 deletions

View File

@@ -177,12 +177,13 @@ defineExpose({})
--el-border-radius-base: 0;
--el-select-input-color: rgba(0, 0, 0, 0.5);
--el-select-input-font-size: 1rem;
--el-border-color: #222222;
.el-select__wrapper {
font-size: 1.07rem;
padding: 0 0.7rem;
line-height: 1;
min-height: 0;
height: 2.2rem;
height: 2.8rem;
.header-label {
font-family: KaiseiOpti-Regular;

View File

@@ -20,6 +20,7 @@ const categories = ref(['all'])
const gender = ref(['all'])
const clearFilters = () => {
if(categories.value?.[0] == 'all' && gender.value?.[0] == 'all')return
categories.value = ['all']
gender.value = ['all']
handleChange()