Sepinfp.vue 1.55 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
<template>
  <div class="eibs-tab">
    <c-col :span="12">
      <c-checkbox v-model="model.infcon.setflg"
        >show temporary settlement that already settled</c-checkbox
      >
    </c-col>

    <c-col :span="12">
      <c-checkbox v-model="model.infcon.sepdelflg"
        >show temporary settlement that already deleted</c-checkbox
      >
    </c-col>

    <c-col :span="22">
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.sepstm"
      >
      </c-istream-table>
      <!--el-form-item label="stream of SEPs" prop="infcon.sepstm">
        <c-input
          v-model="model.infcon.sepstm"
          placeholder="请输入stream of SEPs"
        ></c-input>
      </el-form-item-->
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
33
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
34 35 36 37 38 39
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infltd/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
40
  mixins: [commonProcess],
唐贵贤 committed
41 42 43 44
  data() {
    return {
        stmData: {
        columns: [
唐贵贤 committed
45 46 47 48 49
          '1 1 \"Cre.Date\" 170 ',
          '8 2 \"Reference\" 170',
          '9 3 \"Cur.\" 170',
          '11 4 \"Amount\" 170',
          '12 5 \"Cre.TrnINR\" 170',
唐贵贤 committed
50
          // "18 5 \"MT\" 100",
唐贵贤 committed
51 52 53 54
          '3 6 \"Cre.Trn\" 170',
          '4 7 \"Setttl.TrnINR\" 170',
          '5 8 \"Settl.Date\" 170',
          '15 9 \" \" 170',  
唐贵贤 committed
55 56 57 58 59 60 61 62 63 64 65
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>