Gleinfp.vue 4.77 KB
Newer Older
niewei committed
1 2 3 4 5 6 7 8
<template>
    <c-content class="eibs-tab" :height="200">
        <div class="infTopBtn">
            <el-button-group>
                <c-button size="small" type="primary" icon="el-icon-arrow-left"></c-button>
                <c-button size="small" type="primary" icon="el-icon-arrow-right"></c-button>
            </el-button-group>
            <c-button size="small" type="primary">Print</c-button>
niewei committed
9 10
            <c-button size="small" type="primary">Use</c-button>
            <c-button size="small" type="primary">Loginfo</c-button>
niewei committed
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        </div>
        </p>
        <c-row>
            <c-col :span="11" :offset="1">
                <c-row>
                    <c-col :span="14">
                        <el-form-item label="Booking date from" prop="infcon.seabucdatfro">
                            <c-date-picker type="date" v-model="model.infcon.seabucdatfro" style="width:100%"
                                placeholder="请选择Booking date from"></c-date-picker>
                        </el-form-item>
                    </c-col>
                    <c-col :span="10">
                        <el-form-item label="to" prop="infcon.seabucdatto" label-width="40px">
                            <c-date-picker type="date" v-model="model.infcon.seabucdatto" style="width:100%"
                                placeholder="请选择Booking date till used on GLEINFP"></c-date-picker>
                        </el-form-item>
                    </c-col>
                </c-row>
            </c-col>
            <c-col :span="11" :offset="1">
                <el-form-item label="Transaction INR" prop="infcon.seatrninr">
                    <c-input v-model="model.infcon.seatrninr" maxlength="8" placeholder="请输入Transaction INR"></c-input>
                </el-form-item>
            </c-col>
        </c-row>

        <c-row>
            <c-col :span="22" :offset="1">
                <c-table :border="true" :list="model.infcon.glestm" style="text-align:center">
                    <el-table-column prop="" label="TRNINR" width="auto"></el-table-column>
                    <el-table-column prop="" label="Account" width="auto"></el-table-column>
                    <el-table-column prop="" label="D/C" width="auto"></el-table-column>
                    <el-table-column prop="" label="Cur" width="auto"></el-table-column>
                    <el-table-column prop="" label="Amount" width="auto"></el-table-column>
                    <el-table-column prop="" label="Val.Date" width="auto"></el-table-column>
                    <el-table-column prop="" label="Booking Text 1" width="auto"></el-table-column>
                    <el-table-column prop="" label="Booking Text 2" width="auto"></el-table-column>
                    <el-table-column prop="" label="Booking Text 3" width="auto"></el-table-column>
                    <el-table-column prop="" label="P.N." width="auto"></el-table-column>
                    <el-table-column prop="" label="Exp.Session" width="auto"></el-table-column>
                    <el-table-column prop="" label="Exp.Status" width="auto"></el-table-column>
                </c-table>
            </c-col>
        </c-row>
     <!--                                          
       <c-col :span="12">
        <el-form-item label="Booking date from" prop="infcon.seabucdatfro">
            <c-date-picker type="date"  v-model="model.infcon.seabucdatfro" style="width:100%"  placeholder="请选择Booking date from"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Booking date till used on GLEINFP" prop="infcon.seabucdatto">
            <c-date-picker type="date"  v-model="model.infcon.seabucdatto" style="width:100%"  placeholder="请选择Booking date till used on GLEINFP"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Transaction INR" prop="infcon.seatrninr">
            <c-input  v-model="model.infcon.seatrninr" maxlength="8"  placeholder="请输入Transaction INR"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Stream of GLEs" prop="infcon.glestm">
            <c-input  v-model="model.infcon.glestm"  placeholder="请输入Stream of GLEs"></c-input>
        </el-form-item>
       </c-col>
    -->
  </c-content>
</template>
<script>
import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbfd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [CommonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>