|
@@ -102,13 +102,13 @@ export default {
|
|
|
content = `你将赠送给${this.id}余额${
|
|
content = `你将赠送给${this.id}余额${
|
|
|
this.give_num
|
|
this.give_num
|
|
|
},扣除手续费后对方将收到${
|
|
},扣除手续费后对方将收到${
|
|
|
- (this.give_num * (1 - this.list[this.value].fee)).toFixed(2)
|
|
|
|
|
|
|
+ this.$h.Mul(this.give_num, (1 - this.list[this.value].fee))
|
|
|
}余额`;
|
|
}余额`;
|
|
|
} else {
|
|
} else {
|
|
|
content = `你将赠送给${this.id}茶宝${
|
|
content = `你将赠送给${this.id}茶宝${
|
|
|
this.give_num
|
|
this.give_num
|
|
|
},扣除手续费后对方将收到${
|
|
},扣除手续费后对方将收到${
|
|
|
- (this.give_num * (1 - this.list[this.value].fee)).toFixed(2)
|
|
|
|
|
|
|
+ this.$h.Mul(this.give_num, (1 - this.list[this.value].fee))
|
|
|
}茶宝`;
|
|
}茶宝`;
|
|
|
}
|
|
}
|
|
|
let that = this
|
|
let that = this
|