5ce9903a042b54b156ad91d443493b5fc7a7158c.svn-base 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**提出来作为公共方法需要传一下参数
  2. * 1、表名
  3. * 2、字段名
  4. * 3、上下移动标志
  5. * 4、挂载的机构或者队伍ID
  6. * **/
  7. //置顶/置底 组织机构联系人
  8. function moveDownMax(tableName,fillName,max,id,idFille,fd_id,grid){
  9. $.post($.pathname() +"/ws/orgInDeptService/OrgInDeptService/getMaxSortNo", {
  10. "tableName" : tableName,
  11. "fillName" : fillName,
  12. "max" : max,
  13. "id" : id,
  14. "idFille":idFille,
  15. "fd_id":fd_id
  16. }, function(result) {
  17. if (result.Msg.sucsess == true) {
  18. // 刷新表格数据
  19. grid.rend();
  20. //表格刷新成功后需要设置该行数据被选中
  21. /*setTimeout(function(){
  22. grid.select(rows[0].__index+1);
  23. },600); */
  24. } else {
  25. top.Dialog.alert("置顶失败!");
  26. }
  27. }, "json");
  28. }
  29. function getMoveSort(tableName,up_id,fd_id,up_sort,fd_sort,grid,newindex){
  30. $.post($.pathname() +"/ws/Team/TeamService/getMove", {
  31. "tableName" : tableName,
  32. "mv_id" : up_id,
  33. "fd_id" : fd_id,
  34. "mv_sort" : up_sort,
  35. "fd_sort" : fd_sort
  36. }, function(result) {
  37. if (result.Msg.sucsess == true) {
  38. top.Dialog.alert("移动成功",null,null,null,1);
  39. // 刷新表格数据
  40. grid.rend();
  41. //表格刷新成功后需要设置该行数据被选中
  42. setTimeout(function(){
  43. grid.select(newindex);
  44. },600);
  45. } else {
  46. top.Dialog.alert("移动失败!");
  47. }
  48. }, "json");
  49. }