1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
<div class="eContainer">
<c-page title="发票登记与核验">
<c-tabs v-model="model.imgInvmod.tabVal" ref="elment" type="card">
<!--PD000039 -->
<el-tab-pane label="发票重复性融资查询报文" name="djzf">
<c-content>
<m-djzf :model="model" />
</c-content>
</el-tab-pane>
</c-tabs>
</c-page>
</div>
</template>
<script>
import Djzf from "./Djzf";
import Fpdj from "./Fpdj";
import Jgcx from "./Jgcx";
import Fpzf from "./Fpzf";
export default {
components: {
"m-djzf": Djzf,
"m-fpdj": Fpdj,
"m-jgcx": Jgcx,
"m-fpzf": Fpzf,
},
props:["model","codes"],
data() {
return {
};
},
};
</script>
<style></style>