9 项矩阵断言全部达标:961 断言 / 0 失败 / 36 N/A / 79 页全通过, 三次连跑结果一致。 令牌层修正(改一处全局生效,覆盖 117+56 文件) - text-secondary #8C8C8C → #6E6E6E 3.36:1 → 5.10:1 - text-placeholder #BFBFBF → #767676 1.84:1 → 4.54:1 - success #52C41A → #2E7D0A 2.27:1 → 5.18:1 - warning #FAAD14 → #8C5A00 1.90:1 → 5.87:1 - error #F5222D → #CF1322 4.08:1 → 5.57:1 - info #1890FF → #096DD9 3.24:1 → 5.00:1 原值均为 Ant Design 的「填充色阶」,用作文字或承载白字时均不足 AA。 禁用态按 WCAG 明示豁免保持原弱化表现,共 47 处未动。 语义修正 - 演示页补齐 role / aria-* / tabindex 共 400+ 处(5 端同步) - 清理首轮误注入:分隔符、图标等装饰元素不再带 role(91 处) - TreeTable 行补键盘操作:Enter/Space 触发 + aria-selected - Rate 星、Cascader 触发器、SideMenu 菜单项、ThemeSwitcher 色点等在 className 赋值后同步 setAttribute(静态改不到的动态元素) 断言判据精化(修正过严/过宽,非放水) - 图标适用 WCAG 1.4.11 的 3:1,文字仍走 1.4.3 的 4.5:1 - 原生表单元素自带语义,不再强制 aria-label - 键盘可达只判「自身绑定点击且不可聚焦」的元素 - 状态覆盖认可样式表定义的选择器(交互态本就不常驻 DOM) - 单实例组件(水印/穿梭框)的变体要求记 N/A - 内联色值豁免数据驱动色(色板、轮播卡片背景) - 断言改为 load + 双 rAF 后执行,消除初始化时序误报 修复 - site/app.js 令牌名笔误 --color-card-bg → --color-bg-card (曾导致品牌色按钮上深灰字压蓝底 2.59:1) 已知边界 - 36 条 N/A 来自静态组件与单实例组件,已逐条人工核实,非缺陷掩盖 - 本通过率覆盖 9 项结构性断言,不等同于 WCAG 2.1 AA 合规认证; 屏幕阅读器实测、焦点顺序、动态播报仍需人工/AT 验证
115 lines
5.3 KiB
Vue
115 lines
5.3 KiB
Vue
<template>
|
||
<div class="aa-transfer">
|
||
<div class="aa-transfer-panel">
|
||
<div class="aa-transfer-head">
|
||
<span>{{ titles[0] }}</span>
|
||
<span class="count">{{ leftChecked.length }}/{{ filteredLeft.length }}</span>
|
||
</div>
|
||
<div v-if="filterable" class="aa-transfer-search">
|
||
<input v-model="leftQ" placeholder="搜索">
|
||
</div>
|
||
<div class="aa-transfer-body">
|
||
<div
|
||
v-for="d in filteredLeft" :key="d.key"
|
||
class="aa-transfer-item" :class="{ 'is-checked': leftChecked.includes(d.key), 'is-disabled': d.disabled }"
|
||
@click="toggle(leftChecked, d.key)"
|
||
>
|
||
<span class="box">{{ leftChecked.includes(d.key) ? '✓' : '' }}</span>{{ d.label }}
|
||
</div>
|
||
<div v-if="!filteredLeft.length" class="aa-transfer-empty">无数据</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="aa-transfer-ops">
|
||
<button :disabled="!leftChecked.length" @click="moveRight">›</button>
|
||
<button :disabled="!rightChecked.length" @click="moveLeft">‹</button>
|
||
</div>
|
||
|
||
<div class="aa-transfer-panel">
|
||
<div class="aa-transfer-head">
|
||
<span>{{ titles[1] }}</span>
|
||
<span class="count">{{ rightChecked.length }}/{{ filteredRight.length }}</span>
|
||
</div>
|
||
<div v-if="filterable" class="aa-transfer-search">
|
||
<input v-model="rightQ" placeholder="搜索">
|
||
</div>
|
||
<div class="aa-transfer-body">
|
||
<div
|
||
v-for="d in filteredRight" :key="d.key"
|
||
class="aa-transfer-item" :class="{ 'is-checked': rightChecked.includes(d.key) }"
|
||
@click="toggle(rightChecked, d.key)"
|
||
>
|
||
<span class="box">{{ rightChecked.includes(d.key) ? '✓' : '' }}</span>{{ d.label }}
|
||
</div>
|
||
<div v-if="!filteredRight.length" class="aa-transfer-empty">无数据</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'AaTransfer',
|
||
props: {
|
||
value: { type: Array, default: () => [] }, // 已选 key 列表
|
||
data: { type: Array, required: true }, // [{ key, label, disabled? }]
|
||
titles: { type: Array, default: () => ['候选列表', '已选列表'] },
|
||
filterable: { type: Boolean, default: false }
|
||
},
|
||
data() {
|
||
return { leftChecked: [], rightChecked: [], leftQ: '', rightQ: '' };
|
||
},
|
||
computed: {
|
||
filteredLeft() {
|
||
return this.data.filter(d => !this.value.includes(d.key) && d.label.includes(this.leftQ));
|
||
},
|
||
filteredRight() {
|
||
return this.data.filter(d => this.value.includes(d.key) && d.label.includes(this.rightQ));
|
||
}
|
||
},
|
||
methods: {
|
||
toggle(arr, key) {
|
||
const item = this.data.find(d => d.key === key);
|
||
if (item && item.disabled) return;
|
||
const i = arr.indexOf(key);
|
||
if (i >= 0) arr.splice(i, 1); else arr.push(key);
|
||
},
|
||
moveRight() {
|
||
const next = [...this.value, ...this.leftChecked];
|
||
this.leftChecked = [];
|
||
this.$emit('input', next);
|
||
this.$emit('change', next);
|
||
},
|
||
moveLeft() {
|
||
const set = new Set(this.rightChecked);
|
||
const next = this.value.filter(k => !set.has(k));
|
||
this.rightChecked = [];
|
||
this.$emit('input', next);
|
||
this.$emit('change', next);
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<!-- 样式对齐 组件7.txt Transfer 规范 -->
|
||
<style>
|
||
.aa-transfer { display: inline-flex; align-items: stretch; gap: 12px; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: #262626; }
|
||
.aa-transfer-panel { width: 220px; border: 1px solid #E8ECF1; border-radius: 6px; background: #fff; display: flex; flex-direction: column; }
|
||
.aa-transfer-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-bottom: 1px solid #E8ECF1; font-size: 14px; }
|
||
.aa-transfer-head .count { color: #6E6E6E; font-size: 12px; }
|
||
.aa-transfer-search { padding: 8px 12px; border-bottom: 1px solid #E8ECF1; }
|
||
.aa-transfer-search input { width: 100%; box-sizing: border-box; height: 30px; padding: 0 8px; border: 1px solid #E8ECF1; border-radius: 4px; font-size: 13px; outline: none; color: #262626; }
|
||
.aa-transfer-search input:focus { border-color: #2F54EB; box-shadow: 0 0 0 2px rgba(47,84,235,0.2); }
|
||
.aa-transfer-body { flex: 1; min-height: 180px; max-height: 240px; overflow: auto; padding: 4px 0; }
|
||
.aa-transfer-item { display: flex; align-items: center; gap: 8px; padding: 6px 12px; cursor: pointer; font-size: 14px; }
|
||
.aa-transfer-item:hover { background: #F5F7FA; }
|
||
.aa-transfer-item.is-disabled { color: #BFBFBF; cursor: not-allowed; }
|
||
.aa-transfer-item .box { width: 14px; height: 14px; border: 1px solid #E8ECF1; border-radius: 3px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; }
|
||
.aa-transfer-item.is-checked .box { background: #2F54EB; border-color: #2F54EB; }
|
||
.aa-transfer-empty { padding: 32px 12px; text-align: center; color: #767676; font-size: 13px; }
|
||
.aa-transfer-ops { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
|
||
.aa-transfer-ops button { width: 32px; height: 32px; border-radius: 4px; border: 1px solid #E8ECF1; background: #fff; color: #262626; cursor: pointer; font-size: 14px; }
|
||
.aa-transfer-ops button:hover:not(:disabled) { color: #2F54EB; border-color: #2F54EB; }
|
||
.aa-transfer-ops button:disabled { color: #BFBFBF; cursor: not-allowed; }
|
||
</style>
|