Glepan.vue 1.13 KB
Newer Older
潘际乾 committed
1 2
<!--

wangguangchao committed
3 4
<template>
  <div class="eibs-tab">
潘际乾 committed
5
       <c-col :span="22" :offset="1">
liushikai committed
6 7
           <c-istream-table :list="stmData.data" :columns="stmData.columns">
           </c-istream-table>
潘际乾 committed
8
       </c-col>
wangguangchao committed
9 10 11 12
  </div>
</template>
<script>
import Api from "~/service/Api"
13
import CommonProcess from "~/mixin/CommonProcess";
wangguangchao committed
14 15 16 17
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Ditopn/Event"

export default {
18
    inject: ['root'],
19
    mixins: [CommonProcess],
wangguangchao committed
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
    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>
潘际乾 committed
49 50

-->