Commit 606a0021 by yangxiaolei

金额整改

parent fd6d5128
......@@ -320,6 +320,7 @@
:key="key"
:label="item.label"
:prop="item.prop"
:formatter="item.rounding"
>
<template slot-scope="scope">
<div>{{ scope.row[item.prop] }}</div>
......@@ -463,6 +464,7 @@ export default {
{
label: "金额",
prop: "reloriamt",
rounding:this.rounding
},
{
label: "签署",
......
......@@ -192,6 +192,7 @@
:key="key"
:label="item.label"
:prop="item.prop"
:formatter="item.rounding"
>
<template slot-scope="scope">
<div>{{ scope.row[item.prop] }}</div>
......@@ -323,6 +324,7 @@ export default {
{
label: "金额",
prop: "reloriamt",
rounding:this.rounding
},
],
data: [],
......
......@@ -105,6 +105,7 @@
:key="key"
:label="item.label"
:prop="item.prop"
:formatter="item.rounding"
>
</el-table-column>
......@@ -166,7 +167,7 @@
{ label: "业务编号", prop: "ownref" },
{ label: "摘要信息", prop: "addtxt" },
{ label: "币种", prop: "reloricur" },
{ label: "金额", prop: "reloriamt" },
{ label: "金额", prop: "reloriamt",rounding:this.rounding },
{ label: "创建时间", prop: "inidattim" },
{ label: "签名要求", prop: "relreq" },
{ label: "签名状态", prop: "relres" },
......
......@@ -19,6 +19,7 @@
:prop="item.prop"
:label="item.label"
:width="item.width"
:formatter="item.rounding"
sortable
>
<template v-slot="{ scope }">
......
......@@ -133,7 +133,7 @@ export default {
{ label: "partflg", prop: "partflg", width: "auto" },
{ label: "报文类型", prop: "msgtyp", width: "auto" },
{ label: "币种", prop: "relcur", width: "auto" },
{ label: "金额", prop: "relamt", width: "auto" },
{ label: "金额", prop: "relamt", width: "auto",rounding:this.rounding },
{ label: "sysno", prop: "sysno", width: "150px" },
{ label: "staflg", prop: "staflg", width: "auto" },
{ label: "clndat", prop: "clndat", width: "auto" },
......
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