<template> <div class="eibs-tab"> <!-- <c-col :span="8"> <c-button size="medium" type="primary" @click="queryCbbDataInCbb">查询 </c-button> </c-col> --> <div style="height: 90%"> <!-- <c-col :span="24" style="height: 24px"> <el-form-item class="formItemLabel" label="表外信息:" label-width="108px"> </el-form-item> </c-col> --> <c-col :span="24"> <el-table id='infgidSpTableRef' :data="liatableData" :highlight-current-row="true" :border="true" style="width:100%" size="medium"> <el-table-column label="业务" width="180px" prop="trntyp" align="left"> <template slot-scope="scope"> <c-select-value-to-label v-model="scope.row.trntyp" :code="codes.liatrntyp"> </c-select-value-to-label> </template> </el-table-column> <el-table-column label="类型" prop="cbtpfx" align="left"> <template slot-scope="scope"> <span> {{getCodelabel(scope.row.cbtpfx,"cbtpfx") }} </span> </template> </el-table-column> <el-table-column label="期限" prop="tenday" align="left"> </el-table-column> <el-table-column label="借方" prop="rol" align="left"> </el-table-column> <el-table-column label="贷方" prop="rol1" align="left"> </el-table-column> <el-table-column label="币种" prop="cur" width="80" align="left"> </el-table-column> <el-table-column label="金额" prop="amt" align="left"> </el-table-column> <el-table-column label="借方账号" width="220" prop="acc" align="left"> </el-table-column> <el-table-column label="贷方账号" width="220" prop="acc2" align="left"> </el-table-column> </el-table> </c-col> </div> </div> </template> <script> import Api from "~/service/Api"; import CodeTable from "~/config/CodeTable"; import event from "../event"; export default { inject: ["root"], props: ["model", "codes","liatableData","obj"], mixins: [event], data() { return { cbsload: false, // cbstableData: [] }; }, // mounted:{ // }, methods: { } // created:function(){ // } }; </script> <style> </style>