Ove.vue 11.8 KB
Newer Older
ccx 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 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
<template>
  <c-row>
    <!-- =================顶部====================== -->
    <c-col :span="24">
         <c-col :span="8">
          <el-form-item
            label="Reference"
            prop="bcdgrp.rec.ownref"
            style="width: 100%"
          >
            <c-input
              v-model="model.bcdgrp.rec.ownref"
              maxlength="16"
              placeholder="请输入Reference"
              style="width: 95%"
              disabled
            ></c-input>
          </el-form-item>
		 </c-col>

      <c-col :span="3">
        <c-button
          size="small"
          type="primary"
          @click="onSeainf"
          icon="el-icon-search"
        ></c-button>
        <c-button
          size="small"
          type="primary"
          @click="onBctmodButgetref"
        >
          获取
        </c-button>
      </c-col>
    
      <c-col :span="11" :offset="1">
        <el-form-item label="Name" prop="bcdgrp.rec.nam">
          <c-input
            align="middle"
            v-model="model.bcdgrp.rec.nam"
            maxlength="40"
            placeholder="请输入Name"
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
    <!-- ====================左边======================= -->
    <c-col :span="11">
      <c-col :span="16">
        <el-form-item
          label="Responsible User"
          prop="bctp.usr.extkey"
          style="width: 100%"
        >
          <c-input
            style="width: 95%"
            v-model="model.bctp.usr.extkey"
            maxlength="16"
            placeholder="请输入Responsible User"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="4">
        <!-- <el-form-item label="" label-width="17px"> -->
          <c-button
            style="margin:0 10px 0 0;padding: 0 10px;"
            size="small"
            icon="el-icon-search"
            type="primary"
            @click="onExtkey"
          ></c-button>
        <!-- </el-form-item> -->
      </c-col>
        <c-col :span="4" class="centerLable">
          <c-checkbox  v-model="model.bcdgrp.rec.resflg"
            >Reserved Contract</c-checkbox
          >
        </c-col>


      <c-col :span="9">
        <el-form-item label="Document Amount" prop="bcdgrp.cbs.max.cur">
          <c-select
            disabled
            v-model="model.bcdgrp.cbs.max.cur"
            style="width: 95%"
            placeholder="请选择Currency"
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="0"
          prop="model.bcdgrp.cbs.max.amt"
        >
          <c-input-currency
            v-model="model.bcdgrp.cbs.max.amt"
            style="text-align: left; width: 95%"
            placeholder="请输入Document Amount"
          ></c-input-currency>
        </el-form-item>
      </c-col>
	    <c-col :span="4" class="centerLable">
          <c-checkbox  v-model="model.bcdgrp.rec.dftgarflg"
            >Draft to be Guaranteed</c-checkbox >
        </c-col>
      <c-col :span="9">
        <el-form-item label="Open Amount" prop="bcdgrp.cbs.opn1.cur">
          <c-select
            disabled
            v-model="model.bcdgrp.cbs.opn1.cur"
            style="width: 95%"
            placeholder="请选择Open Currency"
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="0"
          prop="model.bcdgrp.cbs.opn1.amt"
        >
          <c-input-currency
            v-model="model.bcdgrp.cbs.opn1.amt"
            style="text-align: left; width: 100%"
            placeholder="请输入Open Amount"
          ></c-input-currency>
        </el-form-item>
      </c-col>
ccx committed
150
	  <c-col :span="14">
ccx committed
151 152 153 154
          <el-form-item label="Docs received on" prop="bcdgrp.rec.rcvdat">
            <c-date-picker
              type="date"
              v-model="model.bcdgrp.rec.rcvdat"
ccx committed
155
              style="width: 90%"
ccx committed
156 157 158 159
              placeholder="请选择Docs received on"
            ></c-date-picker>
          </el-form-item>
        </c-col>
ccx committed
160
        <c-col :span="14">
ccx committed
161
          <el-form-item
ccx committed
162
            label="Date of Remittance Lt."   
ccx committed
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 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
            prop="bcdgrp.rec.predat"
          >
            <c-date-picker
              type="date"
              v-model="model.bcdgrp.rec.predat"
              style="width: 100%"
              placeholder="请选择Date of Remittance Lt."
            ></c-date-picker>
          </el-form-item>
        </c-col>

	  <c-col :span="14">
          <el-form-item label="Advised on" prop="bcdgrp.rec.advdat">
            <c-date-picker
              type="date"
              v-model="model.bcdgrp.rec.advdat"
              style="width: 90%"
              placeholder="请选择Advised on"
            ></c-date-picker>
          </el-form-item>
        </c-col>
	    <c-col :span="4" class="centerLable">
          <c-checkbox  v-model="model.bcdgrp.rec.oridre"
            >Send Original Documents to Drawee</c-checkbox >
        </c-col>		
		
      <c-col :span="14">
        <el-form-item label="Collection Condition" prop="bcdgrp.rec.doctypcod">
          <c-select
            v-model="model.bcdgrp.rec.doctypcod"
            style="width: 100%"
            placeholder="请选择Collection Condition"
            @change="mytypeChange"
          >
            <el-option
              v-for="item in codes.doctypcod"
              :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 label="Maturity Date" prop="bcdgrp.rec.matdat">
          <c-date-picker
            type="date"
            v-model="model.bcdgrp.rec.matdat"
            value-format="yyyy-MM-dd"
            style="width: 60%"
            placeholder="请选择Maturity Date"
          ></c-date-picker>
        </el-form-item>
      </c-col>
	  
        <c-col :span="12">
          <el-form-item label="Tenor Specification" prop="bcdgrp.rec.matpercnt">
            <c-input
              v-model="model.bcdgrp.rec.matpercnt"
              placeholder="请输入Tenor Specification"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="6">
          <el-form-item label="" label-width="10px" prop="bcdgrp.rec.matpertyp">
            <c-input
              v-model="model.bcdgrp.rec.matpertyp"
              style="width: 100%"
              placeholder="请选择Days/Months or Years for Maturity Period"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="14" >
          <el-form-item label="发票类型" prop="bcdgrp.rec.invtyp">
            <c-select v-model="model.bcdgrp.rec.invtyp" style="width:100%" placeholder="请选择发票类型">
              </c-select> <el-option
              v-for="item in codes.invtyp"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </el-form-item>
        </c-col>
		
	    <c-col :span="14">
        <el-form-item label="Tenor Starting from" prop="bcdgrp.rec.matperbeg">
            <c-select v-model="model.bcdgrp.rec.matperbeg" style="width:100%" placeholder="请选择Tenor Starting from">
              </c-select><el-option
              v-for="item in codes.matbeg"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
        </el-form-item>
        </c-col>
       <c-col :span="24">
        <el-form-item label="Maturity Text" prop="bcdgrp.blk.bcgdet">
            <c-input type="textarea" v-model="model.bcdgrp.blk.bcgdet" maxlength="45" show-word-limit placeholder="请输入Maturity Text" ></c-input>
        </el-form-item>
        </c-col>
   

	   <c-col :span="24" class="bctdav_bctp_bctovw_cheak">
	    <c-checkbox v-model="model.bcdgrp.blk.bcgdetflg">BC Tenor Details modified</c-checkbox>
       </c-col> 

	   <c-col :span="24">
	   <!--
            <c-istream-table
              :list="model.bctp.docgrdm.docgrd"
              :columns="columns"
            >
            </c-istream-table>
			-->
		  <c-edit-table :model="model" v-bind="docgrd">
          </c-edit-table>
       </c-col>

    </c-col>

    <!-- ========================右边======================= -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Drawee',
            grp: 'bcdgrp',
            rol: 'dre',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrepDet"
        >
        </c-ptap>
      </c-col>
	  
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Remitting Bank',
            grp: 'bcdgrp',
            rol: 'rmi',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onRmipDet"
        >
        </c-ptap>
      </c-col>
	  
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Drawer',
            grp: 'bcdgrp',
            rol: 'drr',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrrpDet"
        >
        </c-ptap>
      </c-col>	  
 
      <c-col :span="14">
        <el-form-item label="Country or region Code" prop="bcdgrp.rec.stacty">
          <c-select v-model="model.bcdgrp.rec.stacty" style="width:100%" placeholder="请选择Country Code Risk Country">
              </c-select>
        </el-form-item>
      </c-col>
	  
       <c-col :span="14">
        <el-form-item label="申报类型" prop="outlen.szflg">
            <c-select v-model="model.outlen.szflg" style="width:100%" placeholder="请选择申报类型">
              </c-select>
        </el-form-item>
       </c-col>
	 
       <c-col :span="14">
        <el-form-item label="ACTTYP" prop="bctp.acttyp">
            <c-select v-model="model.bctp.acttyp" style="width:100%" placeholder="请选择ACTTYP">
              </c-select>
        </el-form-item>
       </c-col>
	 
    </c-col>
  </c-row>
</template>
<script>
import Api from "~/service/Api"
wangren committed
363
import commonProcess from "~/mixin/commonProcess";
ccx committed
364 365 366 367 368 369 370 371
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctdav/Event"
import Ptap from "~/views/Public/Ptap";

export default {
    components: { "c-ptap": Ptap },
    inject: ['root'],
    props:["model","codes"],
wangren committed
372
    mixins: [commonProcess],
ccx committed
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
    data(){
        return {

		docgrd: {
        columns: [
          {
            title: "lst1",
            width: "80px",
			dataIndex: "cmail1",
            show: "input",
          },
          {
            title: "2nd",
            width: "80px",
			dataIndex: "cmail2",
            show: "input",
          },
          {
            title: "Document",
            width: "320px",
			dataIndex: "docnam",
ccx committed
394
            show: "select",
ccx committed
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
          },
        ],
        urls: "bctp.docgrdm.docgrd",
      },
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>
.centerLable {
  margin-left: -10px;
  height: 32px;
  line-height: 32px;
  padding-bottom: 2px;
}
.marginLable {
  padding-left: 150px;
}
.bctdav_bctp_bctovw_cheak {
  margin: 0px 0 10px 150px;
}
</style>