Regression / regression (push) Canceled after 0s
## 品牌标识(本次会话) 起因:品牌此前没有任何图形标识 —— 唯一 favicon 是内联 data-URI 里的字母「A」, 那是 v2.0.0「Aurora Admin → Kole UI」改名漏掉的一处(PC 顶栏也是「A」, 移动端站已是「K」;移动端文档站则完全没有 favicon)。 - 几何:24 网格三个互不接触的笔画(竖 + 两斜),圆头描边; 描边 2.25 → 16px 标签页尺寸下正好 1.5px = 规范原文「描边1.5px」 - 取色分两套(刻意):favicon 硬编码品牌蓝/白(渲染在浏览器标签栏,不继承 kole-dark); 顶栏标记走 currentColor(实测暗色下自动转 rgb(20,22,28)) - 新增 theme-color 双条(light #FFFFFF / dark #1C1F26,取 --kole-color-card-bg) - 修 site/app.js hero 标语 KOLE ADMIN → KOLE UI(改名变形残留) - 移动端 7 个模板补 favicon(此前计数 0) 验收:门禁 9 条全 OK(site-routing/site-routes/mobile-docs/mobile-site/isolation/ theme/nav/i18n/icons);PC 回归 1464/1464 · 移动端 807/807,各连跑 8 次一致; 两端 favicon 405 字节逐字节一致;PC 站控制台错误 1→0。 ## 并行会话成果(本次一并入库) - 图标系统:2576 图标(TDesign/Element Plus,MIT)+ 11 端注入 + 5 个构建门禁工具 + IconPreview 预览页 + ICON-SPEC.md 冻结规格 - 移动端平台:47 组件 × 6 端 + 文档站 53 页 + 隔离门禁 - PC 组件:103 个大后台组件 / 组件11 批次 - uni-app:PC 端试点 + 移动端端实现 + 真实编译验证 ## 工程 - .gitignore 补 .scratch/ 与 .zcode-preexisting-*.txt(会话中间产物,实测 9.1MB,不入库) - CHANGELOG 补品牌标识条目 - ROADMAP 登 S8-P4(品牌标识任务包 + og:image/apple-touch-icon 未做部分)
118 lines
5.5 KiB
Vue
118 lines
5.5 KiB
Vue
<template>
|
||
<div class="kole-transfer">
|
||
<!-- 左栏:未选中 -->
|
||
<div class="kole-transfer-panel">
|
||
<div class="kole-transfer-head">
|
||
<span>{{ titles[0] }}</span>
|
||
<span class="count">{{ leftChecked.length }}/{{ filteredLeft.length }}</span>
|
||
</div>
|
||
<div v-if="filterable" class="kole-transfer-search">
|
||
<input v-model="leftQ" placeholder="搜索">
|
||
</div>
|
||
<div class="kole-transfer-body">
|
||
<div
|
||
v-for="d in filteredLeft" :key="d.key"
|
||
class="kole-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="kole-transfer-empty">无数据</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 中间操作 -->
|
||
<div class="kole-transfer-ops">
|
||
<button :disabled="!leftChecked.length" @click="moveRight">›</button>
|
||
<button :disabled="!rightChecked.length" @click="moveLeft">‹</button>
|
||
</div>
|
||
|
||
<!-- 右栏:已选中 -->
|
||
<div class="kole-transfer-panel">
|
||
<div class="kole-transfer-head">
|
||
<span>{{ titles[1] }}</span>
|
||
<span class="count">{{ rightChecked.length }}/{{ filteredRight.length }}</span>
|
||
</div>
|
||
<div v-if="filterable" class="kole-transfer-search">
|
||
<input v-model="rightQ" placeholder="搜索">
|
||
</div>
|
||
<div class="kole-transfer-body">
|
||
<div
|
||
v-for="d in filteredRight" :key="d.key"
|
||
class="kole-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="kole-transfer-empty">无数据</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, computed } from 'vue';
|
||
|
||
const props = defineProps({
|
||
modelValue: { type: Array, default: () => [] }, // 已选 key 列表
|
||
data: { type: Array, required: true }, // [{ key, label, disabled? }]
|
||
titles: { type: Array, default: () => ['候选列表', '已选列表'] },
|
||
filterable: { type: Boolean, default: false }
|
||
});
|
||
const emit = defineEmits(['update:modelValue', 'change']);
|
||
|
||
const leftChecked = ref([]);
|
||
const rightChecked = ref([]);
|
||
const leftQ = ref('');
|
||
const rightQ = ref('');
|
||
|
||
const filteredLeft = computed(() =>
|
||
props.data.filter(d => !props.modelValue.includes(d.key) && d.label.includes(leftQ.value))
|
||
);
|
||
const filteredRight = computed(() =>
|
||
props.data.filter(d => props.modelValue.includes(d.key) && d.label.includes(rightQ.value))
|
||
);
|
||
|
||
function toggle(arr, key) {
|
||
const item = props.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);
|
||
}
|
||
function moveRight() {
|
||
const next = [...props.modelValue, ...leftChecked.value];
|
||
leftChecked.value = [];
|
||
emit('update:modelValue', next);
|
||
emit('change', next);
|
||
}
|
||
function moveLeft() {
|
||
const set = new Set(rightChecked.value);
|
||
const next = props.modelValue.filter(k => !set.has(k));
|
||
rightChecked.value = [];
|
||
emit('update:modelValue', next);
|
||
emit('change', next);
|
||
}
|
||
</script>
|
||
|
||
<!-- 样式对齐 组件7.txt Transfer 规范 -->
|
||
<style scoped>
|
||
.kole-transfer { display: inline-flex; align-items: stretch; gap: 12px; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: #262626; }
|
||
.kole-transfer-panel { width: 220px; border: 1px solid #E8ECF1; border-radius: 6px; background: #fff; display: flex; flex-direction: column; }
|
||
.kole-transfer-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-bottom: 1px solid #E8ECF1; font-size: 14px; }
|
||
.kole-transfer-head .count { color: #6E6E6E; font-size: 12px; }
|
||
.kole-transfer-search { padding: 8px 12px; border-bottom: 1px solid #E8ECF1; }
|
||
.kole-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; }
|
||
.kole-transfer-search input:focus { border-color: #2F54EB; box-shadow: 0 0 0 2px rgba(47,84,235,0.2); }
|
||
.kole-transfer-body { flex: 1; min-height: 180px; max-height: 240px; overflow: auto; padding: 4px 0; }
|
||
.kole-transfer-item { display: flex; align-items: center; gap: 8px; padding: 6px 12px; cursor: pointer; font-size: 14px; }
|
||
.kole-transfer-item:hover { background: #F5F7FA; }
|
||
.kole-transfer-item.is-disabled { color: #BFBFBF; cursor: not-allowed; }
|
||
.kole-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; }
|
||
.kole-transfer-item.is-checked .box { background: #2F54EB; border-color: #2F54EB; }
|
||
.kole-transfer-empty { padding: 32px 12px; text-align: center; color: #767676; font-size: 13px; }
|
||
.kole-transfer-ops { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
|
||
.kole-transfer-ops button { width: 32px; height: 32px; border-radius: 4px; border: 1px solid #E8ECF1; background: #fff; color: #262626; cursor: pointer; font-size: 14px; }
|
||
.kole-transfer-ops button:hover:not(:disabled) { color: #2F54EB; border-color: #2F54EB; }
|
||
.kole-transfer-ops button:disabled { color: #BFBFBF; cursor: not-allowed; }
|
||
</style>
|