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

export default {
  name: "Qrtmgs",
  components: {
    "m-wtdselp": Wtdselp,
  },
  provide() {
    return {
      root: this
    }
  },
  mixins: [],
  data() {
    return {
      trnName: "qrtmgs",
      model: new Qrtmgs().data,
      rules: {},
      codes: {
        msgdrt: CodeTable.msgdrt,
        kpatyp: CodeTable.kpatyp,
        cur: CodeTable.cur,
        sdcflg: CodeTable.sdcflg,
        gpicod: CodeTable.gpicod,
        mgssta: CodeTable.mgssta,
        ljschk: CodeTable.ljschk,
        offtyp: CodeTable.offtyp,
        msgrng: CodeTable.msgrng,
        fmssta: CodeTable.fmssta,
        clrsys: CodeTable.clrsys,
        stacod: CodeTable.stacod,
        dottyp: CodeTable.dottyp,
        recsta: CodeTable.recsta,
        bnksta: CodeTable.bnksta,
        gpista: CodeTable.gpista,
        kpadir: CodeTable.kpadir,
        area: CodeTable.area,
        cpsfxdtyp: CodeTable.cpsfxdtyp,
        rspsta: CodeTable.rspsta,
        sta: CodeTable.sta,
        actsta: CodeTable.actsta,
        offsta: CodeTable.offsta,
        batcharge: CodeTable.batcharge,
        msgmst: CodeTable.msgmst,
        yosflg: CodeTable.yosflg,
        filtyp: CodeTable.filtyp,
        dircod: CodeTable.dircod,
        kpstyp: CodeTable.kpstyp,
        allmsgcod: CodeTable.allmsgcod,
        dcflg: CodeTable.dcflg,
        cipsstatus: CodeTable.cipsstatus,
        curcod: CodeTable.curcod,
        msgtyp: CodeTable.msgtyp,
        chncod: CodeTable.chncod,
        msgsta: CodeTable.msgsta,
        usratr: CodeTable.usratr,
        msgchksta: CodeTable.msgchksta,
        cipsmsgtype: CodeTable.cipsmsgtype,
        setmth: CodeTable.setmth,
        chniptcod: CodeTable.chniptcod,
        dtlchg: CodeTable.dtlchg,
      },
    }
  },
  methods: {
  },
  created: async function () {
    console.log("进入qrtmgs交易");
  }
}
</script>
<style></style>