Ovwp.vue 701 Bytes
Newer Older
panziyi committed
1 2 3 4 5 6 7 8 9 10 11
<template>
  <div class="eibs-tab">
    <el-collapse v-model="activeNames">
      <el-collapse-item title="还款" name="ovwp1">
        <m-ovwp1 :model="model" :codes="codes" />
      </el-collapse-item>
    </el-collapse>
  </div>
</template>
<script>
import commonProcess from "~/mixin/commonProcess";
WH committed
12
import event from "../event";
panziyi committed
13 14 15 16 17 18 19 20
import Ovwp1 from "./Ovwp1";

export default {
  components: {
    "m-ovwp1": Ovwp1,
  },
  inject: ["root"],
  props: ["model", "codes"],
WH committed
21
  mixins: [commonProcess,event],
panziyi committed
22 23 24 25 26
  data() {
    return {
      activeNames: ["ovwp1"],
    };
  },
WH committed
27
  methods: {},
panziyi committed
28
  created: function () {},
WH committed
29
  computed: {},
panziyi committed
30 31 32 33 34 35 36
};
</script>
<style>
.marginLable {
  padding-left: 160px;
}
</style>