index.vue 3.91 KB
Newer Older
fukai committed
1 2 3 4 5
<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">
                   <!--smtp PD000000  -->
liaoxing committed
6
           <el-tab-pane :label="$t('smtp.对账单查询')" name="smtp01">
fukai committed
7 8 9 10 11 12 13 14 15
                <m-smtp01 :model="model" :codes="codes"/>
           </el-tab-pane>
       </c-tabs>
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"
liaoxing committed
16 17 18 19
import Smtsel from "../model/index"
import Check from "../model/Check"
import Default from "../model/Default"
import Pattern from "../model/Pattern"
fukai committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import Smtp01 from "./Smtp01"


export default {
    name: "Smtsel",
    components:{
        "m-smtp01" : Smtp01,
    },
    provide() {
        return {
            root: this
        }
    },
    mixins: [commonProcess],    // 里面包含了Default、Check等的公共处理
    data(){
        return {
liaoxing committed
36
            tabVal: "smtp01",
fukai committed
37 38 39 40 41 42 43 44
            trnName: "smtsel",
            trnType: "",
            model: new Smtsel().data,
            checkRules: Check,
            defaultRules: Default,
            pattern: Pattern,
            rules: null,
            codes: {
liaoxing committed
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 85 86 87 88 89 90
                // msgdrt:CodeTable.msgdrt,
                // blksta:CodeTable.blksta,
                // kpatyp:CodeTable.kpatyp,
                // cur:CodeTable.cur,
                // sdcflg:CodeTable.sdcflg,
                // smttyp:CodeTable.smttyp,
                // gpicod:CodeTable.gpicod,
                // mgssta:CodeTable.mgssta,
                // ljschk:CodeTable.ljschk,
                // offtyp:CodeTable.offtyp,
                // msgrng:CodeTable.msgrng,
                // fmssta:CodeTable.fmssta,
                // clrsys:CodeTable.clrsys,
                // errtyp:CodeTable.errtyp,
                // stacod:CodeTable.stacod,
                // dottyp:CodeTable.dottyp,
                // recsta:CodeTable.recsta,
                // cassta:CodeTable.cassta,
                // 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,
fukai committed
91 92 93 94 95 96 97 98 99 100 101 102 103
            },
        }
    },
    methods:{
        myTabClick(tab){
            this.tabClick(tab)
            /**
            *  do it yourself
            **/
        }
    },
    created:async function(){
        console.log("进入smtsel交易");
liaoxing committed
104 105 106 107 108
        // let rtnmsg = await this.init({})
        // if(rtnmsg.respCode == SUCCESS)
        // {
        //    this.updateModel(rtnmsg.data)
        //    //TODO 处理数据逻辑
fukai committed
109

liaoxing committed
110 111 112 113 114
        // }
        // else
        // {
        //     this.$notify.error({title: '错误',message: '服务请求失败!'});
        // }
fukai committed
115 116 117 118 119 120
    }
}
</script>
<style>

</style>