Detp1.vue 8.15 KB
Newer Older
wuziqiang committed
1 2
<template>
  <div class="eibs-tab">
3 4 5
   <!--=== ==========左边=============== -->
   <c-col :span="11"> 
      <c-col :span="24">
wuziqiang committed
6
        <el-form-item label="是否可议付" prop="dedgrp.rec.isyifu">
7 8 9 10
          <c-select
            v-model="model.dedgrp.rec.isyifu"
            style="width: 100%"
            placeholder="请选择是否可议付"
liuxin committed
11
            @change="selectOrCheckboxRule('dedgrp.rec.isyifu')"
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
          >
            <el-option
              v-for="item in codes.isyifu"
              :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="指定的有关银行 " prop="dedgrp.rec.avbwth">
          <c-select
            :disabled="model.dedgrp.rec.isyifu != 'Y'"
            v-model="model.dedgrp.rec.avbwth"
            style="width: 100%"
            placeholder="请选择指定的有关银行"
          >
            <el-option
              v-for="item in codes.avbwth"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-ptapdome
liuxin committed
44
        :disabledBankno="model.dedgrp.rec.avbwth != 'S'"
45
        :disabledJigomc="true"
liuxin committed
46
        :disabledDizhii="model.dedgrp.rec.avbwth != 'S'"
47 48 49 50 51 52 53 54 55 56 57 58 59 60
        :model="model"
        :argadr="{
          title: '议付行',
          rol: 'avb',
          grp: 'dedgrp'
        }"
      ></c-ptapdome>


      <c-col :span="24">
        <el-form-item label="通知行BIC" prop="dedgrp.adv.pts.extkey">
          <c-input
            v-model="model.dedgrp.adv.pts.extkey"
            maxlength="16"
wangna committed
61
            placeholder="请输入通知行BIC"
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
            @keyup.enter.native="showGridPromptDialog('dedgrp.adv.pts.extkey')"
          ></c-input>
        </el-form-item>
      </c-col>
      
      <c-ptapdome
        :disabledBankno="true"
        :disabledJigomc="true"
        :disabledDizhii="true"
        :model="model"
        :argadr="{
          title: '通知行',
          rol: 'adv',
          grp: 'dedgrp'
        }"
      ></c-ptapdome>

      <c-col :span="13">
        <el-form-item label="通知行邮编" prop="dedgrp.adv.pts.youzbm">
liuxin committed
81
            <c-input  v-model="model.dedgrp.adv.pts.youzbm" maxlength="6" disabled placeholder="请输入邮编"></c-input>
wuziqiang committed
82
        </el-form-item>
83
      </c-col>
wuziqiang committed
84
                                   
85 86
      <c-col :span="11">
        <el-form-item label="通知行电话" prop="dedgrp.adv.pts.dihdig" label-width="100px">
liuxin committed
87
            <c-input  v-model="model.dedgrp.adv.pts.dihdig" maxlength="16" disabled  placeholder="请输入电话"></c-input>
88 89 90 91 92
        </el-form-item>
      </c-col>
      
                               
      <c-col :span="24">
wuziqiang committed
93 94 95 96
        <el-form-item label="信用证编号" prop="dedgrp.rec.kzref">
            <c-input  v-model="model.dedgrp.rec.kzref" maxlength="35"  placeholder="请输入信用证编号"></c-input>
        </el-form-item>
       </c-col>
97 98 99 100 101 102 103

      <!-- =========================开证行========================= -->
      <c-col :span="24">
        <el-form-item label="开证行BIC" prop="dedgrp.iss.pts.extkey">
          <c-input
            v-model="model.dedgrp.iss.pts.extkey"
            maxlength="16"
wangna committed
104
            placeholder="请输入开证行BIC"
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
            @keyup.enter.native="showGridPromptDialog('dedgrp.iss.pts.extkey')"
          ></c-input>
        </el-form-item>
      </c-col>


      <c-ptapdome
        :model="model"
        :argadr="{
          title: '开证行',
          rol: 'iss',
          grp: 'dedgrp'
        }"
        :isIss="false"
      ></c-ptapdome>


      <c-col :span="12">
        <el-form-item label="开证行邮编" prop="dedgrp.iss.pts.youzbm">
            <c-input  v-model="model.dedgrp.iss.pts.youzbm" maxlength="6"  placeholder="请输入邮编  电证用"></c-input>
wuziqiang committed
125 126 127
        </el-form-item>
       </c-col>
                                   
128 129 130
      <c-col :span="12">
        <el-form-item label="开证行电话" prop="dedgrp.iss.pts.dihdig" label-width="100px">
            <c-input  v-model="model.dedgrp.iss.pts.dihdig" maxlength="16"  placeholder="请输入电话"></c-input>
wuziqiang committed
131
        </el-form-item>
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
      </c-col>

   </c-col> 


    <!--=== ==========右边=============== -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
       <el-form-item label="是否可保兑" prop="dedgrp.rec.bdflg">
            <c-select
              v-model="model.dedgrp.rec.bdflg"
              style="width: 100%"
              placeholder="请选择是否可保兑"
            >
              <el-option
                v-for="item in codes.bdflg"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
      </c-col>
      

      <c-ptapdome
          :disabledBankno="model.dedgrp.rec.bdflg != 'Y'"
          :disabledJigomc="true"
          :disabledDizhii="model.dedgrp.rec.bdflg != 'Y'"
          :model="model"
          :argadr="{
            title: '保兑行',
            rol: 'rmb',
            grp: 'dedgrp'
          }"
      ></c-ptapdome>

      <c-ptapdome
liuxin committed
171 172 173
        :disabledBankno="this.model.dedgrp.rec.lcrtyp == 'I'"
        :disabledJigomc="this.model.dedgrp.rec.lcrtyp == 'I'"
        :disabledDizhii="this.model.dedgrp.rec.lcrtyp == 'I'"
174 175 176 177 178 179 180 181
        :model="model"
        :argadr="{
          title: '转让行',
          rol: 'cmb',
          grp: 'dedgrp'
        }"
      ></c-ptapdome>
      
wangna committed
182
 
183 184 185 186 187 188 189 190 191 192 193 194 195 196
      <c-ptapdome
        :disabledBankno="true"
        :disabledJigomc="true"
        :disabledDizhii="true"
        :model="model"
        :argadr="{
          title: '申请行',
          rol: 'apc',
          grp: 'dedgrp'
        }"
      ></c-ptapdome>

       <c-col :span="13">
        <el-form-item label="申请人邮编" prop="dedgrp.apc.pts.youzbm">
liuxin committed
197
            <c-input  v-model="model.dedgrp.apc.pts.youzbm" maxlength="6" disabled placeholder="请输入邮编  电证用"></c-input>
wuziqiang committed
198 199 200
        </el-form-item>
       </c-col>
                                   
201 202
       <c-col :span="11">
        <el-form-item label="申请人电话" prop="dedgrp.apc.pts.dihdig" label-width="100px">
liuxin committed
203
            <c-input  v-model="model.dedgrp.apc.pts.dihdig" maxlength="16" disabled  placeholder="请输入电话"></c-input>
204 205 206 207 208
        </el-form-item>
       </c-col>

      <c-col :span="24">
        <el-form-item label="申请人账号" prop="dedgrp.apl.pts.extact">
wangna committed
209
            <c-input  v-model="model.dedgrp.apl.pts.extact" maxlength="34"  placeholder="请输入申请人账号"></c-input>
210 211 212 213 214
        </el-form-item>
       </c-col>

      <c-col :span="24">
        <el-form-item label="申请人开户行 联行行号" prop="dedgrp.apb.pts.bankno">
wangna committed
215
            <c-input  v-model="model.dedgrp.apb.pts.bankno" maxlength="20"  placeholder="请输入申请人开户行 联行行号"></c-input>
wuziqiang committed
216 217 218
        </el-form-item>
       </c-col>
                                   
219 220 221 222 223 224 225
       <c-col :span="24">
        <el-form-item label="联行名称" prop="dedgrp.apb.pts.jigomc">
            <c-input type="textarea" v-model="model.dedgrp.apb.pts.jigomc" maxlength="35" show-word-limit placeholder="请输入联行名称  电证用" ></c-input>
        </el-form-item>
       </c-col>

      <c-col :span="24">
wuziqiang committed
226 227 228 229
        <el-form-item label="申请人统一社会信用代码" prop="dedgrp.rec.idcode">
            <c-input  v-model="model.dedgrp.rec.idcode" maxlength="18"  placeholder="请输入申请人统一社会信用代码"></c-input>
        </el-form-item>
       </c-col>
230 231

    </c-col>
wuziqiang committed
232 233 234 235
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
236
import commonProcess from "~/mixin/commonProcess";
wuziqiang committed
237
import CodeTable from "~/config/CodeTable"
238 239 240
import Event from "~/model/Detopn/Event"
import Utils from "~/utils";
import PtapDome from "~/views/Public/PtapDome";
wuziqiang committed
241 242

export default {
243
    components: { "c-ptapdome": PtapDome },
wuziqiang committed
244 245
    inject: ['root'],
    props:["model","codes"],
wangren committed
246
    mixins: [commonProcess],
wuziqiang committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260
    data(){
        return {

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

    }
}
</script>
<style>

</style>