Sepinfp.vue 1.43 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
<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>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
24
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
25 26 27 28 29 30
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbtd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
31
    mixins: [commonProcess],
唐贵贤 committed
32 33 34 35
    data(){
        return {
            stmData: {
        columns: [
唐贵贤 committed
36 37 38 39 40
          '1 1 \"Cre.Date\" 171 ',
          '8 2 \"Reference\" 171',
          '9 3 \"Cur.\" 171',
          '11 4 \"Amount\" 171',
          '12 5 \"Cre.TrnINR\" 171',
唐贵贤 committed
41
          // "18 5 \"MT\" 100",
唐贵贤 committed
42 43 44 45
          '3 6 \"Cre.Trn\" 171',
          '4 7 \"Setttl.TrnINR\" 171',
          '5 8 \"Settl.Date\" 171',
          '15 9 \" \" 171',  
唐贵贤 committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59
        ],
        data: [],
      },
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>