Ovwp.vue 828 Bytes
Newer Older
“yanyuxin” committed
1 2
<template>
  <div class="eibs-tab">
huangxin committed
3
    <el-collapse v-model="activeNames" @change="handleChange">
4

huangxin committed
5 6 7 8
      <el-collapse-item title="修正" name="ovwp1">
        <m-ovwp1 :model="model" :codes="codes" />
      </el-collapse-item>
    </el-collapse>
“yanyuxin” committed
9 10 11
  </div>
</template>
<script>
“yanyuxin” committed
12
import Api from "~/service/Api";
“yanyuxin” committed
13
import commonProcess from "~/mixin/commonProcess";
“yanyuxin” committed
14 15
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Trtame/Event";
huangxin committed
16
import Ovwp1 from "./Ovwp1";
“yanyuxin” committed
17

“yanyuxin” committed
18
export default {
huangxin committed
19 20 21
  components: {
    "m-ovwp1": Ovwp1,
  },
“yanyuxin” committed
22 23 24 25
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
huangxin committed
26 27 28 29 30 31
    return {
      activeNames: ["ovwp1"],
    };
  },
  methods: {
    ...Event,
“yanyuxin” committed
32 33
  },
  created: function () {},
huangxin committed
34 35
  computed: {
  },
“yanyuxin” committed
36
};
“yanyuxin” committed
37
</script>
huangxin committed
38 39 40 41 42
<style>
.marginLable {
  padding-left: 160px;
}
</style>