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

4 5 6 7
        <div class="infTopBtn">
            <c-button size="small" type="primary">全空</c-button>
            <c-button size="small" type="primary">全选</c-button>
        </div>
8

9
        <c-row class="infrow" style="margin-top: 50px;">
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
            <c-col :span="22" :offset="1">
                <c-table :border="true" :list="model.recgrp.usrucl" style="text-align:center">
                    <el-table-column prop="mannam" label="Client name" width="auto"></el-table-column>
                    <el-table-column prop="bchinr" label="Bchinr" width="auto"></el-table-column>
                    <el-table-column prop="branch" label="机构号" width="auto"></el-table-column>
                    <el-table-column prop="usracc" label="Related Client" width="auto"></el-table-column>
                    <el-table-column prop="usrdef" label="Default Client" width="auto"></el-table-column>
                    <el-table-column prop="assignflg" label="是否参与任务分配" width="auto"></el-table-column>
                    <el-table-column prop="objlst" label="可处理业务品种" width="auto"></el-table-column>
                </c-table>
            </c-col>
        </c-row>


    </c-content>
25 26
</template>
<script>
27
    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/Infusr/Event"

    export default {
        inject: ['root'],
        props: ["model", "codes"],
wangren committed
35
        mixins: [commonProcess],
36 37 38 39 40 41 42
        data() {
            return {

            }
        },
        methods: { ...Event },
        created: function () {
43 44 45 46 47 48 49

        }
    }
</script>
<style>

</style>