Commit b89963d5 by yangxiaolei

fix bug

parent 012a9953
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
size="small" size="small"
style="margin-left: 10px; padding: 0 10px" style="margin-left: 10px; padding: 0 10px"
type="primary" type="primary"
@click="onInfoView" @click="onInfoView('inflid')"
> >
<i class="el-icon-info"></i> <i class="el-icon-info"></i>
</c-button> </c-button>
...@@ -176,6 +176,7 @@ ...@@ -176,6 +176,7 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onInfoView('infbrd')"
> >
</c-button> </c-button>
<c-button <c-button
...@@ -621,8 +622,13 @@ export default { ...@@ -621,8 +622,13 @@ export default {
}, },
}, },
methods: { methods: {
onInfoView(){ onInfoView(type ="infbrd"){
let viewurl = "/#/info/infbrd" let viewurl
if(type == "infbrd"){
viewurl = "/#/info/infbrd"
} else{
viewurl = "/#/info/inflid"
}
const serial = Utils.generateUUID(); const serial = Utils.generateUUID();
window.open(viewurl, serial, 'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'); window.open(viewurl, serial, 'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
} }
......
...@@ -95,14 +95,8 @@ ...@@ -95,14 +95,8 @@
label-width="0px" label-width="0px"
prop="lidgrp.cbs.nom1.amt" prop="lidgrp.cbs.nom1.amt"
> >
<c-input-number v-if="model.lidgrp.cbs.nom1.cur =='JPY'" <c-input-currency
v-model="model.lidgrp.cbs.nom1.amt" :currency="model.lidgrp.cbs.nom1.cur"
style="text-align: left; width: 90%"
placeholder="请输入金额"
@change="nomtopChange"
></c-input-number>
<c-input-currency v-else
v-model="model.lidgrp.cbs.nom1.amt" v-model="model.lidgrp.cbs.nom1.amt"
style="text-align: left; width: 90%" style="text-align: left; width: 90%"
placeholder="请输入金额" placeholder="请输入金额"
......
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