index.vue 4.56 KB
Newer Older
nanrui committed
1 2 3
<template>
    <c-page title="出口托收结算">
        <div class="eContainer">
4 5
            <c-function-btn :handleSubmit="handleSubmit" :handleCheck="handleCheck" :handleStash="handleStash">
            </c-function-btn>
nanrui committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
            <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right"
                size="small" :validate-on-rule-change="false">
                <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">

                    <!--PD000027 -->
                    <el-tab-pane label="setp" name="setp">
                        <m-setp :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000049 -->
                    <el-tab-pane label="inst" name="inst">
                        <m-inst :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000266 -->
                    <el-tab-pane label="ptyp" name="ptyp">
                        <m-ptyp :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000027 -->
nanrui committed
26
                    <el-tab-pane label="表外/或有" name="engp">
nanrui committed
27 28 29 30
                        <m-engp :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000000 -->
nanrui committed
31
                    <el-tab-pane label="费用及账务" name="setpan">
nanrui committed
32 33 34 35
                        <m-setpan :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000001 -->
nanrui committed
36
                    <el-tab-pane label="分录" name="glepan">
nanrui committed
37 38 39 40
                        <m-glepan :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000000 -->
nanrui committed
41
                    <el-tab-pane label="附言" name="coninfp">
nanrui committed
42 43 44 45
                        <m-coninfp :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000529 -->
nanrui committed
46
                    <el-tab-pane label="面函" name="docpan">
nanrui committed
47 48 49 50
                        <m-docpan :model="model" :codes="codes" />
                    </el-tab-pane>

                    <!--PD000546 -->
nanrui committed
51
                    <el-tab-pane label="附件" name="doctre">
nanrui committed
52 53 54 55 56 57 58 59 60 61 62 63
                        <m-doctre :model="model" :codes="codes" />
                    </el-tab-pane>
                </c-tabs>
            </el-form>
        </div>
    </c-page>
</template>
<script>
import Api from "~/service/Api"
import Utils from "~/utils/index"
import CodeTable from "~/config/CodeTable"
import Botpay from "~/model/Botpay"
64
import commonFuncs from "~/mixin/commonFuncs"
nanrui committed
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 93 94 95 96 97 98 99 100 101 102 103 104
import commonProcess from "~/mixin/commonProcess"
import Check from "~/model/Botpay/Check"
import Default from "~/model/Botpay/Default"
import Pattern from "~/model/Botpay/Pattern"
import Setp from "./Setp"
import Inst from "./Inst"
import Ptyp from "./Ptyp"
// import Engp from "./Engp"
// import Setpan from "./Setpan"
// import Glepan from "./Glepan"
// import Coninfp from "./Coninfp"
// import Docpan from "./Docpan"
// import Doctre from "./Doctre"

import Engp from "~/views/Public/Engp"
import Setpan from "~/views/Public/Setpan"
import Coninfp from "~/views/Public/Coninfp"
import Docpan from "~/views/Public/Docpan"
import Doctre from "~/views/Public/Doctre"
import Glepan from "~/views/Public/Glepan"


export default {
    name: "Botpay",
    components: {
        "m-setp": Setp,
        "m-inst": Inst,
        "m-ptyp": Ptyp,
        "m-engp": Engp,
        "m-setpan": Setpan,
        "m-glepan": Glepan,
        "m-coninfp": Coninfp,
        "m-docpan": Docpan,
        "m-doctre": Doctre,
    },
    provide() {
        return {
            root: this
        }
    },
105
    mixins: [commonProcess, commonFuncs],    // 里面包含了Default、Check等的公共处理
nanrui committed
106 107 108 109 110 111 112 113 114 115
    data() {
        return {
            tabVal: "setp",
            trnName: "botpay",
            model: new Botpay().data,
            checkRules: Check,
            defaultRules: Default,
            pattern: Pattern,
            rules: null,
            codes: {
nanrui committed
116
                ...CodeTable
nanrui committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
            },
        }
    },
    methods: {
        myTabClick(tab) {
            this.tabClick(tab)
            /**
            *  do it yourself
            **/
        }
    },
    created: async function () {
        console.log("进入botpay交易");
        let rtnmsg = await this.init({})
        if (rtnmsg.respCode == SUCCESS) {
            this.updateModel(rtnmsg.data)
            //TODO 处理数据逻辑

        }
        else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    }
}
</script>
<style>
</style>