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

nanrui committed
26 27
import Menu from "./Menu";

fukai committed
28
export default {
wangren committed
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 65 66 67
  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
68 69
</script>
<style>
nanrui committed
70

fukai committed
71
</style>