Peninfp.vue 3.14 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="3">
	    <c-checkbox v-model="model.infcon.sptinc">Incoming</c-checkbox>
       </c-col>
                  
       <c-col :span="3">
	    <c-checkbox v-model="model.infcon.sptreg">Registered</c-checkbox>
       </c-col>
                  
       <c-col :span="3">
	    <c-checkbox v-model="model.infcon.sptpen">Pending</c-checkbox>
       </c-col>
                  
       <c-col :span="3">
	    <c-checkbox v-model="model.infcon.sptcor">Correction</c-checkbox>
       </c-col>
                  
       <c-col :span="3">
	    <c-checkbox v-model="model.infcon.sptdel">Deleted/Rejected</c-checkbox>
       </c-col>
                  
       <c-col :span="20">
        <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.sptstm"
      >
      </c-istream-table>
       </c-col>
                                                    
       <c-col :span="6">
        <el-form-item label="Date from" prop="infcon.diadatfrom">
            <c-date-picker type="date"  v-model="model.infcon.diadatfrom" style="width:100%"  placeholder="请选择Date from"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="6">
        <el-form-item label="date to" prop="infcon.diadatto">
            <c-date-picker type="date"  v-model="model.infcon.diadatto" style="width:100%"  placeholder="请选择date till"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Status" prop="infcon.diasta">
            <c-select v-model="model.infcon.diasta" style="width:100%" placeholder="请选择Status">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="20">
        <c-istream-table
        :list="stmData1.data"
        :columns="stmData1.columns"
        prop="infcon.diastm"
      >
      </c-istream-table>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
64
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
65 66 67 68 69 70
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbtd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
71
    mixins: [commonProcess],
唐贵贤 committed
72 73 74 75
    data(){
        return {
            stmData1: {
        columns: [
唐贵贤 committed
76 77 78 79 80
          '1 1 \"Date\" 200 ',
          '8 2 \"Reason\" 200',
          '9 3 \"Description\" 200',
          '11 4 \"Transaction\" 200',
          '12 5 \"User\" 200',
唐贵贤 committed
81
          // "18 5 \"MT\" 100",
唐贵贤 committed
82 83
          '3 6 \"Group\" 200',
          '4 7 \"Status\" 200',
唐贵贤 committed
84 85 86 87 88
        ],
        data: [],
      },
      stmData: {
        columns: [
唐贵贤 committed
89 90 91 92 93
          '1 1 \"Trn\" 175 ',
          '8 2 \"Reference\" 175',
          '9 3 \"Name\" 175',
          '11 4 \"Creation\" 175',
          '12 5 \"Status\" 175',
唐贵贤 committed
94
          // "18 5 \"MT\" 100",
唐贵贤 committed
95 96 97
          '3 6 \"By\" 175',
          '4 7 \"Info\" 175',
          '5 8 \"Infotext\" 175',
唐贵贤 committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
            
        ],
        data: [],
      },
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>