🎈 perf: 优化部分展示

This commit is contained in:
砂糖
2025-08-13 18:01:19 +08:00
parent 9a660b910b
commit 7518c68068
4 changed files with 49 additions and 100 deletions

View File

@@ -53,6 +53,8 @@
<el-table-column label="到期日" align="center" prop="dueDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.dueDate, '{y}-{m}-{d}') }}</span>
<el-tag v-if="new Date(scope.row.dueDate) < new Date()" type="danger">过期</el-tag>
<el-tag v-else-if="new Date(scope.row.dueDate) > new Date()" type="success">还剩{{ parseInt((new Date(scope.row.dueDate) - new Date()) / (1000 * 60 * 60 * 24)) }}</el-tag>
</template>
</el-table-column>
<el-table-column label="应收金额" align="center" prop="amount" />
@@ -70,6 +72,8 @@
<el-table-column label="到期日" align="center" prop="dueDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.dueDate, '{y}-{m}-{d}') }}</span>
<el-tag v-if="new Date(scope.row.dueDate) < new Date()" type="danger">过期</el-tag>
<el-tag v-else-if="new Date(scope.row.dueDate) > new Date()" type="success">还剩{{ parseInt((new Date(scope.row.dueDate) - new Date()) / (1000 * 60 * 60 * 24)) }}</el-tag>
</template>
</el-table-column>
<el-table-column label="应付金额" align="center" prop="amount" />
@@ -81,10 +85,10 @@
</el-tab-pane>
<el-tab-pane label="凭证管理" name="document">
<el-table :data="currentOrder.documents" style="width: 100%" empty-text="暂无数据">
<el-table-column prop="documentCode" label="凭证编号" />
<el-table-column prop="documentDate" label="凭证日期" />
<el-table-column prop="documentAmount" label="凭证金额" />
<el-table-column prop="documentStatus" label="凭证状态" />
<el-table-column prop="docNo" label="凭证编号" />
<el-table-column prop="docDate" label="凭证日期" />
<el-table-column prop="amount" label="凭证金额" />
<el-table-column prop="status" label="凭证状态" />
</el-table>
</el-tab-pane>
</el-tabs>