fix(meetings): 批量提交按钮去 plain (disabled 顺色), 提示推最右

This commit is contained in:
郭庆泰
2026-08-18 23:15:57 +08:00
parent 6d4f1e66d4
commit 6774c44429
+3 -3
View File
@@ -36,9 +36,9 @@
</el-form-item>
</el-form>
<!-- ========== 批量提交按钮 (manager 角色专有) ========== -->
<!-- ========== 批量提交按钮 (manager 角色专有, 不用 plain 否则 disabled 顺色) ========== -->
<div class="batch-bar">
<el-button type="primary" plain :disabled="!selectedIds.length" @click="onBatchSubmit">批量提交</el-button>
<el-button type="primary" :disabled="!selectedIds.length" @click="onBatchSubmit">批量提交</el-button>
<span v-if="selectedIds.length" class="filter-tip">已选 {{ selectedIds.length }} </span>
</div>
@@ -321,7 +321,7 @@ onMounted(load)
.breadcrumb { font-size: 13px; color: #8c8c8c; margin-bottom: 12px; }
.filter-form { margin-bottom: 12px; }
.batch-bar { margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
.filter-tip { color: #909399; font-size: 12px; }
.filter-tip { color: #909399; font-size: 12px; margin-left: auto; }
.date-sep { margin: 0 4px; color: #606266; }
.pager { display: flex; justify-content: flex-end; margin-top: 12px; }