<template>
    <div class="eibs-tab">
                                
         <!-- <c-col :span="12">
          <el-form-item label="Booking stream to Display">
              <c-input  v-model="model.setmod.glemod.gleshwstm"  placeholder="请输入Booking stream to Display"></c-input>
          </el-form-item>
         </c-col>              -->
         <!-- <c-col :span="22" offset="1">
          <c-table :border="true" :list="data" style="width:80%,text-align:center" height="">
              <el-table-column label="D/C" width="auto"></el-table-column>
              <el-table-column label="Account Number" width="auto"></el-table-column>
              <el-table-column label="Cur" width="auto"></el-table-column>
              <el-table-column label="Amount" width="auto"></el-table-column>
              <el-table-column label="Value Date" width="auto"></el-table-column>
              <el-table-column label="Rate Type" width="auto"></el-table-column>
              <el-table-column label="Rate" width="auto"></el-table-column>
              <el-table-column label="Term" width="auto"></el-table-column>
              <el-table-column label="PN" width="auto"></el-table-column>
          </c-table>
      </c-col> -->
      
      <c-col :span="22" :offset="1">
             <c-istream-table :list="stmData.data" :columns="stmData.columns">
             </c-istream-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/Cltset/Event"
  
  export default {
      inject: ['root'],
      mixins: [commonProcess],
      props:["model","codes"],
      data(){
          return {
              stmData: {
                  columns: [
                      "2 1 \"D/C\" 38 1 0",
                      "6 2  \"Account Number\" 140",
                      "3 3 \"Cur\" 60",
                      "4 4 \"Amount\" 135 2 8:1 2 5",
                      "5 5 \"Value Date\" 80",
                      "7 6 \"Rate Type\" 90",
                      "8 7 \"Rate\" 85 2 0 1 0",
                      "9 8 \"Term\" 60",
                      "0 9 \"PN\" 62 1 0"
                  ],
                  data: []
              }
          }
      },
      methods:{...Event},
      created:function(){
  
      }
  }
  </script>
  <style>
  
  </style>