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

huangxin committed
5 6 7
      <el-collapse-item title="保兑信息" name="conp">
        <m-conp :model="model" :codes="codes" />
      </el-collapse-item>
8

huangxin committed
9 10 11
      <el-collapse-item title="概览信息" name="ovwp1">
        <m-ovwp1 :model="model" :codes="codes" />
      </el-collapse-item>
12

huangxin committed
13 14 15
      <el-collapse-item title="附加金额" name="aamp" v-if="model.letp.aamp.aammod.addamtflg">
        <m-aamp :model="model" :codes="codes" />
      </el-collapse-item>
16

huangxin committed
17
    </el-collapse>
lianyang committed
18 19 20
  </div>
</template>
<script>
huangxin committed
21
import Api from "~/service/Api";
lianyang committed
22
import commonProcess from "~/mixin/commonProcess";
huangxin committed
23 24 25 26 27
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event";
import Conp from "./Conp"
import Ovwp1 from "./Ovwp1"
import Aamp from "./Aamp"
lianyang committed
28 29

export default {
huangxin committed
30 31 32 33 34 35
  components: {
    "m-conp": Conp,
    "m-ovwp1": Ovwp1,
    "m-aamp": Aamp,
  },
  inject: ["root"],
36 37 38 39
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
huangxin committed
40 41
      activeNames: ["conp"],
    };
42
  },
huangxin committed
43 44
  methods: {
    ...Event,
45
  },
huangxin committed
46 47
  created: function () {},
  computed: {
48
  },
huangxin committed
49
};
lianyang committed
50 51
</script>
<style>
52
.marginLable {
huangxin committed
53
  padding-left: 160px;
54
}
lianyang committed
55
</style>