Menu.vue 6.96 KB
Newer Older
liuxin committed
1
<template>
liuxin committed
2 3 4 5 6 7 8 9 10 11 12
    <div class="eibs-tab">

        <el-col :span="24" style="text-align:center;margin-bottom: 18px;">
            <c-checkbox v-model="model.chkinc">Incoming</c-checkbox>
            <c-checkbox v-model="model.chkpen">Pending</c-checkbox>
            <c-checkbox v-model="model.chkcor">Correction</c-checkbox>
            <c-checkbox v-model="model.chkaut">Automatic</c-checkbox>
            <c-checkbox v-model="model.chkdel">Deleted</c-checkbox>
            <c-checkbox v-model="model.chktco">网银</c-checkbox>
            <c-checkbox v-model="model.chkcan">归档</c-checkbox>
        </el-col>
liuxin committed
13

liuxin committed
14
        <!--        
liuxin committed
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
       <el-col :span="12">
	    <c-checkbox v-model="model.chkdzt">E-Trade</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chkpen">Pending</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chkcor">Correction</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chkaut">Automatic</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chkdel">Deleted</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chktco">网银</c-checkbox>
       </el-col> 
                  
       <el-col :span="12">
	    <c-checkbox v-model="model.chkcan">归档</c-checkbox>
       </el-col> 
       -->

liuxin committed
44 45 46 47 48 49 50 51 52 53 54 55 56
        <el-col :span="12">
            <el-form-item label="Reference">
                <c-input v-model="model.selobj" maxlength="32" placeholder="请输入Reference"></c-input>
            </el-form-item>
        </el-col>

        <el-col :span="12">
            <el-form-item label="Name">
                <c-input v-model="model.seltxt" maxlength="32" placeholder="请输入Selection Name"></c-input>
            </el-form-item>
        </el-col>

        <!--             
liuxin committed
57 58 59 60 61
	<el-col :span="12">
	    <span  v-text="model.usfmod.usftxt"   data-path=".usfmod.usftxt" > </span>
	</el-col>
    -->

liuxin committed
62 63 64 65 66 67 68 69
        <el-col :span="12">
            <el-form-item label="Selection of Users">
                <c-select v-model="model.usfmod.flt" style="width:60%" placeholder="请选择User">
                </c-select>
                <c-button size="small" type="primary" style="width:30%" @click="onUsfmodShwflt">
                    Show Set
                </c-button>
            </el-form-item>
liuxin committed
70

liuxin committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
        </el-col>

        <el-col :span="12">
            <el-form-item label="Between">
                <el-date-picker type="date" v-model="model.inidatfro" style="width:45%" placeholder="请选择Date of entry of Transaction"></el-date-picker>
                -
                <el-date-picker type="date" v-model="model.inidattil" style="width:45%" placeholder="请选择Date of entry of Transaction until"></el-date-picker>
            </el-form-item>
        </el-col>

        <el-col :span="12">
            <el-form-item label="国内国际证标志">
                <c-select v-model="model.dflg" style="width:100%" placeholder="请选择国内国际标志">
                    <el-option label="All" value="1"></el-option>
                    <el-option label="国内业务" value="2"></el-option>
                    <el-option label="国际业务" value="3"></el-option>
                </c-select>
            </el-form-item>
        </el-col>

        <!--
liuxin committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
                  
       <el-col :span="12">
        <el-form-item label="Selected User Group Set">
            <c-select v-model="model.usfmod.selusgset" style="width:100%" placeholder="请选择Selected User Group Set">
              </c-select>
        </el-form-item>
       </el-col>
                  
       <el-col :span="12">
        <el-form-item label="User ID">
            <c-input  v-model="model.usfmod.usr.extkey" maxlength="8"  placeholder="请输入User ID"></c-input>
        </el-form-item>
       </el-col>             
                  
       <el-col :span="12">
        <el-form-item label="Selected User Group">
            <c-select v-model="model.usfmod.selusg" style="width:100%" placeholder="请选择Selected User Group">
              </c-select>
        </el-form-item>
       </el-col>
                  
       <el-col :span="12">
        <el-form-item label="Select user branch">
            <c-select v-model="model.usfmod.selusb" style="width:100%" placeholder="请选择Select user branch">
              </c-select>
        </el-form-item>
       </el-col>
                  
       <el-col :span="12">
        <el-form-item label="">
            <c-input  v-model="model.usfmod.usrget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </el-col>             
                  
       <el-col :span="12">
        <el-form-item label="已转报">
            <c-select v-model="model.routxt" style="width:100%" placeholder="请选择已转报">
              </c-select>
        </el-form-item>
       </el-col>
liuxin committed
132
       -->
liuxin committed
133

liuxin committed
134 135 136
        <el-col :span="12" style="text-align:center">
            <c-checkbox v-model="model.chkypt">云平台</c-checkbox>
        </el-col>
liuxin committed
137

liuxin committed
138
        <!--           
liuxin committed
139 140 141 142 143
       <el-col :span="12">
        <el-form-item label="List of SPT records">
            <c-input  v-model="model.sptstm"  placeholder="请输入List of SPT records"></c-input>
        </el-form-item>
       </el-col>
liuxin committed
144 145
       -->
        <!-- <p>{{model.sptstm}}</p> -->
liuxin committed
146

liuxin committed
147
        <el-col :span="24">
liuxin committed
148 149
            <el-col :span="12">
                <el-form-item label="退回原因">
liuxin committed
150
                    <c-input v-model="model.yptinf" maxlength="60" placeholder="请输入退回原因"></c-input>
liuxin committed
151
                </el-form-item>
liuxin committed
152
            </el-col>
liuxin committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

            <el-col :span="12" style="text-align:center">
                <c-button size="small" type="primary" disabled="disabled" @click="onButypt">
                    退回云平台
                </c-button>
                <c-button size="small" type="primary" disabled="disabled" @click="onDlmft">
                    MFT下载
                </c-button>
                <c-button size="small" type="primary" disabled="disabled" @click="onDlaxq">
                    AXQ下载
                </c-button>
                <c-button size="small" type="primary" disabled="disabled" @click="onButimg">
                    上传影像
                </c-button>
            </el-col>
liuxin committed
168 169 170 171
        </el-col>

        <c-istream-table :list="stmData.data" :columns="stmData.columns"></c-istream-table>
    </div>
liuxin committed
172 173 174 175
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
liuxin committed
176
import Event from "~/model/Sptsel/Event"
liuxin committed
177 178 179 180
import CommonProcess from "~/mixin/CommonProcess"

export default {
    props:["model","codes"],
181
    // mixins: [CommonProcess],
liuxin committed
182 183
    data(){
        return {
liuxin committed
184 185 186 187 188 189
            stmData: {
                columns: [
                ],
                data: [
                ]
            }
liuxin committed
190 191 192 193 194 195 196 197 198 199
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>
</style>