Authored by yyq

fix bucket-review by huangtao

... ... @@ -73,7 +73,9 @@ new common.dropDown({
// 初始化日期插件
new common.edit("#filter").init();
var edit = new common.edit(".modal-body");
var edit = new common.edit(".modal-body", {
bucket: "yhb-img01"
});
var Bll = {
module: null,
getQueryString: function (name) {
... ... @@ -412,13 +414,13 @@ $(document).on("click", "input[name='searchType']", function() {
var type = $(this).val();
Bll.module["searchType"] = type;
switch (type) {
case "1":
case "1":
$(".search_type2").hide();
$("#matchPcUrl").removeAttr("required");
$("#matchAppAction").removeAttr("required");
$("#matchAppUrl").removeAttr("required");
break;
case "2":
break;
case "2":
$(".search_type2").show();
$("#matchPcUrl").attr("required", "required");
$("#matchAppAction").attr("required", "required");
... ...