Authored by xuhongyun

Merge branch 'dev_2.2' into test

@@ -28,7 +28,7 @@ module.exports={ @@ -28,7 +28,7 @@ module.exports={
28 title: "获得单个变价详情", 28 title: "获得单个变价详情",
29 url: "/product/getProductPrice", 29 url: "/product/getProductPrice",
30 params: [ 30 params: [
31 - {name: 'param',type: 'Number'} 31 + {name: 'product_skn',type: 'Number'}
32 ] 32 ]
33 }, 33 },
34 updateProductPrice:{ 34 updateProductPrice:{
@@ -49,7 +49,7 @@ @@ -49,7 +49,7 @@
49 49
50 <div class="footpanel" style="text-align: center;"> 50 <div class="footpanel" style="text-align: center;">
51 <a id="saveAllInfo" href="javascript:;" class="btn btn-primary btn-lg">保存</a> 51 <a id="saveAllInfo" href="javascript:;" class="btn btn-primary btn-lg">保存</a>
52 - <a id="backBtn" href="javascript:;" onclick="history.go(-1)" class="btn btn-default btn-lg">返回</a> 52 + <a id="backBtn" href="javascript:;" onclick="history.go(-1)" class="btn btn-default btn-lg">取消</a>
53 </div> 53 </div>
54 54
55 <div class="floatnav"> 55 <div class="floatnav">
@@ -158,7 +158,7 @@ $(document).on('click', '.modify-btn', function() { @@ -158,7 +158,7 @@ $(document).on('click', '.modify-btn', function() {
158 158
159 common.util.__ajax({ 159 common.util.__ajax({
160 url:'/product/getProductPrice', 160 url:'/product/getProductPrice',
161 - data: {param: skn} 161 + data: {product_skn: skn}
162 },function(rs){ 162 },function(rs){
163 var data = rs.data; 163 var data = rs.data;
164 parentTr.next('.product-detail').html($(common.util.__template($("#template").html(), data))); 164 parentTr.next('.product-detail').html($(common.util.__template($("#template").html(), data)));