xiaoyong931011
2021-11-02 254b7aaadf423d9937d705f0610390a870556f27
20211102
1 files modified
15 ■■■■■ changed files
zq-erp/src/main/resources/templates/views/admin/shop/shopProduct-form.html 15 ●●●●● patch | view | raw | blame | history
zq-erp/src/main/resources/templates/views/admin/shop/shopProduct-form.html
@@ -807,20 +807,35 @@
                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);