Limitbody.vue 1.01 KB
Newer Older
wangna committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11
    <el-collapse v-model="activeNames" @change="handleChange">
      <el-collapse-item title="统一授信" name="limitbody1">
        <m-limitbody1 :model="model" :codes="codes" />
      </el-collapse-item>

      <!-- <el-collapse-item title="试算结果" name="shisuan">
              <m-shisuan :model="model" :codes="codes" />
          </el-collapse-item> -->
    </el-collapse>
wangna committed
12 13
  </div>
</template>
14
  
wangna committed
15 16 17
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
18 19 20 21 22
import Utils from "~/utils";
import Event from "~/model/Betcan/Event";

import Limitbody1 from "~/views/Public/Limitbody";

wangna committed
23 24

export default {
25 26 27
  components: {
    "m-limitbody1": Limitbody1,
  },
wangna committed
28 29 30 31 32
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
33
      activeNames: ["limitbody1"],
wangna committed
34
    };
35

wangna committed
36 37
  },
  methods: {
38 39 40
    ...Event,
    handleChange(val) {
      console.log(val);
wangna committed
41 42
    },
  },
43
  created: function () { },
wangna committed
44 45
};
</script>
46
  
wangna committed
47
<style>
48

wangna committed
49
</style>
50