Commit 2e3c484b by WF1020

brtset修改

parent daeae339
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<script> <script>
import Api from "~/service/Api"; import Api from "~/service/Api";
import event from "../event" import event from "../event"
import Coninfp from "~/views/Public/Coninfp"; import Coninfp from "~/components/business/coninfp/views";
export default { export default {
components: { components: {
......
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<el-collapse-item title="跨境人民币申报" name="cnyp1">
<m-cnyp1 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="2122跨境担保登记业务信息" name="voup" v-if="model.cnybop.vouflg == '1'">
<m-voup :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import event from '../event';
import Cnyp1 from "./Cnyp1";
import Voup from "./Voup";
export default {
components: {
"m-cnyp1": Cnyp1,
"m-voup": Voup,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
activeNames: ["cnyp1"],
};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
...@@ -34,9 +34,7 @@ ...@@ -34,9 +34,7 @@
v-model="model.trtcre.trdgrp.rec.reccountrycode" v-model="model.trtcre.trdgrp.rec.reccountrycode"
maxlength="3" maxlength="3"
placeholder="" placeholder=""
@keyup.enter.native=" @keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
showGridPromptDialog('trtcre.trdgrp.rec.reccountrycode')
"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button
......
...@@ -512,9 +512,7 @@ ...@@ -512,9 +512,7 @@
<c-input <c-input
:disabled="true" :disabled="true"
v-model="model.trtcre.trdgrp.fip.pts.extkey" v-model="model.trtcre.trdgrp.fip.pts.extkey"
@keyup.enter.native=" @keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
showGridPromptDialog(`trtcre.trdgrp.fip.pts.extkey`)
"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button
......
...@@ -639,9 +639,7 @@ ...@@ -639,9 +639,7 @@
v-model="model.brdgrp.prb.pts.extkey" v-model="model.brdgrp.prb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编码" placeholder="请输入地址编码"
@keyup.enter.native=" @keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
showGridPromptDialog('brdgrp.prb.pts.extkey')
"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button
......
...@@ -71,18 +71,17 @@ ...@@ -71,18 +71,17 @@
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="备查/附言" name="addbcb"> <!--PD000000 -->
<c-content> <el-tab-pane label="备查/附言" name="coninfp">
<m-addbcb :model="model" :codes="codes" /> <m-coninfp :model="model" :codes="codes" />
</c-content> </el-tab-pane>
</el-tab-pane>
<!--PD000009 --> <!--PD000009 -->
<el-tab-pane label="申报信息" name="cfactlp,cnyp1"> <!-- <el-tab-pane label="申报信息" name="cfactlp,cnyp1">
<c-content> <c-content>
<m-cnyp :model="model" :codes="codes" /> <m-cnyp :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane> -->
<!--PD000529 --> <!--PD000529 -->
<el-tab-pane label="报文/面函" name="docpan"> <el-tab-pane label="报文/面函" name="docpan">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment