瀏覽代碼

修改渠道

dos 2 月之前
父節點
當前提交
74b5cc9412
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      game-ui/src/views/business/channel/index.vue

+ 6 - 0
game-ui/src/views/business/channel/index.vue

@@ -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 = "修改充值渠道";
       });