Glepan.vue 2.23 KB
Newer Older
1 2 3
<template>
  <div class="eibs-tab">
                              
潘际乾 committed
4
       <!-- <c-col :span="12">
5 6 7
        <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>
潘际乾 committed
8 9
       </c-col>              -->
       <!-- <c-col :span="22" offset="1">
liushikai committed
10 11 12 13 14 15 16 17 18 19 20
        <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>
潘际乾 committed
21
    </c-col> -->
liushikai committed
22
    
潘际乾 committed
23
    <c-col :span="22" :offset="1">
liushikai committed
24 25
           <c-istream-table :list="stmData.data" :columns="stmData.columns">
           </c-istream-table>
潘际乾 committed
26
    </c-col>
27 28 29 30
  </div>
</template>
<script>
import Api from "~/service/Api"
31
import CommonProcess from "~/mixin/CommonProcess";
32 33 34 35
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cptopn/Event"

export default {
36
    inject: ['root'],
37
    mixins: [CommonProcess],
38 39 40
    props:["model","codes"],
    data(){
        return {
liushikai committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54
            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: []
            }
55 56 57 58 59 60 61 62 63 64 65
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>