Gleinfp.vue 2.26 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<template>
  <div class="eibs-tab">
    <c-col :span="6">
      <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"
        ></c-date-picker>
      </el-form-item>
    </c-col>

    <c-col :span="6">
      <el-form-item label="to" prop="infcon.seabucdatto">
        <c-date-picker
          type="date"
          v-model="model.infcon.seabucdatto"
          style="width: 100%"
          placeholder="请选择end date"
        ></c-date-picker>
      </el-form-item>
    </c-col>

    <c-col :span="8" :offset="2">
      <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="22">
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.glestm"
      >
      </c-istream-table>
      <!--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>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
50
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
51 52 53 54 55 56
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infltd/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
57
  mixins: [commonProcess],
唐贵贤 committed
58 59 60 61
  data() {
    return {
      stmData: {
        columns: [
唐贵贤 committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
          '1 1 "TrnINR" 170 ',
          '8 2 "Account" 170',
          '9 3 "D/C" 170',
          '11 4 "Cur." 170',
          '12 4 "s.Cur" 170',
          '18 5 "Amount" 170',
          '3 5 "Sys.Amount" 170',
          '4 6 "Val.Date" 170',
          '5 6 "Book.Date" 170',
          '15 7 "Booking Text 1" 170',
          '12 7 "Booking Text 2" 170',
          '18 7 "Booking Text 3" 170',
          '3 8 "P.N." 170',
          '4 9 "Exp.Session" 170',
          '5 9 "Exp.Status" 170',
唐贵贤 committed
77 78 79 80 81 82 83 84 85 86 87
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>