style(ui): 统一弹窗及独立表单页按钮文案和样式调整
- 将所有弹窗及独立表单页中的“返回”按钮文案统一改为“取消” - 独立表单页footer的Avue提交与清空按钮去除内置图标,仅保留文字显示 - 更新相关页面和组件按钮文案,包括业务表单、支付表单、客户档案等 - 规范底部操作栏按钮顺序及样式,确保主次操作区分明显 - 修复部分组件页脚按钮文案,保持全站一致性
This commit is contained in:
@@ -2076,7 +2076,7 @@
|
||||
v-if="isStandaloneFormPage && !showTransportPlanCreateActions"
|
||||
@click="closeCrudDialog"
|
||||
>
|
||||
关闭
|
||||
取消
|
||||
</el-button>
|
||||
<el-button
|
||||
v-if="config.enableDraftSave && !dialogReadonly"
|
||||
@@ -2092,7 +2092,7 @@
|
||||
<template #menu-form>
|
||||
<div v-if="showTransportPlanCreateActions" class="business-crud-page__create-actions">
|
||||
<el-button :disabled="Boolean(transportPlanCreateActionLoading)" @click="closeCrudDialog">
|
||||
关闭
|
||||
取消
|
||||
</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
@@ -3208,7 +3208,7 @@
|
||||
@click="submitTransportPlanImport"
|
||||
>提交</el-button
|
||||
>
|
||||
<el-button @click="transportPlanImportBox = false">返回</el-button>
|
||||
<el-button @click="transportPlanImportBox = false">取消</el-button>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
@@ -15343,6 +15343,12 @@ export default {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/* 独立表单页 footer 的 Avue 提交/清空按钮自带图标(el-icon-check / el-icon-delete),
|
||||
Avue 源码用 `|| 'el-icon-xxx'` 兜底,无法通过 option 配置去除,统一用 CSS 隐藏只保留文字 */
|
||||
:global(.business-crud-form-page-dialog .avue-form__menu .el-icon) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
:global(.contract-manage-form-dialog) {
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
|
||||
Reference in New Issue
Block a user