2
0

fix:所有界面按钮风格统一

This commit is contained in:
zhongzm
2025-02-11 18:12:13 +08:00
parent 32aa82a599
commit eb883385e8
10 changed files with 18 additions and 11 deletions

View File

@@ -94,8 +94,15 @@ const orderStatusOptions =computed(()=> [
</AFormItem>
<AFormItem class="flex-1 justify-end">
<ASpace>
<AButton @click="handleReset">{{ t('page.bill.reset') }}</AButton>
<AButton type="primary" @click="handleSearch">{{ t('page.bill.search') }}</AButton>
<AButton type="primary" ghost @click="handleSearch">
<template #icon>
<icon-mdi-search />
</template>
{{ t('page.bill.search') }}</AButton>
<AButton @click="handleReset">
<template #icon>
<icon-mdi-refresh />
</template>{{ t('page.bill.reset') }}</AButton>
</ASpace>
</AFormItem>
</AForm>