index.vue 2.7 KB
Newer Older
wangguangchao committed
1 2 3 4 5
<template>
    <div class="eContainer">
        <el-form :model="model" :rules="rules" ref="modelForm" tokenKey="modelForm" label-width="170px" 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"> -->
潘际乾 committed
6 7 8
                    <c-content>
                        <m-menu :model="model" :codes="codes" ref="Menu"/>
                    </c-content>
wangguangchao committed
9 10 11 12 13 14 15 16
                <!-- </el-tab-pane> -->
            <!-- </c-tabs> -->
        </el-form>
    </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
潘际乾 committed
17
import Sptsel from "~/model/Sptsel"
wangren committed
18
import commonProcess from "~/mixin/commonProcess.js"
潘际乾 committed
19
import Pattern from "~/model/Sptsel/Pattern"
wangguangchao committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import Utils from "~/utils/index"
import Default from "~/model/Sptsel/Default";
import Check from "~/model/Sptsel/Check";
import Menu from "./Menu"
import Event from "~/model/Sptsel/Event"

export default {
    name: 'Sptbrk',
    components:{
        "m-menu" : Menu,
    },
    provide() {
        return {
            root: this
        }
    },
wangren committed
36
    mixins: [commonProcess],    // 里面包含了Default、Check等的公共处理
wangguangchao committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    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
            },
        }
    },
    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)
59
             this.$refs.Menu.sptfndHandleSearch();
wangguangchao committed
60 61
            //  that.$refs.Menu.stmData.columns = res.data.sptstm.rows;
        })
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    },
    computed: {
        reload: function(){
            return this.$store.state.Status.loading.freshPending;
        }
    },
    watch:{
        reload: function(val, oldVal){
            if(val){
                const that = this;
                that.init(that.model).then((res) => {
                    that.model = Utils.copyValueFromVO(that.model, res.data);
                    //请求草稿箱数据
                    this.$refs.Menu.sptfndHandleSearch();
                    //刷新页面后重置刷新状态为不刷新
                    this.$store.commit("setLoadingFreshPending", false)
                });
            }
        },
    },
wangguangchao committed
82 83 84 85
}
</script>
<style>
</style>