index.vue 2.88 KB
Newer Older
wangguangchao committed
1
<template>
潘际乾 committed
2
    <div class="eContainer-search">
wangguangchao committed
3 4 5
        <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
                    <c-content>
nanrui committed
7
                        <m-menu :model="model" :codes="codes" ref="菜单"/>
潘际乾 committed
8
                    </c-content>
wangguangchao committed
9 10 11
                <!-- </el-tab-pane> -->
            <!-- </c-tabs> -->
        </el-form>
liuxin committed
12 13 14 15 16
        <c-grid-ety-prompt-dialog 
            ref="etyDialog" 
            :promptData="promptData"
            v-on:select-ety="selectEty">
        </c-grid-ety-prompt-dialog>
wangguangchao committed
17 18 19 20 21
    </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
潘际乾 committed
22
import Sptsel from "~/model/Sptsel"
wangren committed
23
import commonProcess from "~/mixin/commonProcess.js"
潘际乾 committed
24
import Pattern from "~/model/Sptsel/Pattern"
wangguangchao committed
25 26 27 28 29
import Utils from "~/utils/index"
import Default from "~/model/Sptsel/Default";
import Check from "~/model/Sptsel/Check";
import Event from "~/model/Sptsel/Event"

nanrui committed
30 31
import Menu from "./Menu"

wangguangchao committed
32 33 34 35 36 37 38 39 40 41
export default {
    name: 'Sptbrk',
    components:{
        "m-menu" : Menu,
    },
    provide() {
        return {
            root: this
        }
    },
wangren committed
42
    mixins: [commonProcess],    // 里面包含了Default、Check等的公共处理
wangguangchao committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    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)
65
             this.$refs.Menu.sptfndHandleSearch();
wangguangchao committed
66 67
            //  that.$refs.Menu.stmData.columns = res.data.sptstm.rows;
        })
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    },
    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
88 89 90 91
}
</script>
<style>
</style>