Cnyp.vue 1.09 KB
Newer Older
jxl committed
1
<template>
huangxin committed
2 3
<div class="eibs-tab">
    <el-collapse v-model="activeNames" @change="handleChange">
4

huangxin committed
5 6 7
        <el-collapse-item title="跨境人民币申报" name="cnyp1">
            <m-cnyp1 :model="model" :codes="codes" />
        </el-collapse-item>
8

huangxin committed
9 10 11
        <el-collapse-item title="2106银行跟单结算及表外记账融资" name="libp" v-if="model.cnybop.libflg ==='1'">
            <m-libp :model="model" :codes="codes" />
        </el-collapse-item>
12

huangxin committed
13 14
    </el-collapse>
</div>
jxl committed
15
</template>
huangxin committed
16

jxl committed
17
<script>
huangxin committed
18
import Api from "~/service/Api";
wangren committed
19
import commonProcess from "~/mixin/commonProcess";
huangxin committed
20 21 22 23
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Brtset/Event";
import Cnyp1 from "./Cnyp1";
import Libp from './Libp'
jxl committed
24 25


huangxin committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
export default {
    inject: ["root"],
    components: {
        'm-libp': Libp,
        "m-cnyp1": Cnyp1,
    },
    props: ["model", "codes"],
    mixins: [commonProcess],
    data() {
        return {
            activeNames: ["cnyp1"],
        };
    },
    methods: {
        ...Event,
        handleChange() {}
    },
    created: function () {},
};
jxl committed
45
</script>
huangxin committed
46

jxl committed
47 48
<style>
</style>