|  |  |  | 
|---|
|  |  |  | <el-row type="flex" align="middle" style="padding: 0 0 10px 0;"> | 
|---|
|  |  |  | <el-col :span="5" style="text-align: center;">充值金额</el-col> | 
|---|
|  |  |  | <el-col :span="10" style="text-align: center; line-height: 50px;"> | 
|---|
|  |  |  | <el-input v-model="rechargeMoney" placeholder="0.1元起充"></el-input> | 
|---|
|  |  |  | <el-input v-model="rechargeMoney" @change="changeRechargeMoney"  placeholder="0.1元起充"></el-input> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | methods : { | 
|---|
|  |  |  | //修改充值金额同步修改业绩 | 
|---|
|  |  |  | changeRechargeMoney(){ | 
|---|
|  |  |  | let aMoeny=(this.rechargeMoney/this.achieveList.length).toFixed(2); | 
|---|
|  |  |  | this.achieveList.forEach(item=>{ | 
|---|
|  |  |  | item.achieveMoney=aMoeny; | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | submitRecharge() { | 
|---|
|  |  |  | let _this = this; | 
|---|
|  |  |  |  | 
|---|