Files
ccdi/ruoyi-ui/src/views/ccdiProject/components/detail/DetailQuery.vue

111 lines
2.0 KiB
Vue
Raw Normal View History

<template>
<div class="detail-query-container">
<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>
</div>
</div>
</template>
<script>
import {
listBankStatement,
getBankStatementOptions,
getBankStatementDetail
} from "@/api/ccdiProjectBankStatement";
export default {
name: "DetailQuery",
props: {
projectId: {
type: [String, Number],
default: null,
},
projectInfo: {
type: Object,
default: () => ({
projectName: "",
updateTime: "",
projectStatus: "0",
}),
},
},
methods: {
getList() {},
getOptions() {},
handleExport() {
void listBankStatement;
void getBankStatementOptions;
void getBankStatementDetail;
},
},
};
</script>
<style lang="scss" scoped>
.detail-query-container {
padding: 16px;
background: #fff;
min-height: 480px;
}
.query-page-shell {
display: grid;
grid-template-columns: 320px minmax(0, 1fr);
gap: 16px;
}
.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;
}
@media (max-width: 992px) {
.query-page-shell {
grid-template-columns: 1fr;
}
}
</style>