Authored by weiqingting

基础bug修改

@@ -148,7 +148,12 @@ var SORTDATA={ @@ -148,7 +148,12 @@ var SORTDATA={
148 }; 148 };
149 var tabTree=new common.tabTree("#tree",SORTDATA); 149 var tabTree=new common.tabTree("#tree",SORTDATA);
150 tabTree.init(SORTDATA.datas); 150 tabTree.init(SORTDATA.datas);
151 -tabTree.isfeeze=true; 151 +if(param&&(RESPONSEDATA.isAuditing==100||(RESPONSEDATA.isAuditing==200&&RESPONSEDATA.status==8))){
  152 + //上架之前可以修改,编辑状态
  153 + tabTree.isfeeze=false;
  154 +}else{
  155 + tabTree.isfeeze=true;
  156 +}
152 157
153 158
154 159
@@ -199,7 +204,7 @@ var g=new common.grid({ @@ -199,7 +204,7 @@ var g=new common.grid({
199 g.__gsm[item.__index]=item.goodsSizeList.length; 204 g.__gsm[item.__index]=item.goodsSizeList.length;
200 } 205 }
201 var html=[]; 206 var html=[];
202 - html.push("<div class='form-group'><div class='col-sm-11 red'><input type=text value='"+item.modelCode+"' data-index="+item.__index+" class='modelCode form-control' placeholder='款型编码' required/></div></div>"); 207 + html.push("<div class='form-group'><div class='col-sm-11 red'><input type=text value='"+item.modelCode+"' data-index="+item.__index+" class='modelCode form-control' placeholder='款型编码' /></div></div>");
203 html.push('<div class="rows" id="rows__'+item.__index+'">'); 208 html.push('<div class="rows" id="rows__'+item.__index+'">');
204 item.goodsSizeList=item.goodsSizeList||[$.extend({},ENUM.goodsSizeList)]; 209 item.goodsSizeList=item.goodsSizeList||[$.extend({},ENUM.goodsSizeList)];
205 var ISXIANGO=(common.util.__input("isAdvance")=="Y"&&+RESPONSEDATA.isAuditing==200)?true:false; 210 var ISXIANGO=(common.util.__input("isAdvance")=="Y"&&+RESPONSEDATA.isAuditing==200)?true:false;
@@ -226,7 +231,7 @@ var g=new common.grid({ @@ -226,7 +231,7 @@ var g=new common.grid({
226 for(var i in g.__gsm){ 231 for(var i in g.__gsm){
227 var warp=$("#rows__"+i).children(".form-group").slice(0, g.__gsm[i]); 232 var warp=$("#rows__"+i).children(".form-group").slice(0, g.__gsm[i]);
228 warp.find("input").prop("readonly",true); 233 warp.find("input").prop("readonly",true);
229 - warp.find("select").prop("disabled",true); 234 + warp.find(".btn-sort-chima").prop("disabled",true);
230 warp.find(".btn-sort-remove").remove(); 235 warp.find(".btn-sort-remove").remove();
231 warp.find(".btn-sort-kucun").prop("readonly",false); 236 warp.find(".btn-sort-kucun").prop("readonly",false);
232 } 237 }
@@ -234,7 +239,7 @@ var g=new common.grid({ @@ -234,7 +239,7 @@ var g=new common.grid({
234 var warp=$("#basicTable").find("tbody").children("tr").eq(i); 239 var warp=$("#basicTable").find("tbody").children("tr").eq(i);
235 warp.find(".w-goods-text").prop("readonly",true).prop("disabled",true); 240 warp.find(".w-goods-text").prop("readonly",true).prop("disabled",true);
236 warp.find("input[name=file]").prop("readonly",true).prop("disabled",true); 241 warp.find("input[name=file]").prop("readonly",true).prop("disabled",true);
237 - warp.find(".modelCode").prop("readonly",true).prop("disabled",true); 242 + // warp.find(".modelCode").prop("readonly",true).prop("disabled",true);
238 // 如果为undefind,则清除require,并且设置为空 243 // 如果为undefind,则清除require,并且设置为空
239 if(warp.find(".modelCode").val()=="undefined"){ 244 if(warp.find(".modelCode").val()=="undefined"){
240 warp.find(".modelCode").removeAttr("required").val(''); 245 warp.find(".modelCode").removeAttr("required").val('');
@@ -548,6 +553,9 @@ $(document).on("click","#btnReview",function(){ @@ -548,6 +553,9 @@ $(document).on("click","#btnReview",function(){
548 option.data.middleSortId=select[1]?select[1].id:""; 553 option.data.middleSortId=select[1]?select[1].id:"";
549 option.data.smallSortId=select[2]?select[2].id:""; 554 option.data.smallSortId=select[2]?select[2].id:"";
550 option.data.sortId=select[3]?select[3].id:""; 555 option.data.sortId=select[3]?select[3].id:"";
  556 +
  557 + option.data.isVip=option.data.isVip||'B';
  558 + option.data.isOutLets=option.data.isOutLets||'B';
551 559
552 // option.data.shopId=$("#shopId").val(); 560 // option.data.shopId=$("#shopId").val();
553 option.data.brandId=$("#brandId").val(); 561 option.data.brandId=$("#brandId").val();
@@ -62,7 +62,7 @@ $(document).on("click",".apply-success",function(){ @@ -62,7 +62,7 @@ $(document).on("click",".apply-success",function(){
62 62
63 var data=function(){ 63 var data=function(){
64 return { 64 return {
65 - productSknList:JSON.stringify([param[2]]), 65 + productSknList:JSON.stringify([param[0]]),
66 }; 66 };
67 } 67 }
68 BllPass.toast("你确定审核通过吗?",data); 68 BllPass.toast("你确定审核通过吗?",data);
@@ -79,7 +79,7 @@ $(document).on("click",".apply-back",function(){ @@ -79,7 +79,7 @@ $(document).on("click",".apply-back",function(){
79 } 79 }
80 80
81 return { 81 return {
82 - productSknList:JSON.stringify([param[2]]), 82 + productSknList:JSON.stringify([param[0]]),
83 rejectReason:reason 83 rejectReason:reason
84 }; 84 };
85 } 85 }