引入 Element Plus 主题定制和主题皮肤 composable,将全局 样式拆分为组件级独立 CSS 文件(侧边栏、顶栏、工作台等), 统一色彩变量和间距规范,重构所有视图和组件样式以适配新 主题系统,优化图表和知识图谱组件视觉表现,提取审计和差 旅报销相关子组件。
142 lines
5.1 KiB
Vue
142 lines
5.1 KiB
Vue
<template>
|
||
<section class="approval-page archive-page">
|
||
<TravelRequestDetailView
|
||
v-if="selectedRow"
|
||
:request="selectedRow"
|
||
back-label="返回归档列表"
|
||
@back-to-requests="closeSelectedDetail"
|
||
@request-updated="reload"
|
||
@request-deleted="reload"
|
||
/>
|
||
|
||
<article v-else class="approval-list panel">
|
||
<nav class="status-tabs" aria-label="归档分类">
|
||
<button
|
||
v-for="tab in tabs"
|
||
:key="tab"
|
||
type="button"
|
||
:class="{ active: activeTab === tab }"
|
||
@click="activeTab = tab"
|
||
>
|
||
{{ tab }}
|
||
</button>
|
||
</nav>
|
||
|
||
<div class="list-toolbar">
|
||
<div class="filter-set">
|
||
<div class="list-search">
|
||
<i class="mdi mdi-magnify"></i>
|
||
<input v-model="listKeyword" type="search" placeholder="搜索单号、申请人、部门、归档类型..." />
|
||
</div>
|
||
|
||
<el-dropdown
|
||
v-for="menu in filterMenus"
|
||
:key="menu.key"
|
||
class="archive-filter-control"
|
||
trigger="click"
|
||
placement="bottom-start"
|
||
popper-class="archive-filter-menu"
|
||
@command="selectFilterValue(menu.key, $event)"
|
||
>
|
||
<button class="filter-btn archive-filter-trigger" type="button">
|
||
<span>{{ menu.label }}</span>
|
||
<i class="mdi mdi-chevron-down"></i>
|
||
</button>
|
||
<template #dropdown>
|
||
<el-dropdown-menu>
|
||
<el-dropdown-item
|
||
v-for="option in menu.options"
|
||
:key="`${menu.key}-${option.value}`"
|
||
:command="option.value"
|
||
:class="{ 'is-active': menu.activeValue === option.value }"
|
||
class="archive-filter-option"
|
||
:aria-current="menu.activeValue === option.value ? 'true' : undefined"
|
||
>
|
||
<i v-if="menu.activeValue === option.value" class="mdi mdi-check"></i>
|
||
<span>{{ option.label }}</span>
|
||
</el-dropdown-item>
|
||
</el-dropdown-menu>
|
||
</template>
|
||
</el-dropdown>
|
||
</div>
|
||
</div>
|
||
|
||
<p class="hint"><i class="mdi mdi-information-outline"></i> 归档中心保存公司已归档入账的报销数据,点击单据行查看详情</p>
|
||
|
||
<div class="table-wrap" :class="{ 'is-empty': showEmpty }">
|
||
<div v-if="loading" class="table-state">
|
||
<TableLoadingState
|
||
title="归档数据同步中"
|
||
message="正在加载公司已归档的报销单据"
|
||
icon="mdi mdi-archive-check-outline"
|
||
/>
|
||
</div>
|
||
|
||
<div v-else-if="error" class="table-state error">
|
||
<i class="mdi mdi-alert-circle-outline"></i>
|
||
<strong>归档列表加载失败</strong>
|
||
<p>{{ error }}</p>
|
||
<button class="state-action" type="button" @click="reload">重新加载</button>
|
||
</div>
|
||
|
||
<TableEmptyState
|
||
v-else-if="showEmpty"
|
||
:eyebrow="archiveEmptyState.eyebrow"
|
||
:title="archiveEmptyState.title"
|
||
:description="archiveEmptyState.desc"
|
||
:icon="archiveEmptyState.icon"
|
||
:action-label="archiveEmptyState.actionLabel"
|
||
:action-icon="archiveEmptyState.actionIcon"
|
||
:tone="archiveEmptyState.tone"
|
||
:art-label="archiveEmptyState.artLabel"
|
||
:tips="archiveEmptyState.tips"
|
||
@action="handleEmptyAction"
|
||
/>
|
||
|
||
<table v-else>
|
||
<colgroup>
|
||
<col><col><col><col><col><col><col><col><col>
|
||
</colgroup>
|
||
<thead>
|
||
<tr>
|
||
<th>单号</th>
|
||
<th>申请人</th>
|
||
<th>申请部门</th>
|
||
<th>归档类型</th>
|
||
<th>金额</th>
|
||
<th>提交时间 <i class="mdi mdi-sort"></i></th>
|
||
<th>归档节点</th>
|
||
<th>风险</th>
|
||
<th>状态</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr v-for="row in visibleRows" :key="row.id" @click="selectedRow = row">
|
||
<td><strong class="doc-id">{{ row.id }}</strong></td>
|
||
<td>
|
||
<span class="person">
|
||
<span class="avatar">{{ row.avatar }}</span>
|
||
{{ row.applicant }}
|
||
</span>
|
||
</td>
|
||
<td>{{ row.department }}</td>
|
||
<td>{{ row.archiveType }}</td>
|
||
<td>{{ row.amount }}</td>
|
||
<td>{{ row.time }}</td>
|
||
<td>{{ row.node }}</td>
|
||
<td><span class="risk-tag" :class="row.riskTone">{{ row.risk }}</span></td>
|
||
<td><span class="status-tag archived">{{ row.status }}</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</article>
|
||
</section>
|
||
</template>
|
||
|
||
<script src="./scripts/ArchiveCenterView.js"></script>
|
||
|
||
<style scoped src="../assets/styles/views/approval-center-view.css"></style>
|
||
<style scoped src="../assets/styles/views/approval-center-view-part2.css"></style>
|
||
<style scoped src="../assets/styles/views/archive-center-view.css"></style>
|