Genpan.vue 1.01 KB
Newer Older
1
<template>
2
    <c-content class="eibs-tab" :height="200">
3

4
        <c-row class="infrow" style="margin-top: 20px;">
5 6 7 8 9 10 11
            <c-col :span="22" :offset="1">
                <c-table :border="true" :list="model.recpan.prfmod.genfld" style="text-align:center">
                    <el-table-column prop="flddsc" label="Field" width="auto"></el-table-column>
                    <el-table-column prop="fldcnt" label="Content" width="auto"></el-table-column>
                </c-table>
            </c-col>
        </c-row>
12

13
    </c-content>
14 15
</template>
<script>
16 17 18 19
    import Api from "~/service/Api"
    import CommonProcess from "~/mixin/CommonProcess";
    import CodeTable from "~/config/CodeTable"
    import Event from "~/model/Infusr/Event"
20

21 22 23 24 25 26
    export default {
        inject: ['root'],
        props: ["model", "codes"],
        mixins: [CommonProcess],
        data() {
            return {
27

28 29 30 31
            }
        },
        methods: { ...Event },
        created: function () {
32

33
        }
34 35 36 37 38
    }
</script>
<style>

</style>