<template> <div class="eibs-tab"> <c-col :span="8" style="height: 24px" > <el-form-item label="Contact Persons" class="messageLabel"> </el-form-item> </c-col> <c-table :border="true" :list="data" ref="table" style="width:80%,text-aligen:center" height="500" :paginatonShow="false"> <el-table-column label="Gender" width="auto" prop="gen" ></el-table-column> <el-table-column label="Name" width="auto" prop="nam" sortable ></el-table-column> <el-table-column label="Department" width="auto" prop="dep" sortable ></el-table-column> <el-table-column label="Office Phone" width="auto" prop="teloff" sortable ></el-table-column> <el-table-column label="E-mail" width="auto" prop="eml" sortable ></el-table-column> <el-table-column label="Telefax" width="auto" prop="telfax" sortable ></el-table-column> </c-table> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" import Event from "~/model/Infpty/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { data:[] } }, methods:{...Event}, created:function(){ } } </script> <style> </style>