index.vue 2.3 KB
Newer Older
fukai committed
1 2
<template>
  <div class="eContainer">
李少勇 committed
3 4 5 6 7
    <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>
fukai committed
8 9 10 11 12 13
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
14
import Qrtmgs from "../model"
李少勇 committed
15
// import Check from "../model/Check.js"
fukai committed
16 17 18
import Wtdselp from "./Wtdselp"

export default {
李少勇 committed
19 20 21 22 23 24 25
  name: "Qrtmgs",
  components: {
    "m-wtdselp": Wtdselp,
  },
  provide() {
    return {
      root: this
fukai committed
26
    }
李少勇 committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
  },
  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交易");
  }
fukai committed
85 86
}
</script>
李少勇 committed
87
<style></style>