Engp.vue 2.22 KB
Newer Older
fukai committed
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
<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="业务" prop="trntyp" align="left">
            <template slot-scope="scope">
              <span> {{getCodelabel(scope.row.trntyp,"trntyp") }}
              </span>
            </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>