|  |  |  | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column | 
|---|
|  |  |  | prop="sealesCommission" | 
|---|
|  |  |  | label="自购返佣 %"> | 
|---|
|  |  |  | <template slot-scope="scope"> | 
|---|
|  |  |  | <el-input class="edit-input" v-model="scope.row.selfCommission" oninput ="value=value.replace(/[^0-9.]/g,'')" placeholder="自购返佣"></el-input> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column | 
|---|
|  |  |  | prop="sealesCommission" | 
|---|
|  |  |  | label="推广提成 %"> | 
|---|
|  |  |  | <template slot-scope="scope"> | 
|---|
|  |  |  | <el-input class="edit-input" v-model="scope.row.sealesCommission" oninput ="value=value.replace(/[^0-9.]/g,'')" placeholder="推广提成"></el-input> | 
|---|
|  |  |  | 
|---|
|  |  |  | let id = row.id; | 
|---|
|  |  |  | let name = row.name; | 
|---|
|  |  |  | let sealesCommission = row.sealesCommission; | 
|---|
|  |  |  | let selfCommission = row.selfCommission; | 
|---|
|  |  |  | let invitationCommission = row.invitationCommission; | 
|---|
|  |  |  | let gradeCondition = row.gradeCondition; | 
|---|
|  |  |  | let obj = { | 
|---|
|  |  |  | id: id, | 
|---|
|  |  |  | name: name, | 
|---|
|  |  |  | sealesCommission: sealesCommission, | 
|---|
|  |  |  | selfCommission: selfCommission, | 
|---|
|  |  |  | invitationCommission: invitationCommission, | 
|---|
|  |  |  | gradeCondition: gradeCondition, | 
|---|
|  |  |  | } | 
|---|