|  |  |  | 
|---|
|  |  |  | sku.sort = sort; | 
|---|
|  |  |  | //推广提成 | 
|---|
|  |  |  | var selfPrice = tds.eq(length - 5).find("input").val(); | 
|---|
|  |  |  | if(selfPrice == ""){ | 
|---|
|  |  |  | selfPrice = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sku.selfPrice = selfPrice; | 
|---|
|  |  |  | //推广提成 | 
|---|
|  |  |  | var sealesPrice = tds.eq(length - 4).find("input").val(); | 
|---|
|  |  |  | if(sealesPrice == ""){ | 
|---|
|  |  |  | sealesPrice = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sku.sealesPrice = sealesPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //邀请提成 | 
|---|
|  |  |  | var invitationPrice = tds.eq(length - 3).find("input").val(); | 
|---|
|  |  |  | if(invitationPrice == ""){ | 
|---|
|  |  |  | invitationPrice = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sku.invitationPrice = invitationPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //兑换所需金额 | 
|---|
|  |  |  | var scorePrice = tds.eq(length - 2).find("input").val(); | 
|---|
|  |  |  | if(scorePrice == ""){ | 
|---|
|  |  |  | scorePrice = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sku.scorePrice = scorePrice; | 
|---|
|  |  |  | //兑换所需积分 | 
|---|
|  |  |  | var scoreCount = tds.eq(length - 1).find("input").val(); | 
|---|
|  |  |  | if(scoreCount == ""){ | 
|---|
|  |  |  | scoreCount = 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sku.scoreCount = scoreCount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | skus.push(sku); | 
|---|