1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ;
- spa_define(function(){
- return $.use(["spa","pagedatagrid","util"],function(spa,pdgf,util){
- return{
- main: function() {
- var root = spa.findInMain(".sys_customer_index");
- root.find((".org"), {orgname: {keyPressInterval: 1}});
- 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 bindDataEvent = function() {
- root.find(".table-opt i.icon-edit").on("click", function() {
- var $this = $(this);
- var professorId = $this.parent().attr("professorId");
- spa.showModal("sys_customer_new", {
- data:professorId,
- hand: function() {
- pdg.load();
- }
- });
- });
- 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(bindDataEvent);
- }
- };
- });
- });
|