index.vue 1.58 KB
Newer Older
fukai committed
1 2 3
<template>
  <div class="eContainer">
    <el-form :model="model" :rules="rules" ref="modelForm" label-width="100px" size="small">
liushikai committed
4
       <c-tabs :value="tabVal" ref="elment" type="card" @tab-click="tabClick">
fukai committed
5 6 7 8 9 10 11 12 13 14 15 16 17
        
            <!--PD000008 -->
           <el-tab-pane label="国内证单据查询" name="infsea">
                <m-infsea :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 Bddsel from "~/model/Bddsel"
wangren committed
18
import commonProcess from "~/mixin/commonProcess"
fukai committed
19 20 21 22 23
import Pattern from "~/model/Bddsel/Pattern"
import Infsea from "./Infsea"


export default {
潘际乾 committed
24
    name: 'Bddsel',
fukai committed
25 26 27 28 29
    components:{
        "m-infsea" : Infsea,
    },
    provide() {
        return {
liushikai committed
30
            root: this,
fukai committed
31 32
        }
    },
wangren committed
33
    mixins: [commonProcess],    // 里面包含了Default、Check等的公共处理
fukai committed
34 35
    data(){
        return {
liushikai committed
36
            tabVal:"infsea",
fukai committed
37 38 39 40 41 42 43 44 45 46 47 48 49
            model:new Bddsel().data,
            // defaultRule:Default,
            // rules:this.mergeRules(Pattern,Check),
            rules:Pattern,
           codes:{...CodeTable},
        }
    },
    methods:{
        tabClick(){
        }
    },
    created:async function(){
        console.log("进入bddsel交易");
潘际乾 committed
50
        let rtnmsg = await this.init({})
fukai committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
        if(rtnmsg.retcod == SUCCESS)
        {
           //TODO 处理数据逻辑

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

</style>