Commit b89963d5 by yangxiaolei

fix bug

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