Addbcb.vue 1.03 KB
Newer Older
huangxin committed
1
<template>
hewei committed
2 3 4 5 6 7 8 9
  <div class="eibs">
    <el-collapse v-model="activeNames" @change="handleChange">

      <!--el-collapse-item title="备查表" name="addbcb1">
          <m-addbcb1 :model="model" :codes="codes" />
      </el-collapse-item-->

      <el-collapse-item title="附言" name="coninfp">
huangxin committed
10
        <m-coninfp :model="model" :codes="codes" />
hewei committed
11 12
      </el-collapse-item>

huangxin committed
13

hewei committed
14
    </el-collapse>
huangxin committed
15 16

  </div>
hewei committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
</template>

<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import Utils from "~/utils";
import Event from "~/model/Litcan/Event";
//import Addbcb1 from "~/views/Public/Addbcb1";
import Coninfp from "~/views/Public/Coninfp";

export default {
  components: {

    "m-coninfp": Coninfp,
    //"m-addbcb1": Addbcb1,
  },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {

      activeNames: ["coninfp"],
    };

  },
  methods: {
    ...Event,
    handleChange(val) {
      console.log(val);
huangxin committed
47
    },
hewei committed
48 49 50 51
  },
  created: function () {},
};
</script>
huangxin committed
52

hewei committed
53 54
<style>
</style>