Cnyp.vue 2.01 KB
Newer Older
严一鸣 committed
1
<template>
jianglong committed
2 3 4 5 6 7
<div class="eibs-tab">
    <el-collapse v-model="activeNames" @change="handleChange">
        <el-collapse-item title="外管信息" name="wg">
            <m-wg :model="model" :codes="codes" />
        </el-collapse-item>

潘际乾 committed
8
        <el-collapse-item title="对外付款/承兑通知书-基础信息" name="basp" v-if="model.bopmod.basflg != '' && model.bopmod.szflg == '1'">
jianglong committed
9 10 11 12 13 14 15
            <m-basp :model="model" :codes="codes" />
        </el-collapse-item>

        <el-collapse-item title="境内付款/承兑通知书-基础信息" name="basp1" v-if="model.bopmod.basflg != '' && model.bopmod.szflg == '2'">
            <m-basp1 :model="model" :codes="codes" />
        </el-collapse-item>

潘际乾 committed
16 17 18
        <el-collapse-item title="跨境人民币申报" name="cnyp1">
            <m-cnyp1 :model="model" :codes="codes" />
        </el-collapse-item>
jianglong committed
19

潘际乾 committed
20 21 22
        <el-collapse-item title="2111跨境支出信息" name="outp" v-show="model.cnybop.outflg == '1'">
            <m-outp :model="model" :codes="codes" />
        </el-collapse-item>
jianglong committed
23

潘际乾 committed
24 25 26
        <el-collapse-item title="资本项目" name="cfactlp">
            <m-cfactlp :model="model" :codes="codes" />
        </el-collapse-item>
jianglong committed
27 28 29

    </el-collapse>
</div>
严一鸣 committed
30
</template>
jianglong committed
31

严一鸣 committed
32
<script>
jianglong committed
33
import Api from "~/service/Api";
严一鸣 committed
34
import commonProcess from "~/mixin/commonProcess";
jianglong committed
35 36 37 38 39
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Brtset/Event";
import Wg from "./Wg";
import Cnyp1 from "./Cnyp1";
import Cfactlp from "./Cfactlp";
潘际乾 committed
40 41 42
import Basp from "./Basp";
import Basp1 from "./Basp1";
import Outp from "./Outp";
潘际乾 committed
43

严一鸣 committed
44 45

export default {
jianglong committed
46 47 48
    inject: ["root"],
    components: {
        "m-wg": Wg,
潘际乾 committed
49 50
        "m-basp": Basp,
        "m-basp1": Basp1,
jianglong committed
51
        "m-cnyp1": Cnyp1,
潘际乾 committed
52
        "m-outp": Outp,
jianglong committed
53 54 55
        "m-cfactlp": Cfactlp,
    },
    props: ["model", "codes"],
严一鸣 committed
56
    mixins: [commonProcess],
jianglong committed
57
    data() {
严一鸣 committed
58
        return {
jianglong committed
59 60
            activeNames: ["wg"],
        };
严一鸣 committed
61
    },
jianglong committed
62 63 64 65 66 67
    methods: {
        ...Event,
        handleChange() {}
    },
    created: function () {},
};
严一鸣 committed
68 69
</script>

jianglong committed
70
<style>
严一鸣 committed
71
</style>