<template>
  <div class="eContainer">
    <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small"
      :validate-on-rule-change="false">
      <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
        <!--oftp PD001964 挂账主pnl -->
        <el-tab-pane :label="$t('oftp.PD001964')" name="ofghngmainpnl">
          <m-ofghngmainpnl :model="model" :codes="codes" />
        </el-tab-pane>
      </c-tabs>
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Ofthng from "../model"
import Check from "../model/Check"
import Default from "../model/Default"
import Pattern from "../model/Pattern"
import Ofghngmainpnl from "./Ofghngmainpnl"


export default {
  name: "Ofthng",
  components: {
    "m-ofghngmainpnl": Ofghngmainpnl,
  },
  provide() {
    return {
      root: this
    }
  },
  mixins: [],
  data() {
    return {
      tabVal: "ofghngmainpnl",
      trnName: "ofthng",
      trnType: "",
      model: new Ofthng().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: {
        ...CodeTable
      },
    }
  },
  methods: {
    myTabClick(tab) {
      this.tabClick(tab)
      /**
      *  do it yourself
      **/
    }
  },
  created: async function () {
    console.log("进入ofthng交易");
    let rtnmsg = {}; // await this.init({})
    if (rtnmsg.respCode == SUCCESS) {
      this.updateModel(rtnmsg.data)
      //TODO 处理数据逻辑

    }
    else {
      this.$notify.error({ title: '错误', message: '服务请求失败!' });
    }
  }
}
</script>
<style></style>