index.vue 3 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<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">
                   <!--rsmp PD000011 疑似重复主页面 -->
           <el-tab-pane :label="$t('rsmp.PD000011')" name="rsmp">
                <m-rsmp :model="model" :codes="codes"/>
           </el-tab-pane>
       </c-tabs>
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
16
import Msgrsm from "../model"
fukai committed
17
import commonProcess from "~/mixin/commonProcess"
18 19 20
import Check from "../model/Check"
import Default from "../model/Default"
import Pattern from "../model/Pattern"
fukai committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
import Rsmp from "./Rsmp"


export default {
    name: "Msgrsm",
    components:{
        "m-rsmp" : Rsmp,
    },
    provide() {
        return {
            root: this
        }
    },
    mixins: [commonProcess],    // 里面包含了Default、Check等的公共处理
    data(){
        return {
37
            tabVal: "rsmp",
fukai committed
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 85
            trnName: "msgrsm",
            trnType: "",
            model: new Msgrsm().data,
            checkRules: Check,
            defaultRules: Default,
            pattern: Pattern,
            rules: null,
            codes: {
                kpatyp:CodeTable.kpatyp,
                cur:CodeTable.cur,
                sdcflg:CodeTable.sdcflg,
                gpicod:CodeTable.gpicod,
                fmssta:CodeTable.fmssta,
                clrsys:CodeTable.clrsys,
                stacod:CodeTable.stacod,
                bnksta:CodeTable.bnksta,
                gpista:CodeTable.gpista,
                kpadir:CodeTable.kpadir,
                area:CodeTable.area,
                cpsfxdtyp:CodeTable.cpsfxdtyp,
                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,
                dcflg:CodeTable.dcflg,
                msgtyp:CodeTable.msgtyp,
                chncod:CodeTable.chncod,
                msgsta:CodeTable.msgsta,
                usratr:CodeTable.usratr,
                setmth:CodeTable.setmth,
            },
        }
    },
    methods:{
        myTabClick(tab){
            this.tabClick(tab)
            /**
            *  do it yourself
            **/
        }
    },
    created:async function(){
        console.log("进入msgrsm交易");
86
        let rtnmsg = {}; // await this.init({})
fukai committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
        if(rtnmsg.respCode == SUCCESS)
        {
           this.updateModel(rtnmsg.data)
           //TODO 处理数据逻辑

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

</style>