fix: tips
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 3m47s

This commit is contained in:
sexygoat
2026-05-06 11:13:51 +08:00
parent 8832150562
commit 304a5de1d6
3 changed files with 17 additions and 72 deletions

View File

@@ -136,11 +136,11 @@
<!-- 退回对话框 -->
<ElDialog
v-model="returnDialogVisible"
title="退回退款申请"
width="500px"
title="驳回申请"
width="30%"
@closed="handleReturnDialogClosed"
>
<ElForm ref="returnFormRef" :model="returnForm" :rules="returnRules" label-width="120px">
<ElForm ref="returnFormRef" :model="returnForm" :rules="returnRules" label-width="80">
<ElFormItem label="退款单号">
<span>{{ currentRefund?.refund_no }}</span>
</ElFormItem>
@@ -155,6 +155,9 @@
/>
</ElFormItem>
</ElForm>
<div class="return-dialog-tip">
驳回后该订单不可再申请退款若还需申请退款点击审核拒绝
</div>
<template #footer>
<div class="dialog-footer">
<ElButton @click="returnDialogVisible = false">取消</ElButton>
@@ -878,10 +881,10 @@
type: 'danger'
})
}
//
//
if (hasAuth('refund:return')) {
actions.push({
label: '回',
label: '回',
handler: () => handleShowReturn(row),
type: 'primary'
})
@@ -904,5 +907,13 @@
<style scoped lang="scss">
.refund-page {
height: 100%;
.return-dialog-tip {
margin-top: 8px;
font-size: 12px;
line-height: 1.6;
color: var(--el-color-primary);
text-align: center;
}
}
</style>