index.vue 4.09 KB
Newer Older
wangren committed
1 2
<template>
  <div class="eContainer">
潘际乾 committed
3
    <c-page title="客户信息查询">
闫泽浩 committed
4
      <!-- <c-bus-button :$pntvm="this"></c-bus-button> -->
潘际乾 committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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
      <el-form
        :model="model"
        :rules="rules"
        ref="modelForm"
        label-width="120px"
        label-position="right"
        size="small"
        :validate-on-rule-change="false"
      >
        <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
          <!--PD000039 -->
          <el-tab-pane label="客户查询" name="infsea">
            <c-content>
              <m-infsea :model="model" :codes="codes" ref="infsea" />
            </c-content>
          </el-tab-pane>
          <!--PD000000 -->
          <el-tab-pane label="机构" name="ptyp0">
            <c-content>
              <m-ptyp0 :model="model" :codes="codes" ref="ptyp0" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="明细" name="ptyp1">
            <c-content>
              <m-ptyp1 :model="model" :codes="codes" ref="ptyp1" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="详细地址" name="addadrp">
            <c-content>
              <m-addadrp :model="model" :codes="codes" ref="addadrp" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="Info and Stoptext" name="ptytxt">
            <c-content>
              <m-ptytxt :model="model" :codes="codes" ref="ptytxt" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="账单" name="actinf">
            <c-content>
              <m-actinf :model="model" :codes="codes" ref="actinf" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="联系方式" name="ptcinf">
            <c-content>
              <m-ptcinf :model="model" :codes="codes" ref="ptcinf" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="认证地址" name="ptmpan">
            <c-content>
              <m-ptmpan :model="model" :codes="codes" ref="ptmpan" />
            </c-content>
          </el-tab-pane>
          <el-tab-pane label="Further Info and Stoptext" name="oitp">
            <c-content>
              <m-oitp :model="model" :codes="codes" ref="oitp" />
            </c-content>
          </el-tab-pane>
        </c-tabs>
      </el-form>
    </c-page>
wangren committed
65 66 67 68 69 70 71
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import Infpty from "~/model/Infpty";
import commonProcess from "~/mixin/commonProcess";
闫泽浩 committed
72
import commonFuncs from "~/mixin/commonFuncs";
wangren committed
73 74 75 76 77
import Check from "~/model/Infpty/Check";
import Default from "~/model/Infpty/Default";
import Pattern from "~/model/Infpty/Pattern";
import Infsea from "./Infsea";
import Ptyp0 from "./Ptyp0";
wangren committed
78 79 80 81 82 83 84
import Ptyp1 from "./Ptyp1";
import Addadrp from "./Addadrp";
import Ptytxt from "./Ptytxt";
import Actinf from "./Actinf";
import Ptcinf from "./Ptcinf";
import Ptmpan from "./Ptmpan";
import Oitp from "./Oitp";
wangren committed
85 86 87
export default {
  name: "Infpty",
  components: {
wangren committed
88 89 90 91 92 93 94 95 96
    "m-infsea":Infsea,
    "m-ptyp0":Ptyp0,
    "m-ptyp1":Ptyp1,
    "m-addadrp":Addadrp,
    "m-ptytxt":Ptytxt,
    "m-actinf":Actinf,
    "m-ptcinf":Ptcinf,
    "m-ptmpan":Ptmpan,
    "m-oitp":Oitp,
闫泽浩 committed
97
  }, 
wangren committed
98 99 100 101 102
  provide() {
    return {
      root: this,
    };
  },
闫泽浩 committed
103
  mixins: [commonProcess,commonFuncs], // 里面包含了Default、Check等的公共处理
wangren committed
104 105 106 107 108 109 110 111 112 113 114 115 116
  data() {
    return {
      tabVal: "infsea",
      trnName: "infpty",
      model: new Infpty().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: { ...CodeTable },
    };
  },
  methods: {
wangren committed
117
    //修改原事件MytabClick的V-on
闫泽浩 committed
118 119 120 121 122 123
    myTabClick(tab){
            this.tabClick(tab)
            /**
            *  do it yourself
            **/
        }
wangren committed
124
    
wangren committed
125 126 127 128 129
  },
  created: async function () {
    console.log("进入infpty交易");
    let rtnmsg = await this.init({});
    if (rtnmsg.respCode == SUCCESS) {
wangren committed
130 131
      this.updateModel(rtnmsg.data);//刷新前端数据
      
wangren committed
132 133 134 135 136 137 138 139
    } else {
      this.$notify.error({ title: "错误", message: "服务请求失败!" });
    }
  },
};
</script>
<style>
</style>