feat: 更新按钮样式,优化用户界面交互体验

This commit is contained in:
2025-12-19 23:08:55 +07:00
parent 7dd60df82e
commit 13943eec20
4 changed files with 11 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ async function onSubmit() {
<ion-note>{{ t("recharge.fiat.note") }}</ion-note> <ion-note>{{ t("recharge.fiat.note") }}</ion-note>
<ion-button expand="block" @click="onSubmit"> <ion-button expand="block" shape="round" color="success" @click="onSubmit">
{{ t("recharge.fiat.submit") }} {{ t("recharge.fiat.submit") }}
</ion-button> </ion-button>
</div> </div>

View File

@@ -122,7 +122,7 @@ function handleSubmit(values: GenericObject) {
<ErrorMessage name="totalSupplyLimit" /> <ErrorMessage name="totalSupplyLimit" />
</div> </div>
<ion-button type="submit" expand="block"> <ion-button type="submit" expand="block" shape="round" color="success">
{{ t('asset.issue.apply.next') }} {{ t('asset.issue.apply.next') }}
</ion-button> </ion-button>
</div> </div>

View File

@@ -190,12 +190,14 @@ function handleSubmit(values: GenericObject) {
</ion-button> </ion-button>
</FieldArray> </FieldArray>
<ion-button expand="block" @click="$router.back()"> <div class="flex justify-center space-x-4">
<ion-button expand="block" shape="round" @click="$router.back()">
{{ t('asset.issue.apply.back') }} {{ t('asset.issue.apply.back') }}
</ion-button> </ion-button>
<ion-button expand="block" type="submit"> <ion-button expand="block" type="submit" class="w-full" shape="round" color="success">
{{ t('asset.issue.apply.submit') }} {{ t('asset.issue.apply.submit') }}
</ion-button> </ion-button>
</div>
</Form> </Form>
</template> </template>

View File

@@ -169,7 +169,7 @@ async function onSubmit(values: GenericObject) {
<ErrorMessage name="amount" class="text-red-500 text-xs mt-1" /> <ErrorMessage name="amount" class="text-red-500 text-xs mt-1" />
</div> </div>
<ion-button expand="block" type="submit"> <ion-button expand="block" type="submit" shape="round" color="success">
{{ t("withdraw.submit") }} {{ t("withdraw.submit") }}
</ion-button> </ion-button>
</div> </div>