Gleinfp.vue 2.17 KB
Newer Older
唐贵贤 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
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="5">
        <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="5" >
        <el-form-item label="to" 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" :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-col :span="20">
        <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.glestm"
      >
      </c-istream-table>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
34
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
35 36 37 38 39 40
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbtd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
41
    mixins: [commonProcess],
唐贵贤 committed
42 43 44 45
    data(){
        return {
             stmData: {
        columns: [
唐贵贤 committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
          '1 1 "TrnINR" 155 ',
          '8 2 "Account" 155',
          '9 3 "D/C" 155',
          '11 4 "Cur." 155',
          '12 4 "s.Cur" 155',
          '18 5 "Amount" 155',
          '3 5 "Sys.Amount" 155',
          '4 6 "Val.Date" 155',
          '5 6 "Book.Date" 155',
          '15 7 "Booking Text 1" 155',
          '12 7 "Booking Text 2" 155',
          '18 7 "Booking Text 3" 155',
          '3 8 "P.N." 155',
          '4 9 "Exp.Session" 155',
          '5 9 "Exp.Status" 155',
唐贵贤 committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74
        ],
        data: [],
      },
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>