config.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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' : 'http://v2.xinnongbaohe.com/web/application/passport/?login.action'
  44. //,'url' : 'http://192.168.67.89/xinnongbaohe/web/application/passport/?login.action'
  45. }
  46. //提交智能设置
  47. ,1 :
  48. {
  49. 'start' : function(){return result()}
  50. ,'input' :
  51. {
  52. 'product' : '#product'
  53. ,'type' : '#type'
  54. ,'element' : '#element'
  55. ,'than' : '#than|'
  56. ,'exp' : '#exp|'
  57. ,'value' : '#value|'
  58. ,'result' : '#result|'
  59. ,'oper' : '#oper|'
  60. ,'time' : '#time|'
  61. ,'set_id' : '#set_id|'
  62. }
  63. //错误提示
  64. ,'error' : '请输入正确的信息'
  65. //登录要提交的url
  66. ,'url' : 'http://v2.xinnongbaohe.com/web/application/service/?set.updateAction'
  67. //,'url' : 'http://192.168.67.89/xinnongbaohe/web/application/service/?set.updateAction'
  68. }
  69. };