index.vue 976 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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
<template>
  <div class="eContainer-search">
    <el-form :model="model" :rules="rules" ref="modelForm" label-width="120px" label-position="right" size="small">
      <c-content>
        <m-infsea :model="model" :codes="codes" ref="infsea" />
      </c-content>
    </el-form>
  </div>
</template>
<script>
import CodeTable from "~/config/CodeTable";
import Wgbsel from "../model";
import event from "../event";
import Infsea from "./Infsea";
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";

export default {
  name: "Wgbsel",
  components: {
    "m-infsea": Infsea
  },
  provide() {
    return {
      root: this
    };
  },
  mixins: [operationFunc, event, commonDepend],
  data() {
    return {
      tabVal: "",
      trnName: "wgbsel",
      model: new Wgbsel().data,
      codes: { ...CodeTable }
    };
  }
};
</script>
<style scoped lang="less">
::v-deep .c-content-scrollbar {
  height: 100% !important;
}
</style>