Commit 5591a53a authored by zhengke's avatar zhengke

修改

parent cb4288b1
......@@ -862,7 +862,9 @@
currencyTypeObj: [],
//判断是否显示人民币
IsShowRMB: false,
ContractUrlCount: 1
ContractUrlCount: 1,
myLineId:0, //zk新增
comRate:1//公用乘以 zk新增
};
},
components: {
......@@ -1361,8 +1363,8 @@
this.CurrencyListMoney.forEach((cur, i) => {
cur.LeaderGetPriceArr.forEach(lead => {
lead.LeaderGetPriceT =
Math.floor((cur.money * 0.95 - cur.yiLing) * 100) / 100;
lead.PlanPrice = cur.money * 0.95;
Math.floor((cur.money * this.comRate - cur.yiLing) * 100) / 100;
lead.PlanPrice = cur.money * this.comRate;
});
});
this.nav = nav;
......@@ -1420,7 +1422,12 @@
this.isUpdate = this.$route.query.isUpdate;
this.msg.TCIDs = this.$route.query.id;
this.NewCombinationNum = this.$route.query.NewCombinationNum;
this.myLineId = this.$route.query.lineId;
if(this.myLineId==14){
this.comRate=0.95;
}else{
this.comRate=1;
}
if (this.$route.query.OutBranchId == 1216) {
this.IsShowRMB = 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