123456789101112131415161718192021222324252627282930 |
- ;
- spa_define(function () {
- return $.use(["spa", "pagedatagrid", "util"], function (spa, pdgf, util) {
- return {
- main: function () {
- var root = spa.findInMain(".sys_customer_allindex");
- 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);
- }
- return "";
- });
- pdg.code.listen($.dict.doTransfer);
- root.find(".opt-query").on("click", function () {
- pdg.load();
- });
- pdg.load();
- var event = function () {
- root.find(".table-opt a.name").on("click", function () {
- var professorId = $(this).parent().attr("professorId");
- window.open('http://www.ekexiu.com/information-brow.html?professorId=' + professorId);
- });
- };
- pdg.code.listen(event);
- }
- };
- });
- });
|