diff --git a/src/config/CodeTable/index.js b/src/config/CodeTable/index.js
index 5165092..14c3572 100644
--- a/src/config/CodeTable/index.js
+++ b/src/config/CodeTable/index.js
@@ -127,7 +127,10 @@ const CodeTable = {
     ],
 
     invtyp: [
-        { label: "类型一", value: "1" }
+        { label: "商业发票", value: "1" },
+        { label: "形式发票", value: "2" },
+        { label: "样品发票", value: "3" },
+        { label: "海关发票", value: "4" },
     ],
     trpdoctyp: [
         { label: "海运提单", value: "Ocean Bill of Lading" },
diff --git a/src/views/Business/Bptopn/Bptopnp.vue b/src/views/Business/Bptopn/Bptopnp.vue
index 74664e7..8882f7e 100644
--- a/src/views/Business/Bptopn/Bptopnp.vue
+++ b/src/views/Business/Bptopn/Bptopnp.vue
@@ -315,6 +315,38 @@
             </el-form-item>
           </c-col>
         </c-row>
+
+        <!---line1---->
+        <c-row>
+          <c-col :span="12">
+            <el-form-item label="融资金额" prop="bpdgrp.cbs.max.cur">
+              <c-select
+                :disabled="(model.ledgrp.rec.dflg=='D' || model.dedgrp.rec.dflg=='D') || (model.bpdgrp.rec.fintyp=='F' || model.bpdgrp.rec.fintyp=='U')"
+                v-model="model.bpdgrp.cbs.max.cur"
+                style="width: 100%"
+                placeholder="请选择融资币种"
+              >
+                <el-option
+                  v-for="item in codes.curtxt1"
+                  :key="item.value"
+                  :label="item.label"
+                  :value="item.value"
+                >
+                </el-option>
+              </c-select>
+            </el-form-item>
+          </c-col>
+
+          <c-col :span="12">
+            <el-form-item label="融资金额" prop="bpdgrp.cbs.max.amt">
+              <c-input
+                v-model="model.bpdgrp.cbs.max.amt"
+                placeholder="请输入融资金额"
+              ></c-input>
+            </el-form-item>
+          </c-col>
+        </c-row>
+
       </c-col>
 
       <!------------右部------------->
@@ -342,7 +374,7 @@
       <!-----------左侧------------->
       <c-col :span="12" style="padding-right: 20px;">
         <!---line1---->
-        <c-row>
+        <!-- <c-row>
           <c-col :span="12">
             <el-form-item label="融资金额" prop="bpdgrp.cbs.max.cur">
               <c-select
@@ -370,7 +402,7 @@
               ></c-input>
             </el-form-item>
           </c-col>
-        </c-row>
+        </c-row> -->
 
         <!---line2---->
         <c-row>
diff --git a/src/views/Business/Bptopn/Rzkx.vue b/src/views/Business/Bptopn/Rzkx.vue
index b43551d..7947caf 100644
--- a/src/views/Business/Bptopn/Rzkx.vue
+++ b/src/views/Business/Bptopn/Rzkx.vue
@@ -4,8 +4,8 @@
   <div class="eibs">
     <div v-if="model.ledgrp.rec.dflg == 'D' || model.dedgrp.rec.dflg == 'D'">
       
-      <c-row>
-        <c-col :span="12">
+      
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx1"
           @change="
           mutualExclusion();
@@ -13,7 +13,7 @@
         ">贷记贵司指定账户</c-checkbox>
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="帐号:" prop="financ.acc">
             <c-input
               v-model="model.financ.acc"
@@ -23,10 +23,10 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
+  
+
 
-      <c-row>
-        <c-col :span="12">
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx5"
             @change="
             mutualExclusion();
@@ -36,7 +36,7 @@
           >
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="业务编号" prop="financ.ref5">
             <c-input
               v-model="model.financ.ref5"
@@ -46,13 +46,12 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
+
     </div>
 
     <div v-if="model.ledgrp.rec.dflg != 'D' && model.dedgrp.rec.dflg != 'D'">
 
-      <c-row>
-        <c-col :span="12">
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx1"
           @change="
           mutualExclusion();
@@ -60,7 +59,7 @@
         ">贷记贵司指定账户</c-checkbox>
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="帐号:" prop="financ.acc">
             <c-input
               v-model="model.financ.acc"
@@ -70,10 +69,8 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
 
-      <c-row>
-        <c-col :span="12">
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx2"
             @change="
             mutualExclusion();
@@ -83,7 +80,7 @@
           >
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="业务编号" prop="financ.ref2">
             <c-input
               v-model="model.financ.ref2"
@@ -93,10 +90,8 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
 
-      <c-row>
-        <c-col :span="12">
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx3"
             @change="
             mutualExclusion();
@@ -106,7 +101,7 @@
           >
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="业务编号" prop="financ.ref3">
             <c-input
               v-model="model.financ.ref3"
@@ -116,10 +111,8 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
 
-      <c-row>
-        <c-col :span="12">
+        <c-col :span="6">
           <c-checkbox v-model="model.financ.rzkx4"
             @change="
             mutualExclusion();
@@ -129,7 +122,7 @@
           >
         </c-col>
 
-        <c-col :span="12">
+        <c-col :span="14">
           <el-form-item label="业务编号" prop="financ.ref4">
             <c-input
               v-model="model.financ.ref4"
@@ -139,7 +132,7 @@
             ></c-input>
           </el-form-item>
         </c-col>
-      </c-row>
+
     </div>
   </div>
 </template>
diff --git a/src/views/Business/Trtopn/Ovwp1.vue b/src/views/Business/Trtopn/Ovwp1.vue
index 19cbd58..1ba860c 100644
--- a/src/views/Business/Trtopn/Ovwp1.vue
+++ b/src/views/Business/Trtopn/Ovwp1.vue
@@ -741,11 +741,13 @@
       </c-col>
       <c-col :span="24">
         <el-form-item label="外币贷款专户清单" prop="trtp.act">
+          <!-- @change="defaultFunction()" -->
           <c-select
             v-model="model.trtp.act"
             style="width: 100%"
             placeholder="请选择外币贷款专户清单"
             :disabled="model.trdgrp.cbs.max.cur === 'CNY'"
+            
           >
           </c-select>
         </el-form-item>
diff --git a/src/views/Statics/Infgtx/Infsea.vue b/src/views/Statics/Infgtx/Infsea.vue
index 252fdc2..3bf3a22 100644
--- a/src/views/Statics/Infgtx/Infsea.vue
+++ b/src/views/Statics/Infgtx/Infsea.vue
@@ -297,9 +297,9 @@ export default {
       this.model.pageSize = pageSize
       this.onInfgtxSearch()
     },
-    ptytypeChange(val) {
-      this.model.ptytyp = val;
-    },
+    // ptytypeChange(val) {
+    //   this.model.ptytyp = val;
+    // },
     getCodesByKey(key) {
       return codes[key] ?? [];
     },