039a08a86a
- 将正式结算页面中的表格及工具栏整体封装为子组件 formal-settlement-table-panel - 正式结算页通过 tabs 展示应付/应收,分别引入封装表格组件,保证功能完整性和切换时的数据刷新 - 正式结算表格子组件支持行操作、工具栏按钮和分页,提升代码复用和维护性 - 运输对账页面同样改用 transport-reconciliation-table-panel 封装表格与工具栏 - 调整预结算单弹窗“结算汇率”输入框为左对齐,改善字段显示 - 清理有关表格页面的旧样式与冗余代码,确保样式统一 - 修改本地开发服务器端口及代理配置,切换到 2889 端口并更新代理目标地址
149 lines
4.7 KiB
Vue
149 lines
4.7 KiB
Vue
<template>
|
|
<div class="tr-table-panel">
|
|
<div class="tr-table-panel__toolbar">
|
|
<div>
|
|
<el-button
|
|
v-if="hasPermission('transport_reconciliation_add')"
|
|
type="primary"
|
|
@click="$emit('create')"
|
|
>新增</el-button
|
|
>
|
|
<el-button type="primary" plain @click="$emit('export')">导出</el-button>
|
|
</div>
|
|
<div class="tr-table-panel__toolbar-right">
|
|
<el-tooltip content="刷新" placement="top">
|
|
<el-button :icon="Refresh" text @click="$emit('refresh')" />
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="rows"
|
|
border
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="52" fixed="left" align="center" />
|
|
<el-table-column type="index" label="序号" width="64" fixed="left" align="center" />
|
|
<el-table-column
|
|
v-for="column in columns"
|
|
:key="column.prop"
|
|
v-bind="column"
|
|
align="center"
|
|
show-overflow-tooltip
|
|
>
|
|
<template #default="{ row }">
|
|
<el-link v-if="column.link" type="primary" @click="emitAction('view', row)">{{
|
|
row[column.prop] || '-'
|
|
}}</el-link>
|
|
<span v-else-if="column.money">{{ formatMoney(row[column.prop], row.currency) }}</span>
|
|
<el-tag
|
|
v-else-if="column.prop === 'reconciliationStatusName'"
|
|
:type="row.reconciliationStatus === 'completed' ? 'success' : 'warning'"
|
|
>{{ row[column.prop] || '-' }}</el-tag
|
|
>
|
|
<span v-else>{{ displayValue(row[column.prop]) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="220" fixed="right" align="center">
|
|
<template #default="{ row }"
|
|
><div class="tr-table-panel__links">
|
|
<el-link
|
|
v-for="action in rowActions(row)"
|
|
:key="action.type"
|
|
:type="action.danger ? 'danger' : 'primary'"
|
|
@click="emitAction(action.type, row)"
|
|
>{{ action.label }}</el-link
|
|
>
|
|
</div></template
|
|
>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="tr-table-panel__pagination">
|
|
<el-pagination
|
|
:current-page="page.current"
|
|
:page-size="page.size"
|
|
:total="page.total"
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@current-change="current => $emit('page-change', { current, size: page.size })"
|
|
@size-change="size => $emit('page-change', { current: 1, size })"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Refresh } from '@element-plus/icons-vue';
|
|
|
|
export default {
|
|
name: 'TransportReconciliationTablePanel',
|
|
props: {
|
|
rows: { type: Array, default: () => [] },
|
|
columns: { type: Array, default: () => [] },
|
|
loading: { type: Boolean, default: false },
|
|
page: { type: Object, required: true },
|
|
hasPermission: { type: Function, required: true },
|
|
},
|
|
emits: ['create', 'export', 'refresh', 'page-change', 'update:selection', 'action'],
|
|
data() {
|
|
return {
|
|
Refresh,
|
|
selection: [],
|
|
};
|
|
},
|
|
methods: {
|
|
handleSelectionChange(value) {
|
|
this.selection = value;
|
|
this.$emit('update:selection', value);
|
|
},
|
|
emitAction(type, row) {
|
|
this.$emit('action', { type, row });
|
|
},
|
|
isEditable(row) {
|
|
return row.reconciliationStatus === 'unfinished';
|
|
},
|
|
rowActions(row) {
|
|
const actions = [{ type: 'view', label: '查看' }];
|
|
if (this.hasPermission('transport_reconciliation_edit') && this.isEditable(row))
|
|
actions.push({ type: 'edit', label: '编辑' });
|
|
if (this.hasPermission('transport_reconciliation_delete') && this.isEditable(row))
|
|
actions.push({ type: 'delete', label: '删除', danger: true });
|
|
if (this.hasPermission('transport_reconciliation_complete') && this.isEditable(row))
|
|
actions.push({ type: 'complete', label: '确认' });
|
|
return actions;
|
|
},
|
|
displayValue(value) {
|
|
return value === null || value === undefined || value === '' ? '-' : value;
|
|
},
|
|
formatMoney(value, currency = 'RMB') {
|
|
return `${Number(value || 0).toFixed(2)} ${currency || 'RMB'}`;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.tr-table-panel__toolbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 0;
|
|
}
|
|
.tr-table-panel__toolbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.tr-table-panel__links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
}
|
|
.tr-table-panel__pagination {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 12px;
|
|
}
|
|
</style>
|