2026-03-04 10:35:23 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="detail-query-container">
|
2026-03-10 16:44:01 +08:00
|
|
|
<div class="query-page-shell">
|
|
|
|
|
<div class="shell-sidebar">
|
|
|
|
|
<div class="shell-panel-title">筛选条件</div>
|
|
|
|
|
<div class="shell-panel-body">筛选区域待接入</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="shell-main">
|
|
|
|
|
<div class="shell-header">
|
|
|
|
|
<span class="shell-title">流水明细查询</span>
|
|
|
|
|
<el-button size="small" type="primary" plain @click="handleExport">
|
|
|
|
|
导出流水
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="shell-panel-body">结果区域待接入</div>
|
|
|
|
|
</div>
|
2026-03-04 10:35:23 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-03-10 16:44:01 +08:00
|
|
|
import {
|
|
|
|
|
listBankStatement,
|
|
|
|
|
getBankStatementOptions,
|
|
|
|
|
getBankStatementDetail
|
|
|
|
|
} from "@/api/ccdiProjectBankStatement";
|
|
|
|
|
|
2026-03-04 10:35:23 +08:00
|
|
|
export default {
|
|
|
|
|
name: "DetailQuery",
|
|
|
|
|
props: {
|
|
|
|
|
projectId: {
|
|
|
|
|
type: [String, Number],
|
|
|
|
|
default: null,
|
|
|
|
|
},
|
|
|
|
|
projectInfo: {
|
|
|
|
|
type: Object,
|
|
|
|
|
default: () => ({
|
|
|
|
|
projectName: "",
|
|
|
|
|
updateTime: "",
|
|
|
|
|
projectStatus: "0",
|
|
|
|
|
}),
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-03-10 16:44:01 +08:00
|
|
|
methods: {
|
|
|
|
|
getList() {},
|
|
|
|
|
getOptions() {},
|
|
|
|
|
handleExport() {
|
|
|
|
|
void listBankStatement;
|
|
|
|
|
void getBankStatementOptions;
|
|
|
|
|
void getBankStatementDetail;
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-03-04 10:35:23 +08:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.detail-query-container {
|
2026-03-10 16:44:01 +08:00
|
|
|
padding: 16px;
|
2026-03-04 10:35:23 +08:00
|
|
|
background: #fff;
|
2026-03-10 16:44:01 +08:00
|
|
|
min-height: 480px;
|
2026-03-04 10:35:23 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-10 16:44:01 +08:00
|
|
|
.query-page-shell {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 320px minmax(0, 1fr);
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
2026-03-04 10:35:23 +08:00
|
|
|
|
2026-03-10 16:44:01 +08:00
|
|
|
.shell-sidebar,
|
|
|
|
|
.shell-main {
|
|
|
|
|
min-height: 448px;
|
|
|
|
|
border: 1px solid #ebeef5;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell-sidebar {
|
|
|
|
|
padding: 20px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell-main {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell-title,
|
|
|
|
|
.shell-panel-title {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #303133;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell-panel-body {
|
|
|
|
|
color: #909399;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
}
|
2026-03-04 10:35:23 +08:00
|
|
|
|
2026-03-10 16:44:01 +08:00
|
|
|
@media (max-width: 992px) {
|
|
|
|
|
.query-page-shell {
|
|
|
|
|
grid-template-columns: 1fr;
|
2026-03-04 10:35:23 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|