|
@@ -412,6 +412,12 @@ export default {
|
|
|
const id = row.id || this.ids
|
|
|
getChannel(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
+ if(this.form.rate){
|
|
|
+ this.form.rate = this.form.rate * 100;
|
|
|
+ }
|
|
|
+ if(this.form.withdrawRate){
|
|
|
+ this.form.withdrawRate = this.form.withdrawRate * 100;
|
|
|
+ }
|
|
|
this.open = true;
|
|
|
this.title = "修改充值渠道";
|
|
|
});
|