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

liushikai committed
4
        <!-- <div class="infTopBtn">
5 6 7 8 9 10 11
            <el-button-group>
                <c-button size="small" type="primary" icon="el-icon-arrow-left"></c-button>
                <c-button size="small" type="primary" icon="el-icon-arrow-right"></c-button>
            </el-button-group>
            <c-button size="small" type="primary">Print</c-button>
            <c-button size="small" type="primary">Use</c-button>
            <c-button size="small" type="primary">Loginfo</c-button>
liushikai committed
12
        </div> -->
13

liushikai committed
14
            <c-col :span="23">
15 16 17 18 19 20 21
                <c-istream-table :list="stmData.data" :columns="stmData.columns">
                    <el-table-column prop="op" label="OP" width="100">
                        <template slot-scope="scope">
                            <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
                        </template>
                    </el-table-column>
                </c-istream-table>
22 23 24 25 26 27
            </c-col>

    </c-content>
</template>
<script>
    import Api from "~/service/Api"
wangren committed
28
    import commonProcess from "~/mixin/commonProcess";
29 30 31 32 33 34
    import CodeTable from "~/config/CodeTable"
    import Event from "~/model/Infcpd/Event"

    export default {
        inject: ['root'],
        props: ["model", "codes"],
wangren committed
35
        mixins: [commonProcess],
36 37
        data() {
            return {
38 39 40 41 42 43 44 45
                stmData: {
                    columns: [
                        "1 1 \"Start\" 0 ",
                        "1 2 \"Status\" 0 ",
                        "1 3 \"Reference\" 0",
                        "1 4 \"Name\" 0",
                    ],
                    data: [
46

47 48
                    ]
                }
49 50 51 52 53 54 55 56 57 58 59
            }
        },
        methods: { ...Event },
        created: function () {

        }
    }
</script>
<style>

</style>