index.vue 2.26 KB
Newer Older
wangguangchao committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
  <div class="eContainer">
    <el-form
      :model="model"
      :rules="rules"
      ref="modelForm"
      tokenKey="modelForm"
      :validate-on-rule-change="false"
      label-width="150px"
      size="small"
    >
      <!-- <el-tabs ref="elment" type="card" @tab-click="tabClick">
                <el-tab-pane label="复核夹查询"> -->
liushikai committed
14
      <!-- <c-content> -->
wangguangchao committed
15
        <m-inftrnps :model="model" :codes="codes" ref="inftrnps" />
liushikai committed
16
      <!-- </c-content> -->
wangguangchao committed
17 18 19 20 21 22 23 24
      <!-- </el-tab-pane>
            </el-tabs> -->
    </el-form>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
潘际乾 committed
25
import Trnrel from "~/model/Trnrel";
wangren committed
26
import commonProcess from "~/mixin/commonProcess";
潘际乾 committed
27
import Pattern from "~/model/Trnrel/Pattern";
wangguangchao committed
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
import Default from "~/model/Trnrel/Default";
import Check from "~/model/Trnrel/Check";
import Inftrnps from "./Inftrnps";
import Utils from "~/utils/index";

// import * as poinMessage from '@/util/poin-common/messageManage.js'
import {
  TabPane,
  Col,
  Table,
  Form,
  FormItem,
  Upload,
  TableColumn,
  Card,
  Input,
  Button,
  Dialog,
  Select,
  Tabs,
  Option,
  DatePicker,
  Row,
} from "element-ui";
import Event from "~/model/Trnrel/Event";

export default {
  name: "Trnfnd",
  components: {
    "m-inftrnps": Inftrnps,
  },
wangren committed
59
  mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
wangguangchao committed
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 91 92
  computed: {},
  provide() {
    return {
      root: this,
    };
  },
  data() {
    return {
      trnName: "trnrel",
      model: new Trnrel().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: {
        dflg: CodeTable.dflg,
        bchtyp: CodeTable.bchtyp,
        usrsort: CodeTable.usrsort,
      },
    };
  },
  methods: {},
  mounted: async function () {
    console.log("进入trnrel交易");
    const that = this;
    that.init(that.model).then((res) => {
      //TODO 处理数据逻辑
        if ((res.data.trncorco_relflg = "W")) {
          res.data.trncorco_relflg = "R";
        }

      that.model = Utils.copyValueFromVO(that.model, res.data);
      //  that.$refs.inftrnps.stmData.columns=res.data.trncorco_trnstm.rows
liushikai committed
93
      this.$refs.inftrnps.trnfndhandleSearch();
wangguangchao committed
94 95 96 97 98 99
    });
  },
};
</script>
<style>
</style>