sdzAjax.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. var sdzAjax = {
  2. //获取分类
  3. getMaterialType:function(cb){
  4. $.ajax({
  5. url:'/admin/api/getMaterialType',
  6. type:'GET',
  7. dataType:'json',
  8. success:function(data){
  9. if(!data.success){
  10. alert(data.msg);
  11. return;
  12. }
  13. typeof cb == 'function' && cb(data)
  14. }
  15. });
  16. },
  17. //获取分类 数据
  18. getMaterial:function(id,cb){
  19. $.ajax({
  20. url:'/admin/api/getMaterial',
  21. type:'GET',
  22. data:{tid:id},
  23. dataType:'json',
  24. success:function(data){
  25. if(!data.success){
  26. alert(data.msg);
  27. return;
  28. }
  29. typeof cb == 'function' && cb(data)
  30. }
  31. });
  32. },
  33. getColor:function(cb){
  34. $.ajax({
  35. url:"/admin/js/color.json",
  36. type:'GET',
  37. dataType:'json',
  38. success: function (data){
  39. if(typeof cb == 'function'){
  40. cb(data)
  41. }
  42. }
  43. })
  44. },
  45. uploadImg:function(val,cb){
  46. $.ajax({
  47. url:"/admin/api/uploadImg",
  48. type:'POST',
  49. data:val,
  50. dataType:'json',
  51. cache: false,
  52. processData: false,
  53. contentType: false,
  54. success: function (data){
  55. if(!data.success){
  56. alert(data.msg);
  57. return;
  58. }
  59. if(typeof cb == 'function'){
  60. cb(data)
  61. }
  62. }
  63. });
  64. },
  65. saveDiy:function(val,cb){
  66. $.ajax({
  67. url:'/admin/api/saveDiy',
  68. type:'POST',
  69. data:val,
  70. dataType:'json',
  71. success:function(data){
  72. if(!data.success){
  73. alert(data.msg);
  74. return;
  75. }
  76. if(typeof cb == 'function'){
  77. cb(data)
  78. }
  79. }
  80. })
  81. },
  82. upDateDiy:function(val,cb){
  83. $.ajax({
  84. url:'/admin/api/updateDiy',
  85. type:'POST',
  86. data:val,
  87. dataType:'json',
  88. success:function(data){
  89. if(!data.success){
  90. alert(data.msg);
  91. return;
  92. }
  93. if(typeof cb == 'function'){
  94. cb(data)
  95. }
  96. }
  97. });
  98. },
  99. editDiy:function(cb){
  100. $.ajax({
  101. url:"/admin/api/editDiy",
  102. type:'GET',
  103. dataType:'json',
  104. success: function (data){
  105. if(!data.success){
  106. alert(data.msg);
  107. return;
  108. }
  109. if(typeof cb == 'function'){
  110. cb(data)
  111. }
  112. }
  113. })
  114. },
  115. getDiy:function(id,cb){
  116. $.ajax({
  117. url:'/admin/api/getDiyById',
  118. type:'GET',
  119. data:{id:id},
  120. dataType:'json',
  121. success:function(data){
  122. if(!data.success){
  123. alert(data.msg);
  124. return;
  125. }
  126. if(typeof cb == 'function'){
  127. cb(data)
  128. }
  129. }
  130. });
  131. },
  132. getBottle:function(cb){
  133. $.ajax({
  134. url:'/admin/api/getBottle',
  135. type:'GET',
  136. dataType:'json',
  137. success:function(data){
  138. if(!data.success){
  139. alert(data.msg);
  140. return;
  141. }
  142. if(typeof cb == 'function'){
  143. cb(data)
  144. }
  145. }
  146. });
  147. },
  148. getBottleById:function(id,cb){
  149. $.ajax({
  150. url:'/admin/api/getDiyById',
  151. type:'GET',
  152. data:{id:id},
  153. dataType:'json',
  154. success:function(data){
  155. if(!data.success){
  156. alert(data.msg);
  157. return;
  158. }
  159. if(typeof cb == 'function'){
  160. cb(data)
  161. }
  162. }
  163. });
  164. }
  165. }