Commit 592ba473 authored by youjie's avatar youjie

no message

parent 8bef4e26
......@@ -75,7 +75,7 @@
</template>
<el-col :span="4">
<el-form-item :label="$t('fnc.bweibi')">
<el-select :disabled="coinGetShow" filterable v-model="msg.StandardCurrencyId" class @change="getChange">
<el-select :disabled="coinGetShow" filterable v-model="msg.StandardCurrencyId" @change="getChange">
<el-option :value="-1" :label="$t('pub.unlimitedSel')"></el-option>
<el-option
v-for="item in coinGetList"
......@@ -88,7 +88,7 @@
</el-col>
<el-col :span="4" v-if="activeName==4 && msg.StandardCurrencyId ==1">
<el-form-item label="汇率">
<el-input v-model="shopMsg.MaoLiRate" type="number" @change="getChange"></el-input>
<el-input v-model="shopMsg.MaoLiRate" type="number" @change="getMaoLiRate"></el-input>
</el-form-item>
</el-col>
<el-col :span="4" v-if="activeName!=4">
......@@ -273,6 +273,10 @@ export default {
}
}, null)
},
getMaoLiRate(){
if(!this.shopMsg.MaoLiRate) this.shopMsg.MaoLiRate = 0.049
this.getStatement();
},
getChange(val){
if(this.msg.OutBranchId == -1){
this.coinGetShow = false
......@@ -281,7 +285,6 @@ export default {
this.coinGetShow = true
this.msg.StandardCurrencyId = -1
}
if(!this.shopMsg.MaoLiRate) this.shopMsg.MaoLiRate = 0.049
this.getStatement();
},
financeinfo_post_GetList(){ // 获取币种
......
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