Commit a319a4d4 by 李少勇

infjsl 结算量报表交易开发

parent a2ee07c9
export default {
data() {
return {
rules: {
}
}
}
}
export default class Infjsl {
constructor() {
this.data = {
ywbh: '',
ywpz: '',
sfrq: '',
sssdh: '',
khh: '',
sfxm: '',
bz: '',
jeqj: '',
}
}
}
\ No newline at end of file
<template>
<div class="eibs-tab">
<c-list-search @form-reset="handleReset" @form-search="formSubmit">
<!-- 持续展示区 -->
<template v-slot="searchSlot">
<el-form class="m-table-search-form" ref="paramsForm" label-position="right" label-width="110px" size="small"
:model="model">
<el-row>
<c-col :span="8">
<el-form-item label="分行名称" style="width: 100%">
<c-select v-model="model.fhmc" style="width: 100%" placeholder="请选择分行名称" :clearable="true" :code="[]">
</c-select>
</el-form-item>
</c-col>
<c-col :span="8">
<el-form-item label="功能名称" style="width: 100%">
<c-select v-model="model.gnmc" style="width: 100%" placeholder="请选择功能名称" :clearable="true" :code="[]">
</c-select>
</el-form-item>
</c-col>
</el-row>
<!-- 可控展示区 -->
<el-row v-show="searchSlot.searchToggle">
</el-row>
</el-form>
</template>
<template v-slot:extendsRight>
<c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 2px">
导出
</c-button>
</template>
</c-list-search>
<el-col :span="24" style="margin-top: 10px">
<c-col :span="24">
<el-table id='infgidBSTableRef' v-loading="load" :data="tableData" style="width:100%" size="small" :border="true"
height="calc(100vh - 330px)" :highlight-current-row="true">
<el-table-column label="分行代码" prop="fhdm" align="left" min-width="150">
</el-table-column>
<el-table-column label="支行代码" prop="zhdm" align="left" min-width="150">
</el-table-column>
<el-table-column label="业务机构" prop="ywjg" align="left" min-width="150">
</el-table-column>
<el-table-column label="业务名称" prop="yemc" align="left" min-width="150">
</el-table-column>
<el-table-column label="业务编号" prop="ywbh" align="left" min-width="150">
</el-table-column>
<el-table-column label="业务日期" prop="ywrq" align="left" min-width="150">
</el-table-column>
<el-table-column label="客户名称" prop="khmc" align="left" min-width="150">
</el-table-column>
<el-table-column label="对公/对私" prop="dgds" align="left" min-width="150">
</el-table-column>
<el-table-column label="币种" prop="bz" align="left" min-width="150">
</el-table-column>
<el-table-column label="金额" prop="je" align="left" min-width="150">
</el-table-column>
<el-table-column label="折美金额" prop="zmje" align="left" min-width="150">
</el-table-column>
<el-table-column label="结算量种类" prop="jslzl" align="left" min-width="150">
</el-table-column>
<el-table-column label="款项性质" prop="kxxz" align="left" min-width="150">
</el-table-column>
<el-table-column label="是否同名划转" prop="sftmhz" align="left" min-width="150">
</el-table-column>
<el-table-column label="是否冲账" prop="sfcz" align="left" min-width="150">
</el-table-column>
<el-table-column label="是否清算成功" prop="sfqscg" align="left" min-width="150">
</el-table-column>
<el-table-column label="客户经理" prop="khjl" align="left" min-width="150">
</el-table-column>
<el-table-column label="产品经理" prop="cpjl" align="left" min-width="150">
</el-table-column>
<el-table-column label="调整日期" prop="tzrq" align="left" min-width="150">
</el-table-column>
<el-table-column label="调整方向" prop="tzfx" align="left" min-width="150">
</el-table-column>
</el-table>
</c-col>
</el-col>
</div>
</template>
<script>
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [],
components: {
},
data() {
return {
load: false,
tableData: [],
};
},
watch: {
},
computed: {},
mounted() {
},
methods: {
handleReset() {
},
formSubmit() {
},
}
};
</script>
<style scoped lang="less">
.eibs-tabs /deep/ {
.m-table-search {
padding: 20px 0px 10px 0px;
}
}
.header-wrap {
height: 36px;
display: flex;
justify-content: space-between;
align-items: center;
.title {
font-size: 16px;
color: #000;
}
.close-btn {
padding: 3px;
cursor: pointer;
}
}
.m-list-btns {
height: 300px;
overflow: auto;
}
.medium_bcs {
border-radius: 5px;
}
</style>
\ No newline at end of file
<template>
<div class="eContainer-search">
<c-tabs ref="elment" type="card" v-model="tabVal">
<el-tab-pane label="结算量明细表" name="infent">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="120px" label-position="right" size="small"
:validate-on-rule-change="false">
<c-content>
<m-infsea :model="model" :codes="codes" ref="infsea" />
</c-content>
</el-form>
</el-tab-pane>
</c-tabs>
</div>
</template>
<script>
import CodeTable from "~/config/CodeTable";
import Infjsl from "../model";
import Infsea from "./Infsea";
import Check from "../model/check"
export default {
name: 'Infjsl',
components: {
"m-infsea": Infsea,
},
provide() {
return {
root: this
}
},
mixins: [Check],
data() {
return {
tabVal: "infent",
model: new Infjsl().data,
codes: { ...CodeTable },
}
},
methods: {
},
mounted() {
},
}
</script>
<style scoped></style>
......@@ -14,12 +14,12 @@
</template>
<script>
import CodeTable from "~/config/CodeTable";
import Infzdy from "../model";
import Infsxf from "../model";
import Infsea from "./Infsea";
import Check from "../model/check"
export default {
name: 'Infzdy',
name: 'Infsxf',
components: {
"m-infsea": Infsea,
},
......@@ -32,7 +32,7 @@ export default {
data() {
return {
tabVal: "infent",
model: new Infzdy().data,
model: new Infsxf().data,
codes: { ...CodeTable },
}
},
......
......@@ -242,6 +242,7 @@ const StaticsRouter = [
{ path: 'infhmd', component: () => import('./Infhmd/views'), name: 'Infhmd', meta: { keepAlive: true, title: '黑名单查询'} },
{ path: 'infsxf', component: () => import('./Infsxf/views'), name: 'Infsxf', meta: { keepAlive: true, title: '手续费明细台账'} },
{ path: 'infzdy', component: () => import('./Infzdy/views'), name: 'Infzdy', meta: { keepAlive: true, title: '自定义报表'} },
{ path: 'infjsl', component: () => import('./Infjsl/views'), name: 'Infjsl', meta: { keepAlive: true, title: '结算量明细报表'} },
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment