Detp.vue 24.1 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193

    <c-row>
        <c-col :span="24">
            <c-col :span="11">
                <c-col :span="24">
                    <el-form-item label="Contract Reference" prop="gidgrp.rec.orcref">
                        <c-input  v-model="model.gidgrp.rec.orcref" maxlength="35"  placeholder="请输入Contract Reference"></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Contract Date" prop="gidgrp.rec.orcdat">
                        <c-date-picker disabled type="date"  v-model="model.gidgrp.rec.orcdat" style="width:100%"  placeholder="请选择Date from Original Contract"></c-date-picker>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Closing Date" prop="gidgrp.rec.tenclsdat">
                        <c-date-picker disabled type="date"  v-model="model.gidgrp.rec.orcdat" style="width:100%"  placeholder="请选择Date from Original Contract"></c-date-picker>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <c-col :span="20">
                        <el-form-item label="Object of Contract" prop="gidgrp.blk.covgodsrv">
                            <c-input :disabled="model.gitp.covgodsrvmodflg==''||model.gitp.swiftflg=='N'" rows="5" type="textarea" v-model="model.gidgrp.blk.covgodsrv" maxlength="35" show-word-limit placeholder="请输入Object of Contract" ></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="4">
                        <c-checkbox  v-if="model.gitp.swiftflg=='Y'" v-model="model.gitp.covgodsrvmodflg" style="margin:0 0 0 10px">Modify Text</c-checkbox>
                        <c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.gitp.covgod.chkast" style="margin:0 0 0 10px">Allow *</c-checkbox>
                        <c-button disabled v-if="model.gitp.swiftflg=='Y'" size="small" type="primary" style="margin:5px 0 0 10px" @click="onGitpButdifcovgodsrv">
                            vs.&System
                        </c-button>
                        <c-button disabled v-if="model.gitp.swiftflg=='Y'" size="small" type="primary" style="margin:5px 0 0 10px"  @click="onGitpButdifhiscovgodsrv">
                            vs.&History
                        </c-button>
                    </c-col>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Original Perc./ Rate" prop="gidgrp.rec.orcrat">
                        <c-input disabled v-model="model.gidgrp.rec.orcrat"  placeholder="请输入Original Perc./ Rate"></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <c-col :span="12">
                         <el-form-item label="Contract Amount " prop="gidgrp.rec.orccur">
                            <c-select disabled v-model="model.gidgrp.rec.orccur" style="width:100%" placeholder="请选择Contract Amount ">
                                 <el-option
                                    v-for="item in codes.curtxt"
                                    :key="item.value"
                                    :label="item.label"
                                    :value="item.value"
                                    >
                                </el-option>
                            </c-select>
                        </el-form-item>
                    </c-col>
                    <c-col :span="11" :offset="1">
                        <c-input disabled v-model="model.gidgrp.rec.orcamt"  placeholder="请输入Contract Amount "></c-input>
                    </c-col>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Original Contract Place" prop="gidgrp.blk.orcplc">
                        <c-input disabled type="textarea" v-model="model.gidgrp.blk.orcplc" maxlength="35" show-word-limit placeholder="请输入Original Contract Place" ></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="A/c for Adv. Paym. Guar." prop="gidgrp.rec.acc">
                        <c-input disabled v-model="model.gidgrp.rec.acc" maxlength="35"  placeholder="请输入A/c for Adv. Paym. Guar."></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <c-col :span="12">
                        <el-form-item v-if="model.gitp.swiftflg=='Y'" label="Governing Law" prop="gidgrp.rec.jurlaws20">
                            <c-select :disabled="model.gitp.swiftflg=='N'" v-model="model.gidgrp.rec.jurlaws20" style="width:100%" placeholder="请选择Governing Law">
                                <el-option
                                        v-for="item in codes.ctytxt1"
                                        :key="item.value"
                                        :label="item.label"
                                        :value="item.value"
                                        >
                                    </el-option>
                            </c-select>
                        </el-form-item>
                    </c-col>
                    <c-col :span="11" :offset="1">
                         <c-input v-if="model.gitp.swiftflg=='Y'" disabled v-model="model.gidgrp.rec.jurlaw" maxlength="35"  placeholder="请输入Law of Jurisdiction"></c-input>
                    </c-col>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Place of Jurisdiction" prop="gidgrp.rec.jurplc">
                        <c-input :disabled="model.gidgrp.rec.jurlaws20==''" v-model="model.gidgrp.rec.jurplc" maxlength="35"  placeholder="请输入Place of Jurisdiction"></c-input>
                    </el-form-item>
                </c-col>
                 <c-col :span="24">
                    <el-form-item label="Tender Reference" prop="gidgrp.rec.tenref">
                        <c-input disabled v-model="model.gidgrp.rec.tenref" maxlength="35"  placeholder="请输入Tender Reference"></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Tender Date" prop="gidgrp.rec.tendat">
                        <c-date-picker disabled type="date"  v-model="model.gidgrp.rec.tendat" style="width:100%"  placeholder="请选择Tender Date"></c-date-picker>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <el-form-item label="Latest Transmiss. Date" prop="gidgrp.rec.trmdat">
                        <c-date-picker disabled type="date"  v-model="model.gidgrp.rec.trmdat" style="width:100%"  placeholder="请选择Latest Transmiss. Date"></c-date-picker>
                    </el-form-item>
                </c-col>
                
            </c-col>
            <c-col :span="11" :offset="1">
             <c-col :span="24">
                    <el-form-item v-if="model.gitp.swiftflg=='N'" label="手册号码" prop="gidgrp.rec.mannum">
                        <c-input disabled  v-model="model.gidgrp.rec.mannum" maxlength="12"  placeholder="请输入手册号码"></c-input>
                    </el-form-item>
                 </c-col>
                 <c-col :span="24">
                    <el-form-item v-if="model.gitp.swiftflg=='N'" label="业务类型" prop="gidgrp.ghd.bustyp">
                        <c-select disabled v-model="model.gidgrp.ghd.bustyp" style="width:100%" placeholder="请选择业务类型">
                             <el-option
                                        v-for="item in codes.bustyp"
                                        :key="item.value"
                                        :label="item.label"
                                        :value="item.value"
                                        >
                                    </el-option>
                        </c-select>
                    </el-form-item>
                </c-col>

                <c-col :span="24">
                    <el-form-item v-if="model.gitp.swiftflg=='N'" label="仓库号" prop="gidgrp.ghd.wahnum">
                        <c-input disabled  v-model="model.gidgrp.ghd.wahnum" maxlength="20"  placeholder="请输入仓库号"></c-input>
                    </el-form-item>
                </c-col>

                <c-col :span="24">
                    <el-form-item v-if="model.gitp.swiftflg=='N'" label="受益人名称" prop="gidgrp.gidcxm.benefi">
                        <c-input  v-model="model.gidgrp.gidcxm.benefi" maxlength="80"  placeholder="请输入受益人名称"></c-input>
                    </el-form-item>
                </c-col> 
                    <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="企业海关编码" prop="gidgrp.rec.bngcod">
                            <c-input disabled v-model="model.gidgrp.rec.bngcod" maxlength="10"  placeholder="请输入企业海关编码"></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="组织机构代码" prop="gidgrp.rec.juscod">
                            <c-input disabled  v-model="model.gidgrp.rec.juscod" maxlength="10"  placeholder="请输入组织机构代码"></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="流动资金贷款利率档次" prop="gidgrp.rec.cunqii">
                            <c-select  disabled v-model="model.gidgrp.rec.cunqii" style="width:100%" placeholder="请选择流动资金贷款利率档次">
                                <el-option
                                        v-for="item in codes.cunqii"
                                        :key="item.value"
                                        :label="item.label"
                                        :value="item.value"
                                        >
                                    </el-option>
                            </c-select>
                        </el-form-item>
                    </c-col>
                    <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="上浮比率" prop="gidgrp.rec.bilvvv">
                            <c-input disabled v-model="model.gidgrp.rec.bilvvv"  placeholder="请输入上浮比率"></c-input>
                        </el-form-item>
                    </c-col>
                     <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="InDirect Swift Add" prop="gitp.indirectswiadd">
                            <c-input disabled type="textarea" v-model="model.gitp.indirectswiadd" maxlength="65" show-word-limit placeholder="请输入InDirect Swift Add" ></c-input>
                        </el-form-item>
                     </c-col>
                     <c-col :span="24">
                        <el-form-item label="Additional Info" prop="gidgrp.blk.addinf">
                            <c-input disabled  type="textarea" v-model="model.gidgrp.blk.addinf" maxlength="35" show-word-limit placeholder="请输入Additional Info" ></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="24">
                        <el-form-item v-if="model.gitp.swiftflg=='N'" label="备注" prop="gidgrp.ghd.remark">
                            <c-input disabled type="textarea" v-model="model.gidgrp.ghd.remark" maxlength="35" show-word-limit placeholder="请输入备注" ></c-input>
                        </el-form-item>
                    </c-col>
            </c-col>
        </c-col>
    </c-row>
                              
<!-- <c-col :span="12">
    <span  v-text="model.gitp.aplnamtxt"   data-path=".gitp.aplnamtxt" > </span>
</c-col> -->
                 <!-- SF000666 : Contract Reference -->
liyixun committed
194
                  
liyixun committed
195 196 197 198 199 200 201
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001275')" prop="gidgrp.rec.orcref">
            <c-input  v-model="model.gidgrp.rec.orcref" maxlength="35"  :placeholder="$t('other.please_enter')+$t('gitp.S0001275')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001275 : Contract Reference -->
<!--                   
liyixun committed
202
       <c-col :span="12">
liyixun committed
203 204
        <c-form-item label="申请人名称关税保函专用" prop="gidgrp.ghd.aplnam">
            <c-input type="textarea" v-model="model.gidgrp.ghd.aplnam" maxlength="50" show-word-limit :placeholder="$t('other.please_enter')+'申请人名称关税保函专用'" ></c-input>
liyixun committed
205
        </c-form-item>
liyixun committed
206
        </c-col>
liyixun committed
207 208
                  
       <c-col :span="12">
liyixun committed
209 210
        <el-form-item label="Date from Original Contract" prop="gidgrp.rec.orcdat">
            <c-date-picker type="date"  v-model="model.gidgrp.rec.orcdat" style="width:100%"  :placeholder="$t('other.please_enter')+'Date from Original Contract'"></c-date-picker>
liyixun committed
211
        </el-form-item>
liyixun committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
       </c-col> -->
                 <!-- S0001282 : 企业海关编码 -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001282')" prop="gidgrp.rec.bngcod">
            <c-input  v-model="model.gidgrp.rec.bngcod" maxlength="10"  :placeholder="$t('other.please_enter')+$t('gitp.S0001282')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- SF000663 : Closing Date -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001272')" prop="gidgrp.rec.tenclsdat">
            <c-date-picker type="date"  v-model="model.gidgrp.rec.tenclsdat" style="width:100%"  :placeholder="$t('other.please_enter')+$t('gitp.S0001272')"></c-date-picker>
        </el-form-item>
       </c-col> -->
                 <!-- S0001272 : Closing Date -->
                 <!-- S0001279 : 组织机构代码 -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001279')" prop="gidgrp.rec.juscod">
            <c-input  v-model="model.gidgrp.rec.juscod" maxlength="10"  :placeholder="$t('other.please_enter')+$t('gitp.S0001279')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- SF000657 : Underly. Transact. Det. -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001266')" prop="gidgrp.blk.covgodsrv">
            <c-input type="textarea" v-model="model.gidgrp.blk.covgodsrv" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.S0001266')" ></c-input>
        </c-form-item>
        </c-col>
liyixun committed
242 243
                  
       <c-col :span="12">
liyixun committed
244 245
        <c-form-item :label="$t('gitp.SF000657')" prop="gidgrp.blk.atxcovgodsrv">
            <c-input type="textarea" v-model="model.gidgrp.blk.atxcovgodsrv" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000657')" ></c-input>
liyixun committed
246
        </c-form-item>
liyixun committed
247 248 249 250
        </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.gitp.covgodsrvmodflg">{{$t('gitp.CF001214')}}</c-checkbox>
liyixun committed
251 252 253
       </c-col>
                  
       <c-col :span="12">
liyixun committed
254 255 256 257 258 259 260 261 262
        <c-button size="small" type="primary"  @click="onGitpButdifcovgodsrv">
             {{$t('gitp.CF001215')}}
        </c-button>
       </c-col> -->
                 <!-- S0001280 : 流动资金贷款利率档次 -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001280')" prop="gidgrp.rec.cunqii">
            <c-select v-model="model.gidgrp.rec.cunqii" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001280')">
liyixun committed
263 264
              </c-select>
        </el-form-item>
liyixun committed
265 266
       </c-col> -->
                 <!-- S0001266 : Object of Contract -->
liyixun committed
267
                  
liyixun committed
268 269
       <!-- <c-col :span="12">
	    <c-checkbox v-model="model.gitp.covgod.chkast">{{$t('gitp.CF001083')}}</c-checkbox>
liyixun committed
270 271 272
       </c-col>
                  
       <c-col :span="12">
liyixun committed
273 274
        <c-button size="small" type="primary"  @click="onGitpButdifhiscovgodsrv">
             {{$t('gitp.CF001216')}}
liyixun committed
275
        </c-button>
liyixun committed
276 277
       </c-col> -->
                 <!-- S0001281 : 上浮比率 -->
liyixun committed
278
                  
liyixun committed
279 280 281
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001281')" prop="gidgrp.rec.bilvvv">
            <c-input  v-model="model.gidgrp.rec.bilvvv"  :placeholder="$t('other.please_enter')+$t('gitp.S0001281')"></c-input>
liyixun committed
282
        </c-form-item>
liyixun committed
283 284
       </c-col> -->
                 <!-- S0001278 : InDirect Issuance Additional Clause -->
liyixun committed
285
                  
liyixun committed
286 287 288
       <!-- <c-col :span="12">
        <c-form-item label="InDirect Swift Add" prop="gitp.indirectswiadd">
            <c-input type="textarea" v-model="model.gitp.indirectswiadd" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'InDirect Swift Add'" ></c-input>
liyixun committed
289
        </c-form-item>
liyixun committed
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
        </c-col> -->
                 <!-- S0001267 : Original Perc./ Rate -->
                 <!-- SF000658 : Original Perc./ Rate -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001267')" prop="gidgrp.rec.orcrat">
            <c-input  v-model="model.gidgrp.rec.orcrat"  :placeholder="$t('other.please_enter')+$t('gitp.S0001267')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001268 : Contract Amount  -->
                 <!-- SF000659 : Contract Amount  -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001268')" prop="gidgrp.rec.orccur">
            <c-select v-model="model.gidgrp.rec.orccur" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001268')">
              </c-select>
        </el-form-item>
liyixun committed
307 308 309
       </c-col>
                  
       <c-col :span="12">
liyixun committed
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
        <c-form-item :label="$t('gitp.S0001268')" prop="gidgrp.rec.orcamt">
            <c-input  v-model="model.gidgrp.rec.orcamt"  :placeholder="$t('other.please_enter')+$t('gitp.S0001268')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001270 : Original Contract Place -->
                 <!-- SF000661 : Original Contract Place -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001270')" prop="gidgrp.blk.orcplc">
            <c-input type="textarea" v-model="model.gidgrp.blk.orcplc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.S0001270')" ></c-input>
        </c-form-item>
        </c-col> -->
                 <!-- S0001269 : A/c for Adv. Paym. Guar. -->
                 <!-- SF000660 : A/c Adv. Paym. Guar. -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001269')" prop="gidgrp.rec.acc">
            <c-input  v-model="model.gidgrp.rec.acc" maxlength="35"  :placeholder="$t('other.please_enter')+$t('gitp.S0001269')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001273 : Law of Jurisdiction -->
                 <!-- SF000664 : Governing Law -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.SF000664')" prop="gidgrp.rec.jurlaws20">
            <c-select v-model="model.gidgrp.rec.jurlaws20" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000664')">
              </c-select>
        </el-form-item>
       </c-col> -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001273')" prop="gidgrp.rec.jurlaw">
            <c-input  v-model="model.gidgrp.rec.jurlaw" maxlength="35"  :placeholder="$t('other.please_enter')+$t('gitp.S0001273')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001271 : Place of Jurisdiction -->
                 <!-- SF000662 : Place of Jurisdiction -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001271')" prop="gidgrp.rec.jurplc">
            <c-input  v-model="model.gidgrp.rec.jurplc" maxlength="35"  :placeholder="$t('other.please_enter')+$t('gitp.S0001271')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001277 : Tender Reference -->
                 <!-- SF000668 : Tender Reference -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001277')" prop="gidgrp.rec.tenref">
            <c-input  v-model="model.gidgrp.rec.tenref" maxlength="35"  :placeholder="$t('other.please_enter')+$t('gitp.S0001277')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001276 : Tender Date -->
                 <!-- SF000667 : Tender Date -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001276')" prop="gidgrp.rec.tendat">
            <c-date-picker type="date"  v-model="model.gidgrp.rec.tendat" style="width:100%"  :placeholder="$t('other.please_enter')+$t('gitp.S0001276')"></c-date-picker>
        </el-form-item>
       </c-col> -->
                 <!-- S0001274 : Latest Transmiss. Date -->
                 <!-- SF000665 : Latest Transmission -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001274')" prop="gidgrp.rec.trmdat">
            <c-date-picker type="date"  v-model="model.gidgrp.rec.trmdat" style="width:100%"  :placeholder="$t('other.please_enter')+$t('gitp.S0001274')"></c-date-picker>
        </el-form-item>
       </c-col> -->
                 <!-- S0001286 : 备注 -->
                  
       <!-- <c-col :span="12">
        <c-form-item label="备注" prop="gidgrp.ghd.remark">
            <c-input type="textarea" v-model="model.gidgrp.ghd.remark" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'备注'" ></c-input>
        </c-form-item>
        </c-col> -->
                 <!-- S0001283 : 手册号码 -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001283')" prop="gidgrp.rec.mannum">
            <c-input  v-model="model.gidgrp.rec.mannum" maxlength="12"  :placeholder="$t('other.please_enter')+$t('gitp.S0001283')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- SF001230 : Additional Text -->
                  
       <!-- <c-col :span="12">
        <c-form-item label="Additional Info" prop="gidgrp.blk.addinf">
            <c-input type="textarea" v-model="model.gidgrp.blk.addinf" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Additional Info'" ></c-input>
liyixun committed
396 397 398
        </c-form-item>
        </c-col>
                  
liyixun committed
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
<c-col :span="12">
    <span  v-text="model.gitp.labaddinf"   data-path=".gitp.labaddinf" > </span>
</c-col> -->
                 <!-- S0001284 : 业务类型 -->
                  
       <!-- <c-col :span="12">
        <el-form-item :label="$t('gitp.S0001284')" prop="gidgrp.ghd.bustyp">
            <c-select v-model="model.gidgrp.ghd.bustyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001284')">
              </c-select>
        </el-form-item>
       </c-col> -->
                 <!-- S0001285 : 仓库号 -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001285')" prop="gidgrp.ghd.wahnum">
            <c-input  v-model="model.gidgrp.ghd.wahnum" maxlength="20"  :placeholder="$t('other.please_enter')+$t('gitp.S0001285')"></c-input>
        </c-form-item>
       </c-col> -->
                 <!-- S0001287 : 受益人名称 -->
                  
       <!-- <c-col :span="12">
        <c-form-item :label="$t('gitp.S0001287')" prop="gidgrp.gidcxm.benefi">
            <c-input  v-model="model.gidgrp.gidcxm.benefi" maxlength="80"  :placeholder="$t('other.please_enter')+$t('gitp.S0001287')"></c-input>
        </c-form-item>
       </c-col> -->
liyixun committed
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Gitame/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>