Usrp3.vue 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<template>
  <div class="eibs-tab">
    <c-col :span="22" :offset="1">
              <c-table :border="true" :list="model.recgrp.bchulr" 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="bchref" label="Default Client" width="auto">
                    <template slot-scope="scope">
                        <c-checkbox disabled v-model="scope.row.bchref"></c-checkbox>
                    </template>
                  </el-table-column>
              </c-table>
          </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Dbibch/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>