Commit 8f2892a9 by WF1020

前端页面infgid接口联动,gitopn字段修改

parent 1cb04541
......@@ -12,7 +12,7 @@ export default class Infgid{
etyextkey: '', // Select Single Party .infcon.pty.etyextkey
nam: '', // External Visible Name .infcon.pty.nam
seapty: '', // Party Name/BIC .infcon.seapty
seapty: '', // 当事人编号 .infcon.seapty
relflg: '', // Release Status .infcon.relflg
hndtyp: '', // Handling Type .infcon.hndtyp
searol: '', // Role .infcon.searol
......@@ -21,10 +21,11 @@ export default class Infgid{
statsus: '', // statsus .infcon.statsus
seacur: '', // Currency .infcon.seacur
cxmflg: '', // 是否显示查询码 .infcon.cxmflg
seaamtfr: '', // Amount between .infcon.seaamtfr
seaamtto: '', // Amount to .infcon.seaamtto
amtdown: '', // Amount between .infcon.seaamtfr
amtup: '', // Amount to .infcon.seaamtto
segtyp: '', // 特殊保函类型 .infcon.segtyp
searef: '', // Party Reference .infcon.searef
},
fenlishi: '', // 是否分离式保函 .fenlishi
seapurpos: '', //会议目的 .seapurpos
......
......@@ -70,11 +70,11 @@
<c-col :span="8">
<el-form-item
label="当事人编号"
prop="infcon.etyextkey"
prop="infcon.seapty"
style="width: 100%"
>
<c-input
v-model="model.infcon.etyextkey"
v-model="model.infcon.seapty"
maxlength="16"
placeholder="请输入当事人编号"
></c-input>
......@@ -288,7 +288,7 @@
</c-select>
</el-form-item>
</c-col>
<!-- <c-col :span="8">
<c-col :span="8">
<el-form-item
label="金额区间"
prop="infcon.seaamtfr"
......@@ -296,7 +296,7 @@
>
<c-col :span="11">
<c-input
v-model="model.infcon.seaamtfr"
v-model="model.infcon.amtdown"
style="width: 100%"
placeholder="请输入金额下限"
></c-input>
......@@ -306,13 +306,13 @@
</c-col>
<c-col :span="11">
<c-input
v-model="model.infcon.seaamtto"
v-model="model.infcon.amtup"
style="width: 100%"
placeholder="请输入金额上限"
></c-input>
</c-col>
</el-form-item>
</c-col> -->
</c-col>
<c-col :span="8">
<el-form-item
......@@ -568,7 +568,6 @@
<m-busbtn
ref="childs"
:ownref="ownref"
trnCode="gitsel"
ownrefPath="gidgrp"
:model="gitselModel"
tabIndex="1"
......@@ -580,7 +579,6 @@
<m-busbtn
ref="childs"
:ownref="ownref"
trnCode="getsel"
ownrefPath="gidgrp"
:model="getselModel"
tabIndex="1"
......@@ -594,9 +592,6 @@
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from '../event'
import GitselModel from "../model/gitsel";
import GetselModel from "../model/getsel";
import BusNavbar from "~/views/Public/BusNavbar";
export default {
......@@ -606,8 +601,6 @@ export default {
components: { "m-busbtn": BusNavbar },
data() {
return {
gitselModel: new GitselModel().data,
getselModel: new GetselModel().data,
ownref: "",
dialogTableVisible: false,
dialogFlag: true,
......@@ -664,15 +657,6 @@ export default {
};
},
methods: {
async getButtons(ownref, closedDate) {
this.ownref = ownref;
this.gitselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
this.getselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
this.$refs.childs.initdialog = true;
this.dialogFlag = ownref.startsWith("LG");
console.log("dialogFlag:" + this.dialogFlag);
console.log("ownref:" + ownref);
},
async onChoose(code, prePageId) {
//跳转交易
// this.$router.history.push("/business/" + code);
......
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