index.vue 3.29 KB
Newer Older
wangren committed
1 2 3 4 5 6 7 8 9 10 11
<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"
    >
wangren committed
12
      <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
wangren committed
13 14 15 16 17 18 19 20
        <!--PD000039 -->
        <el-tab-pane label="Search Panel" name="infsea">
          <m-infsea :model="model" :codes="codes" ref="infsea" />
        </el-tab-pane>
        <!--PD000000 -->
        <el-tab-pane label="Party" name="ptyp0">
          <m-ptyp0 :model="model" :codes="codes" ref="ptyp0" />
        </el-tab-pane>
wangren committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        <el-tab-pane label="Details" name="ptyp1">
          <m-ptyp1 :model="model" :codes="codes" ref="ptyp1" />
        </el-tab-pane>
        <el-tab-pane label="Additional Addresses" name="addadrp">
          <m-addadrp :model="model" :codes="codes" ref="addadrp" />
        </el-tab-pane>
        <el-tab-pane label="Info and Stoptext" name="ptytxt">
          <m-ptytxt :model="model" :codes="codes" ref="ptytxt" />
        </el-tab-pane>
        <el-tab-pane label="Accounts" name="actinf">
          <m-actinf :model="model" :codes="codes" ref="actinf" />
        </el-tab-pane>
        <el-tab-pane label="Contacts" name="ptcinf">
          <m-ptcinf :model="model" :codes="codes" ref="ptcinf" />
        </el-tab-pane>
        <el-tab-pane label="Authentication of Address" name="ptmpan">
          <m-ptmpan :model="model" :codes="codes" ref="ptmpan" />
        </el-tab-pane>
        <el-tab-pane label="Further Info and Stoptext" name="oitp">
          <m-oitp :model="model" :codes="codes" ref="oitp" />
        </el-tab-pane>
wangren committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55
      </c-tabs>
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import Infpty from "~/model/Infpty";
import commonProcess from "~/mixin/commonProcess";
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
56 57 58 59 60 61 62 63
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
64 65 66
export default {
  name: "Infpty",
  components: {
wangren committed
67 68 69 70 71 72 73 74 75
    "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,
wangren committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
  },
  provide() {
    return {
      root: this,
    };
  },
  mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
  data() {
    return {
      tabVal: "infsea",
      trnName: "infpty",
      model: new Infpty().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: { ...CodeTable },
    };
  },
  methods: {
wangren committed
96 97
    //修改原事件MytabClick的V-on
    
wangren committed
98 99 100 101 102
  },
  created: async function () {
    console.log("进入infpty交易");
    let rtnmsg = await this.init({});
    if (rtnmsg.respCode == SUCCESS) {
wangren committed
103 104
      this.updateModel(rtnmsg.data);//刷新前端数据
      
wangren committed
105 106 107 108 109 110 111 112
    } else {
      this.$notify.error({ title: "错误", message: "服务请求失败!" });
    }
  },
};
</script>
<style>
</style>