Commit 23dbed53 by zhujiazhan

代码提交

parent a70ee241
......@@ -246,8 +246,25 @@ export default {
}
},
async handleReset() {
this.model.infcon.seaownref = "";
this.model.infcon.searef = "";
this.model.infcon.pty.extkey = "";
this.model.infcon.seapty = "";
this.model.infcon.opndatfrom = "";
this.model.infcon.opndatto = "";
this.model.infcon.seaamtfr = "";
this.model.infcon.seaamtto = "";
this.model.infcon.seasta = "";
this.model.infcon.usr.extkey = "";
this.model.infcon.nam = "";
this.model.infcon.hndtyp = "";
this.model.infcon.pty.nam = "";
this.model.infcon.searol = "";
this.model.infcon.seacur = "";
this.model.infcon.seasta = "";
this.stmData.data = "";
},
async handleSearch() {
......
......@@ -151,6 +151,7 @@
v-model="model.infcon.searol"
style="width: 100%"
placeholder="请选择Role"
:code="searol"
>
</c-select>
</el-form-item>
......@@ -188,16 +189,12 @@
</el-form-item>
</c-col>
<c-col :span="8">
<el-form-item
label="Currency"
prop="infcon.seacur"
style="width: 100%"
>
<el-form-item label="Currency" prop="infcon.seacur" style="width: 100%" >
<c-select
v-model="model.infcon.seacur"
style="width: 100%"
placeholder="请选择Currency"
:code="codes.cur"
:code="codes.currencycode"
>
</c-select>
</el-form-item>
......@@ -251,6 +248,7 @@
v-model="model.msgtyp"
style="width: 100%"
placeholder="请选择Swift type"
:code="codes.swftyp"
>
</c-select>
</el-form-item>
......@@ -403,9 +401,8 @@
</el-table-column>
</c-istream-table>
</c-col>
<m-busbtn ref="childs" :ownref="ownref" @onChoose="onChoose"
></m-busbtn
>
<!-- <m-busbtn ref="childs" :ownref="ownref" @onChoose="onChoose"></m-busbtn> -->
</div>
</template>
<script>
......@@ -414,6 +411,8 @@ import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infcpd/Event";
import BusNavbar from "~/views/Public/BusNavbar";
export default {
inject: ["root"],
props: ["model", "codes"],
......@@ -421,6 +420,13 @@ export default {
components: { "m-busbtn": BusNavbar },
data() {
return {
searol:[
{ label: "Ordering Customer", value: "ORC" },
{ label: "Ordering Institution", value: "ORI" },
{ label: "Paying Bank", value: "PYB" },
{ label: "Payee", value: "PYE" },
{ label: "Reimb. Bank Transfer", value: "RMT" },
],
searchToggle: true,
ownref: "",
dialogTableVisible: false,
......@@ -447,20 +453,19 @@ export default {
stmData: {
columns: [
'1 1 "Reference" 150 ',
'2 2 "Resp. User" 100 ',
'2 2 "Resp. User" 120 ',
'12 3 "PYE NO." 100 ',
'9 4 "Payee.Party Number" 150',
'9 4 "Payee.Party Number" 200',
'10 5 "Payee Customer" 250',
'11 6 "PYE.Customer CN" 130',
'11 6 "PYE.Customer CN" 150',
'13 7 "Ord.Party Number" 150',
'14 8 "Ord.Customer" 250',
'15 9 "Ord.Customer CN" 130',
'14 8 "Ord.Customer" 200',
'15 9 "Ord.Customer CN" 150',
'16 10 "1.Party Number" 150',
'17 11 "Ord.Institution" 200',
'12 12 "ORC NO." 150',
'18 13 "2.Party Number" 150',
'19 14 "Paying Bank" 150',
//'3 15 "Opened" 140',
{
index: 3,
position: 15,
......@@ -468,7 +473,6 @@ export default {
pattern: "date",
label: "Opened",
},
//'4 16 "Value" 140',
{
index: 4,
position: 16,
......@@ -476,7 +480,7 @@ export default {
pattern: "date",
label: "Value",
},
//'5 17 "Closed" 140',
{
index: 5,
position: 17,
......@@ -486,10 +490,10 @@ export default {
},
'20 18 "1.Cur" 80',
'22 19 "2.Cur" 80',
'21 20 "Paym.Amount" 120',
'23 21 "Amount rcvd." 120',
'6 22 "Pyectycod" 100',
'7 23 "Orcctycod" 100',
'21 20 "Paym.Amount" 150',
'23 21 "Amount rcvd." 150',
'6 22 "Pyectycod" 120',
'7 23 "Orcctycod" 120',
],
data: [],
},
......
......@@ -171,7 +171,6 @@
codes: { ...CodeTable },
showflg: true,
showPanel:false,
}
},
methods: {
......@@ -190,7 +189,7 @@
console.log("进入infcpd交易");
let rtnmsg = await this.init({})
if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data)
this.updateModel(rtnmsg.data);
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
......
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