config.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //定义瀑布流
  2. Maze.Page().name = '#page';
  3. /*
  4. $(function()
  5. {
  6. //定义模态框
  7. Maze.Modal().html = '<div class="show-box" id="device_box">' + $("#J_showBox").html() + '</div>';
  8. Maze.Modal().box = '#device_box';
  9. Maze.Modal().title = '#device_box .title';
  10. Maze.Modal().content = '#device_box .content';
  11. Maze.Modal().yes = '#device_box .box_sure';
  12. Maze.Modal().no = '#device_box .box_cancel';
  13. //设置参数层
  14. Maze.Modal().setting = '#device_box .bigBox';
  15. //确认框
  16. Maze.Modal().confirm = '#device_box .box';
  17. Maze.Modal().Init();
  18. });
  19. */
  20. //定义用户相关的一些信息
  21. Maze.User().config =
  22. {
  23. //初始化,绑定click
  24. 'click' :
  25. {
  26. 0 : '#J_loginBtn'
  27. ,1 : '#set'
  28. }
  29. //登录信息
  30. ,0 :
  31. {
  32. 'input' :
  33. {
  34. 'username' : '#J_username'
  35. ,'password' : '#J_password'
  36. ,'project' : 'front'
  37. }
  38. //错误提示的div
  39. ,'status' : '#J_state'
  40. //错误提示
  41. ,'error' : '您的用户名或密码错误'
  42. //登录要提交的url
  43. ,'url' : Maze.Host('passport') + 'login.action'
  44. }
  45. //提交智能设置
  46. ,1 :
  47. {
  48. 'start' : function(){return result()}
  49. ,'input' :
  50. {
  51. 'product' : '#product'
  52. ,'type' : '#type'
  53. ,'element' : '#element'
  54. ,'than' : '#than'
  55. ,'exp' : '#exp'
  56. ,'value' : '#value'
  57. ,'result' : '#result'
  58. ,'oper' : '#oper'
  59. ,'time' : '#time'
  60. ,'set_id' : '#set_id'
  61. }
  62. //错误提示
  63. ,'error' : '请输入正确的信息'
  64. //登录要提交的url
  65. ,'url' : Maze.Host('service') + 'set.updateAction'
  66. }
  67. };