index.vue 1.94 KB
Newer Older
fukai committed
1
<template>
wangren committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  <div class="eContainer">
    <el-form
      :model="model"
      :rules="rules"
      ref="modelForm"
      tokenKey="modelForm"
      label-width="140px"
      size="small"
      :validate-on-rule-change="false"
    >
      <!-- <c-tabs :value="tabVal" ref="elment" type="card" @tab-click="tabClick"> -->
      <!-- <el-tab-pane :value="tabVal" label="待办任务查询" name="menu"> -->
      <!-- <c-content> -->
      <m-menu :model="model" :codes="codes" ref="Menu" />
      <!-- </c-content> -->
      <!-- </el-tab-pane> -->
      <!-- </c-tabs> -->
    </el-form>
  </div>
fukai committed
21 22 23 24
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
潘际乾 committed
25
import Sptsel from "~/model/Sptsel"
wangren committed
26
import commonProcess from "~/mixin/commonProcess.js"
潘际乾 committed
27
import Pattern from "~/model/Sptsel/Pattern"
liuxin committed
28
import Utils from "~/utils/index"
29 30
import Default from "~/model/Sptsel/Default";
import Check from "~/model/Sptsel/Check";
wangren committed
31 32
import Menu from "./Menu";
import Event from "~/model/Sptsel/Event";
fukai committed
33 34

export default {
wangren committed
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 65 66 67 68 69 70 71 72 73
  name: "Sptsel",
  components: {
    "m-menu": Menu,
  },
  provide() {
    return {
      root: this,
    };
  },
  mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
  computed: {},
  data() {
    return {
      tabVal: "menu",
      trnName: "sptsel",
      model: new Sptsel().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: {
        flt: CodeTable.flt,
        dflg: CodeTable.dflg,
        sptrelstatus: CodeTable.sptrelstatus,
      },
    };
  },
  methods: { ...Event },
  mounted: async function () {
    console.log("进入sptsel交易");
    const that = this;
    that.init(that.model).then((res) => {
      //TODO 处理数据逻辑
      that.model = Utils.copyValueFromVO(that.model, res.data);
      //  that.$refs.Menu.stmData.columns = res.data.sptstm.rows;
      this.$refs.Menu.handleSearch();
    });
  },
};
fukai committed
74 75 76
</script>
<style>
</style>