...
|
...
|
@@ -327,7 +327,7 @@ webpackJsonp([7],[ |
|
|
$("#isLimited").val(basicInfo.isLimited);
|
|
|
$("#isOutlets").val(basicInfo.isOutLets);
|
|
|
|
|
|
$(":checkbox[name=seasons]").each(function(){
|
|
|
$(":radio[name=seasons]").each(function(){
|
|
|
if(basicInfo.seasons!=null&&basicInfo.seasons!=undefined&&basicInfo.seasons!=''&&
|
|
|
basicInfo.seasons.indexOf($(this).val())>-1){
|
|
|
$(this).prop("checked",true)
|
...
|
...
|
@@ -411,9 +411,9 @@ webpackJsonp([7],[ |
|
|
$('#product-ext').html(common.util.__template2($('#productExtBoTemp').html(), productExtBo));
|
|
|
|
|
|
|
|
|
$(document).on("change",":checkbox[name=seasons]",function(){
|
|
|
$(document).on("change",":radio[name=seasons]",function(){
|
|
|
var value=$(this).val();
|
|
|
var c=$(":checkbox[name=seasons]");
|
|
|
/*var c=$(":checkbox[name=seasons]");
|
|
|
if($(this).is(":checked")){
|
|
|
if(value=="seasons"){
|
|
|
c.slice(0,3).prop("checked",false);
|
...
|
...
|
@@ -424,8 +424,8 @@ webpackJsonp([7],[ |
|
|
var arr=[];
|
|
|
$(":checked[name=seasons]").each(function(){
|
|
|
arr.push($(this).val())
|
|
|
});
|
|
|
$("#seasons").val(arr.join(','));
|
|
|
});*/
|
|
|
$("#seasons").val($(this).val());
|
|
|
});
|
|
|
|
|
|
$(document).on("change",":radio[name=isOutLets]",function(){
|
...
|
...
|
|