<template>
  <div class="eContainer-search">
    <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small"
      :validate-on-rule-change="false">
      <c-content>
        <m-mainpl :model="model" :codes="codes" />
      </c-content>
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Bsnsel from "../model"
import Mainpl from "./Mainpl"

export default {
  name: "Bsnsel",
  components: {
    "m-mainpl": Mainpl,
  },
  provide() {
    return {
      root: this
    }
  },
  mixins: [],
  data() {
    return {
      tabVal: "",
      trnName: "bsnsel",
      trnType: "",
      model: new Bsnsel().data,
      rules: null,
      codes: {
        rspsta: CodeTable.rspsta,
        chncod: CodeTable.chncod,
        stacod: CodeTable.stacod,
        msgmst: CodeTable.msgmst,
        dtlchg: CodeTable.dtlchg,
      },
    }
  },
  methods: {
    
  },
  created: async function () {
    
  }
}
</script>
<style></style>