Нет описания

index.js 10KB

    /** * Created by TT on 2018/7/17. */ ; spa_define(function () { return $.use(["spa", "pagedatagrid", "util"], function (spa, pdgf, util) { return { main: function () { var root = spa.findInMain(".sys_product_index"); var pdg = pdgf.build(root); pdg.code.shell("showDay", function (env) { if (env.cd && env.cd[this.k]) { var day = env.cd[this.k]; return day.substring(0, 4) + "年" + day.substring(4, 6) + "月" + day.substring(6, 8) + "日 " + day.substring(8, 10) + ":" + day.substring(10, 12); } return ""; }); pdg.code.listen($.dict.doTransfer); pdg.code.listen(function(){ root.find(".hand-contacts").each(function () { var $e = $(this); var productId = $e.attr("productId"); util.get("../ajax/product/linkman", {id: productId}, function (data) { var proName = []; data.forEach(function (item) { util.get("../ajax/sys/professor/getName/" + item.professorId, null, function (data) { // proName = proName + data; proName.push(data); $e.text(proName); }) }); }); $e.removeClass("hand-contacts"); }); root.find(".hand-collectionid").each(function() { var $e = $(this); var collectionid = $e.attr("collectionid"); util.get("/ajax/content/countProfessor",{id:collectionid,type:11},function(data){ $e.text(data); },{}); $e.removeClass("hand-collectionid"); }); root.find(".table-opt a.name").on("click",function () { var productId = $(this).parent().attr("productId"); window.open('http://www.ekexiu.com/productShow.html?productId=' + productId); }) }); root.find(".opt-query").on("click", function () { pdg.load(); console.log("sdf"); }); pdg.load(); console.log(pdg); root.find(".dt-tpl").on("click", "th.opt-check>i.icon-st-check", function () { var $this = $(this); $this.toggleClass("checked"); if ($this.hasClass("checked")) { root.find(".dt-tpl td.opt-check>i.icon-st-check").addClass("checked"); } else { root.find(".dt-tpl td.opt-check>i.icon-st-check").removeClass("checked"); } }); root.find(".dt-tpl").on("click", "td.opt-check>i.icon-st-check", function () { var $this = $(this); $this.toggleClass("checked"); }); root.find(".opt-del").on("click", function() { var $product = root.find("td.opt-check>i.checked"); if ($product.length) { if($product.length>1){ util.alert("只能选择一个产品"); }else { util.boxMsg({ title: "确认删除", content: "您是否要删除选中的产品?", btns: [{ caption: "删除", hand: function () { util.post("../ajax/product/delete", {id: $product.attr("productId")}, function () { pdg.reload() }, {}); } }, {caption: "取消"} ] }); } } else { util.alert("请选择一个产品"); } }); root.find(".opt-sort-num").on("click", function() { var $product = root.find("td.opt-check>i.checked"); if($product.length) { if($product.length > 1) { util.alert("只能选择一个产品"); } else { $.util.get("../ajax/product/id/"+$product.attr("productId"),null,function(rd){ if(rd){ console.log(rd); spa.showModal("sys_product_sort", { data:rd, hand: function() { pdg.reload() } }) }else{ util.alertMsg("产品不存在", function(){pdg.reload();}); } },{}); } } else { util.alert("请选择一个产品"); } }); root.find(".opt-keywords").on("click", function() { var $product = root.find("td.opt-check>i.checked"); if($product.length) { if($product.length > 1) { util.alert("只能选择一个产品"); } else { $.util.get("../ajax/product/id/"+$product.attr("productId"),null,function(rd){ if(rd){ spa.showModal("sys_product_keywords", { data:rd, hand: function() { pdg.reload() } }) }else{ util.alertMsg("产品不存在", function(){pdg.reload();}); } },{}); } } else { util.alert("请选择一个产品"); } }); root.find(".opt-view").on("click", function () { var $product = root.find("td.opt-check>i.checked"); if ($product.length) { if ($product.length > 1) { util.alert("只能选择一个产品"); } else { window.open('http://www.ekexiu.com/productShow.html?productId=' + $product.attr("productId")); } } else { util.alert("请选择一个产品"); } }); root.find(".opt-edit").on("click", function() { var $product = root.find("td.opt-check>i.checked"); if($product.length) { if($product.length > 1) { util.alert("只能选择一个产品"); } else { // $.util.get("../ajax/article/id/"+$product.attr("articleId"),null,function(rd){ // if(rd){ // window.open('http://www.ekexiu.com:81/html/model/product/resourceIssue.html?productId=' + $product.attr("productId")); window.open('http://'+window.location.host+'/html/model/sys/product/productIssue.html?productId=' + $product.attr("productId")); // }else{ // util.alertMsg("文章不存在", function(){pdg.reload();}); // } // },{}); } } else { util.alert("请选择一个产品"); } }); // root.find(".opt-contacts").on("click", function() { // var $product = root.find("td.opt-check>i.checked"); // if ($product.length) { // var ret = {ids:[],orgIds:[],category:[]}; // $product.each(function() { // ret.ids.push($(this).attr("productId")); // ret.orgIds.push($(this).attr("owner")); // ret.category.push($(this).attr("category")); // }); // var nary=ret.orgIds.sort(); // var narc=ret.category; // for(var j=0;j<ret.category.length;j++){ // if (narc[j]!="2"){ // util.alert("列表中有非企业发布的产品"); // return; // } // } // if(ret.orgIds.length>1) { // for (var i = 0; i < ret.orgIds.length-1; i++) { // if (nary[i] != nary[i + 1]) { // util.alert("列表中的企业不一致"); // return; // } // } // } // spa.showModal("sys_product_contacts", { // data: {orgId:ret.orgIds[0],ids:ret.ids}, hand: function () { // pdg.reload() // } // }); // // } else { // util.alert("请选择一个产品"); // } // }); }, mainDestory: function () { } }; }); });