Ovwp.vue 20.9 KB
Newer Older
wangren committed
1 2 3 4 5
<template>
  <div class="eibs-tab">

      <el-col :span="11">
          <c-col :span="24">
jianglong committed
6
        <el-form-item label="信用证编号" prop="lidgrp.rec.ownref">
wangren committed
7
            <c-fullbox>
jianglong committed
8
            <c-input disabled  v-model="model.lidgrp.rec.ownref" maxlength="16"  placeholder="请输入编号"></c-input>
wangren committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
        
            <template slot="footer">
                     <c-button
                disabled
                size="small"
                type="primary"
                @click=""
              >
                GetRef
              </c-button>
            </template>
            </c-fullbox>
        </el-form-item>
       </c-col>

       <c-col :span="24">
jianglong committed
25 26
        <el-form-item label="信用证类型" prop="lidgrp.rec.lcrtyp">
            <c-select disabled v-model="model.lidgrp.rec.lcrtyp" style="width:100%" placeholder="请选择信用证类型">
27 28 29 30 31 32 33 34
            <el-option
               v-for="item in codes.lcrtyp1"
               :key="item.value"
               :label="item.label"
               :value="item.value"
             >
             </el-option>
            </c-select>
wangren committed
35 36 37 38
        </el-form-item>
       </c-col>

            <c-col :span="24">
jianglong committed
39
        <el-form-item label="客户经理" prop="litp.usr.extkey">
wangren committed
40 41 42 43 44 45 46 47
            <c-input disabled v-model="model.litp.usr.extkey" maxlength="8"  placeholder="请输入Responsible User"></c-input>
        </el-form-item>
       </c-col>
        <!-- <c-col :span="12">
	    <c-checkbox v-model="model.lidgrp.rec.resflg">Reserved Contract</c-checkbox>
       </c-col> -->

       <c-col :span="10">
jianglong committed
48 49
        <el-form-item label="信用证名义金额" prop="lidgrp.cbs.nom1.cur">
            <c-input disabled v-model="model.lidgrp.cbs.nom1.cur" style="width:100%" placeholder="请选择">
wangren committed
50 51 52 53 54 55
            </c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="10">
        <el-form-item label="" label-width="10px" prop="lidgrp.cbs.nom1.amt">
jianglong committed
56
            <c-input disabled v-model="model.lidgrp.cbs.nom1.amt"  placeholder="请输入金额"></c-input>
wangren committed
57 58 59 60
        </el-form-item>
       </c-col>
                  
       <c-col :span="4">
jianglong committed
61
	    <c-checkbox disabled v-model="model.litp.aamp.aammod.addamtflg">附加金额</c-checkbox>
wangren committed
62 63 64
       </c-col>

       <c-col :span="12">
jianglong committed
65 66
        <el-form-item label="溢短装上浮" prop="lidgrp.rec.nomtop">
            <c-input disabled v-model="model.lidgrp.rec.nomtop"  placeholder="请输入内容"></c-input>
wangren committed
67 68 69 70
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
jianglong committed
71 72
        <el-form-item label="溢短装下浮" prop="lidgrp.rec.nomton">
            <c-input disabled v-model="model.lidgrp.rec.nomton"  placeholder="请输入内容"></c-input>
wangren committed
73 74 75 76
        </el-form-item>
       </c-col>

        <c-col :span="24">
jianglong committed
77 78
        <el-form-item label="最高限额表述" prop="lidgrp.rec.nomspc">
            <c-select disabled v-model="model.lidgrp.rec.nomspc" style="width:100%" placeholder="请选择内容">
79 80 81 82 83 84 85
            <el-option
               v-for="item in codes.nomspc"
               :key="item.value"
               :label="item.label"
               :value="item.value"
             >
             </el-option>
wangren committed
86 87 88 89 90
              </c-select>
        </el-form-item>
       </c-col>

       <c-col :span="15">
jianglong committed
91 92
        <el-form-item label="最大金额" prop="lidgrp.cbs.max.cur">
            <c-select disabled v-model="model.lidgrp.cbs.max.cur" style="width:100%" placeholder="请选择最大金额">
wangren committed
93 94 95 96 97 98
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="9">
        <el-form-item label="" label-width="10px" prop="lidgrp.cbs.max.amt">
jianglong committed
99
            <c-input disabled v-model="model.lidgrp.cbs.max.amt"  placeholder="请输入金额"></c-input>
wangren committed
100 101 102 103
        </el-form-item>
       </c-col>

       <c-col :span="12">
jianglong committed
104 105
        <el-form-item label="开证日期" prop="lidgrp.rec.opndat">
            <c-date-picker disabled type="date"  v-model="model.lidgrp.rec.opndat" style="width:100%"  placeholder="请选择日期"></c-date-picker>
wangren committed
106 107 108 109
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
jianglong committed
110 111
        <el-form-item label="预通知日期" prop="lidgrp.rec.preadvdt">
            <c-date-picker disabled type="date"  v-model="model.lidgrp.rec.preadvdt" style="width:100%"  placeholder="请选择日期"></c-date-picker>
wangren committed
112 113 114 115
        </el-form-item>
       </c-col>

       <c-col :span="12">
jianglong committed
116 117
        <el-form-item label="最迟装运期" prop="lidgrp.rec.shpdat">
            <c-date-picker disabled type="date"  v-model="model.lidgrp.rec.shpdat" style="width:100%"  placeholder="请选择日期"></c-date-picker>
wangren committed
118 119 120 121 122 123 124 125 126 127 128
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox 
        disabled 
        style="margin-left:20px;padding: 0 10px;"
        v-model="model.lidgrp.rec.dkflg">是否代开信用证</c-checkbox>
       </c-col>

       <c-col :span="24">
jianglong committed
129 130
        <el-form-item label="有效期限" prop="lidgrp.rec.expdat">
            <c-date-picker disabled type="date"  v-model="model.lidgrp.rec.expdat" style="width:100%"  placeholder="请选择日期"></c-date-picker>
wangren committed
131 132 133 134
        </el-form-item>
       </c-col>

        <c-col :span="24">
jianglong committed
135 136
        <el-form-item label="生效地点" prop="lidgrp.rec.expplc">
            <c-input disabled v-model="model.lidgrp.rec.expplc" maxlength="29"  placeholder="请输入地点"></c-input>
wangren committed
137 138 139 140
        </el-form-item>
       </c-col>

       <!-- <c-col :span="24">
jianglong committed
141 142
        <el-form-item label="分批装运" prop="lidgrp.rec.shppar">
            <c-select disabled v-model="model.lidgrp.rec.shppar" style="width:100%" placeholder="请选择">
wangren committed
143 144 145 146 147
              </c-select>
        </el-form-item>
       </c-col> -->

       <c-col :span="24">
jianglong committed
148 149
        <el-form-item label="分批装运" prop="lidgrp.rec.shppars18">
            <c-select disabled v-model="model.lidgrp.rec.shppars18" style="width:100%" placeholder="请选择">
wangren committed
150 151 152 153 154
              </c-select>
        </el-form-item>
       </c-col>

       <!-- <c-col :span="24">
jianglong committed
155 156
        <el-form-item label="是否可转运" prop="lidgrp.rec.shptrs">
            <c-select disabled v-model="model.lidgrp.rec.shptrs" style="width:100%" placeholder="请选择">
wangren committed
157 158 159 160 161 162
              </c-select>
        </el-form-item>
       </c-col> -->
                  
       <c-col :span="24">
        <el-form-item label="Transhipment" prop="lidgrp.rec.shptrss18">
jianglong committed
163
            <c-select disabled v-model="model.lidgrp.rec.shptrss18" style="width:100%" placeholder="请选择">
wangren committed
164 165 166 167 168
              </c-select>
        </el-form-item>
       </c-col>

       <c-col :span="24">
jianglong committed
169 170
        <el-form-item label="适用规则" prop="lidgrp.rec.apprul">
            <c-select disabled v-model="model.lidgrp.rec.apprul" style="width:100%" placeholder="请选择适用规则">
wangren committed
171 172 173 174 175
              </c-select>
        </el-form-item>
       </c-col>

        <c-col :span="24">
jianglong committed
176 177
        <el-form-item label="其他适用规则" prop="lidgrp.rec.apprultxt">
            <c-input disabled v-model="model.lidgrp.rec.apprultxt" maxlength="35"  placeholder="请输入其他适用规则"></c-input>
wangren committed
178 179 180 181
        </el-form-item>
       </c-col>

       <c-col :span="24">
jianglong committed
182 183
        <el-form-item label="保兑指示" prop="lidgrp.rec.cnfdet">
            <c-select disabled v-model="model.lidgrp.rec.cnfdet" style="width:100%" placeholder="请选择保兑指示">
184 185 186 187 188 189 190
            <el-option
               v-for="item in codes.cnfdet"
               :key="item.value"
               :label="item.label"
               :value="item.value"
             >
             </el-option>
wangren committed
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
              </c-select>
        </el-form-item>
       </c-col>
                  
	<!-- <c-col :span="12">
	    <span  v-text="model.litp.oppbnkl"   data-path=".litp.oppbnkl" > </span>
	</c-col> -->
                  
       <!-- <c-col :span="12">
        <el-form-item label="OPPBNK" prop="lidgrp.rec.oppbnk">
            <c-input disabled v-model="model.lidgrp.rec.oppbnk" maxlength="12"  placeholder="请输入对手行代码"></c-input>
        </el-form-item>
       </c-col> -->

       <c-col :span="24">
jianglong committed
206 207
        <el-form-item label="货押标识" prop="lidgrp.rec.guaflg">
            <c-select disabled v-model="model.lidgrp.rec.guaflg" style="width:100%" placeholder="请选择货押标识">
208 209 210 211 212 213 214
            <el-option
               v-for="item in codes.guaflg"
               :key="item.value"
               :label="item.label"
               :value="item.value"
             >
             </el-option>
wangren committed
215 216 217 218
              </c-select>
        </el-form-item>
       </c-col>
       <c-col :span="24">
jianglong committed
219 220
        <el-form-item label="注册编号" prop="lidgrp.rec.regref">
            <c-input disabled v-model="model.lidgrp.rec.regref" maxlength="16"  placeholder="请输入注册编号"></c-input>
wangren committed
221 222 223 224 225 226 227
        </el-form-item>
       </c-col>
      </el-col>

<!-- =============================================================== -->
      <el-col :span="11" :offset="1">
            <c-col :span="24">
jianglong committed
228 229
        <el-form-item label="简略信息" prop="lidgrp.rec.nam">
            <c-input disabled v-model="model.lidgrp.rec.nam" maxlength="40"  placeholder="请输入简略信息"></c-input>
wangren committed
230 231 232
        </el-form-item>
       </c-col>
            <c-col :span="24">
jianglong committed
233 234
        <el-form-item label="申请人参考号" prop="lidgrp.apl.pts.ref">
            <c-input disabled v-model="model.lidgrp.apl.pts.ref" maxlength="16"  placeholder="请输入参考号"></c-input>
wangren committed
235 236 237 238
        </el-form-item>
       </c-col>

       <c-col :span="24">
jianglong committed
239
        <el-form-item label="申请人" prop="lidgrp.apl.pts.extkey">
wangren committed
240
            <c-fullbox>
jianglong committed
241
            <c-input disabled v-model="model.lidgrp.apl.pts.extkey" maxlength="16"  placeholder="请输入地址编码"></c-input>
wangren committed
242 243 244 245 246 247 248
    <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click=""
              >
nanrui committed
249
                <i class="el-icon-info"></i>
wangren committed
250 251 252 253 254 255 256
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
                @click=""
              >
257
                详情
wangren committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271
              </c-button>
            </template>


            </c-fullbox>
        </el-form-item>
       </c-col>
          <!-- <c-col :span="24">
        <el-form-item label="名称" prop="lidgrp.apl.namelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.apl.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>     -->

        <c-col :span="24">
jianglong committed
272
        <el-form-item label="地址信息" prop="lidgrp.apl.pts.adrblk">
273 274
            <c-input disabled type="textarea" 
            :rows="4"
jianglong committed
275
            v-model="model.lidgrp.apl.pts.adrblk" maxlength="120" show-word-limit placeholder="请输入地址信息" ></c-input>
wangren committed
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
        </el-form-item>
        </c-col>
                  
       <!-- <c-col :span="24">
        <el-form-item label="Chinese address" prop="lidgrp.apl.dbfadrblkcn">
            <c-input disabled type="textarea" v-model="model.lidgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col> -->
                                   
       
                  
       <!-- <c-col :span="24">
        <el-form-item label="地址" prop="lidgrp.apl.adrelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.apl.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>     -->

        <c-col :span="24">
jianglong committed
294
        <el-form-item label="通知行参考号" prop="lidgrp.adv.pts.ref">
wangren committed
295
            
jianglong committed
296
            <c-input disabled  v-model="model.lidgrp.adv.pts.ref" maxlength="16"  placeholder="请输入通知行参考号"></c-input>
wangren committed
297 298 299 300 301 302

            
        </el-form-item>
       </c-col>

       <c-col :span="24">
jianglong committed
303
        <el-form-item label="通知行" prop="lidgrp.adv.pts.extkey">
wangren committed
304
            <c-fullbox>
jianglong committed
305
            <c-input disabled v-model="model.lidgrp.adv.pts.extkey" maxlength="16"  placeholder="请输入通知行"></c-input>
wangren committed
306 307 308 309 310 311 312
        <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click=""
              >
nanrui committed
313
                <i class="el-icon-info"></i>
wangren committed
314 315 316 317 318 319 320
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
                @click=""
              >
321
                详情
wangren committed
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
              </c-button>
            </template>
          </c-fullbox>

        </el-form-item>
       </c-col>

<!--              
       <c-col :span="12">
        <el-form-item label="名称" prop="lidgrp.adv.namelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.adv.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col> -->
                  
       <c-col :span="24">
jianglong committed
337
        <el-form-item label="地址信息" prop="lidgrp.adv.pts.adrblk">
338 339
            <c-input disabled 
            :rows="4"
jianglong committed
340
            type="textarea" v-model="model.lidgrp.adv.pts.adrblk" maxlength="120" show-word-limit placeholder="请输入地址信息" ></c-input>
wangren committed
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
        </el-form-item>
        </c-col>
                  
       <!-- <c-col :span="12">
        <el-form-item label="Chinese address" prop="lidgrp.adv.dbfadrblkcn">
            <c-input disabled type="textarea" v-model="model.lidgrp.adv.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
                                   
       
                  
       <c-col :span="12">
        <el-form-item label="地址" prop="lidgrp.adv.adrelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.adv.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col> -->
                           
       <c-col :span="24">
jianglong committed
359 360
        <el-form-item label="受益人参考号" prop="lidgrp.ben.pts.ref">
            <c-input disabled v-model="model.lidgrp.ben.pts.ref" maxlength="16"  placeholder="请输入受益人参考号"></c-input>
wangren committed
361 362 363 364
        </el-form-item>
       </c-col>
             
       <c-col :span="24">
jianglong committed
365
        <el-form-item label="受益人" prop="lidgrp.ben.pts.extkey">
wangren committed
366
            <c-fullbox>
jianglong committed
367
            <c-input disabled v-model="model.lidgrp.ben.pts.extkey" maxlength="16"  placeholder="请输入受益人"></c-input>
wangren committed
368 369 370 371 372 373 374
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click=""
              >
nanrui committed
375
                <i class="el-icon-info"></i>
wangren committed
376 377 378 379 380 381 382
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
                @click=""
              >
383
                详情
wangren committed
384 385 386 387 388 389 390 391 392 393 394 395 396 397
              </c-button>
            </template>
          </c-fullbox>
        
        </el-form-item>
       </c-col>
           
       <!-- <c-col :span="12">
        <el-form-item label="名称" prop="lidgrp.ben.namelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.ben.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
                   -->
       <c-col :span="24">
jianglong committed
398
        <el-form-item label="地址信息" prop="lidgrp.ben.pts.adrblk">
399 400
            <c-input 
            :rows="4"
jianglong committed
401
            disabled type="textarea" v-model="model.lidgrp.ben.pts.adrblk" maxlength="120" show-word-limit placeholder="请输入地址信息" ></c-input>
wangren committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
        </el-form-item>
        </c-col>
                  
       <!-- <c-col :span="12">
        <el-form-item label="Chinese address" prop="lidgrp.ben.dbfadrblkcn">
            <c-input disabled type="textarea" v-model="model.lidgrp.ben.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
                                   
       
                  
       <c-col :span="12">
        <el-form-item label="地址" prop="lidgrp.ben.adrelc">
            <c-input disabled type="textarea" v-model="model.lidgrp.ben.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col> -->
                                   
      
                                   
       
                  
       <c-col :span="12">
jianglong committed
424
	    <c-checkbox disabled v-model="model.lidgrp.rec.rmbflg">偿付行信息</c-checkbox>
wangren committed
425 426 427 428 429
       </c-col>
                                   
       
                  
       <c-col :span="12">
jianglong committed
430
	    <c-checkbox disabled v-model="model.lidgrp.rec.revflg">循环信用证</c-checkbox>
wangren committed
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
       </c-col>
                                   
       <c-col :span="24">
        <el-form-item label="合同号" prop="lidgrp.rec.rptref">
            <c-input disabled v-model="model.lidgrp.rec.rptref" maxlength="25"  placeholder="请输入合同号"></c-input>
        </el-form-item>
       </c-col>
      </el-col>
                              
       
                  
      
                  
   
                  
       
                                   
       
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litacp/Event"

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

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

    }
}
</script>
<style>

</style>
<!-- <c-col :span="12">
        <el-form-item label="Drag  Drop Sender" prop="litp.recget.sdamod.dadsnd">
            <c-input  v-model="model.litp.recget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col> -->
                                   
       
                  
       <!-- <c-col :span="12">
        <el-form-item label="" prop="litp.recget.sdamod.seainf">
            <c-input  v-model="model.litp.recget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->
                  
       <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onLitpButgetref">
            Get Ref
        </c-button>
       </c-col> -->
                                   
       
                                   
       
                                   
       
                  
       <!-- <c-col :span="12">
        <el-form-item label="Drag  Drop Sender" prop="litp.aplp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.litp.aplp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col> -->
                                   
       
                  
       <!-- <c-col :span="12">
        <el-form-item label="" prop="litp.usrget.sdamod.seainf">
            <c-input  v-model="model.litp.usrget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->

        <!-- <c-col :span="12">
        <el-form-item label="" prop="litp.aplp.ptsget.sdamod.seainf">
            <c-input  v-model="model.litp.aplp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->
                  
       <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onAplpDet">
523
            详情
wangren committed
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
        </c-button>
       </c-col> -->

       <!-- <c-col :span="12">
        <el-form-item label="Drag  Drop Sender" prop="litp.advp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.litp.advp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col> -->
                  
       
                  
       <!-- <c-col :span="12">
        <el-form-item label="" prop="litp.advp.ptsget.sdamod.seainf">
            <c-input  v-model="model.litp.advp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->
                  
       <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onAdvpDet">
543
            详情
wangren committed
544 545 546 547 548 549 550 551 552 553
        </c-button>
       </c-col> -->
       <!-- <c-col :span="12">
        <el-form-item label="" prop="litp.benp.ptsget.sdamod.seainf">
            <c-input  v-model="model.litp.benp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->
                  
       <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onBenpDet">
554
            详情
wangren committed
555 556 557 558 559 560 561 562
        </c-button>
       </c-col> -->

       <!-- <c-col :span="12">
        <el-form-item label="Drag  Drop Sender" prop="litp.benp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.litp.benp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col> -->