Commit f08d78b2 by 潘际乾

infbrd

parent a2447b28
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Litsel from "~/model/Ditsel" import Litsel from "~/model/Litsel"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
...@@ -71,7 +71,7 @@ export default { ...@@ -71,7 +71,7 @@ export default {
this.navcode = [] this.navcode = []
//请求按钮数据 //请求按钮数据
//this.model.didgrp.rec.ownref = 'KZ3500210540AA' //this.model.didgrp.rec.ownref = 'KZ3500210540AA'
this.model.bddgrp.rec.ownref = this.ownref this.model.brdgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref ); console.log("ownref:" + this.ownref );
// let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref // let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref
let rtnmsg0 = await this.executeRule("brdgrp.rec.ownref");//cfgfil.hotreg3 let rtnmsg0 = await this.executeRule("brdgrp.rec.ownref");//cfgfil.hotreg3
......
...@@ -234,13 +234,48 @@ ...@@ -234,13 +234,48 @@
> >
<el-table-column fixed="right" prop="op" label="操作" width="150px"> <el-table-column fixed="right" prop="op" label="操作" width="150px">
<template slot-scope="scope"> <template slot-scope="scope">
<c-button <el-popover
style="margin-left: 0" placement="top-start"
size="small" title="历史信息"
@click="getTrnInfo(scope.$index, scope.row)" width="800"
trigger="click"
:ref="'popover_' + scope.row.IDX"
> >
详情 <div
</c-button> style="
text-align: right;
margin-top: -30px;
margin-right: 5px;
font-size: 16px;
"
>
<span
class="el-icon-close"
@click="closeTrn('popover_' + scope.row.IDX)"
/>
</div>
<c-istream-table :list="trnData.data" :columns="trnData.columns">
<el-table-column prop="op" label="操作" width="0">
<template slot-scope="scope">
<c-button
style="margin-left: 0"
size="small"
@click="display(scope.row['INR'])"
>
详情
</c-button>
</template>
</el-table-column>
</c-istream-table>
<c-button
style="margin-left: 0"
size="small"
@click="getTrnInfo(scope.$index, scope.row)"
slot="reference"
>
详情
</c-button>
</el-popover>
<c-button <c-button
style="margin-left: 0" style="margin-left: 0"
size="small" size="small"
...@@ -277,6 +312,26 @@ export default { ...@@ -277,6 +312,26 @@ export default {
return { return {
ownref: "", ownref: "",
initdialog: false, initdialog: false,
trnData: {
columns: [
'1 1 "编号" 200',
'2 2 "交易名称" 120',
// '3 3 "日期" 200',
{ index: 3, position: 3, width: 110, pattern: "date", label: "日期" },
// '4 4 "状态" 50',
{
index: 4,
position: 4,
width: 100,
pattern: "code",
label: "状态",
code: this.codes.relstaEN,
},
'5 5 "币种" 80',
'6 6 "金额" 110',
],
data: [],
},
columns: [ columns: [
'1 1 "Reference" 140', '1 1 "Reference" 140',
'2 2 "Resp. User" 100', '2 2 "Resp. User" 100',
...@@ -317,7 +372,7 @@ export default { ...@@ -317,7 +372,7 @@ export default {
}, },
async getTrnInfo(idx, row) { async getTrnInfo(idx, row) {
this.model.infcon.objinr = row["INR"]; this.model.infcon.objinr = row["INR"];
this.model.didgrp.rec.inr = row["INR"]; this.model.brdgrp.rec.inr = row["INR"];
this.model.infcon.chksubcon = "X"; this.model.infcon.chksubcon = "X";
this.dialogTableVisible = true; this.dialogTableVisible = true;
......
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