Addbcb.vue 627 Bytes
Newer Older
1
<template>
WF1020 committed
2 3 4 5 6 7 8
  <div class="eibs-tab">
    <el-collapse v-model="activeNames">
      <el-collapse-item title="提示信息" name="coninfp">
        <m-coninfp :model="model" :codes="codes" />
      </el-collapse-item>
    </el-collapse>
  </div>
wanggang_yf committed
9
</template>
10
    
wanggang_yf committed
11
<script>
WF1020 committed
12
import event from "../event";
wanggang_yf committed
13 14 15
import Coninfp from "~/views/Public/Coninfp";

export default {
WF1020 committed
16 17 18
  components: {
    "m-coninfp": Coninfp,
  },
wanggang_yf committed
19 20 21 22
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
WF1020 committed
23 24 25 26
    return {
      activeNames: ["coninfp"],
    };
  },
wanggang_yf committed
27 28
  methods: {},
  created: function () {},
WF1020 committed
29
};
wanggang_yf committed
30
</script>
31
    
wanggang_yf committed
32
<style></style>
33