common.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. //dom加载完成后执行的js
  2. ;$(function(){
  3. //全选的实现
  4. $(".check-all").click(function(){
  5. $(".ids").prop("checked", this.checked);
  6. });
  7. $(".ids").click(function(){
  8. var option = $(".ids");
  9. option.each(function(i){
  10. if(!this.checked){
  11. $(".check-all").prop("checked", false);
  12. return false;
  13. }else{
  14. $(".check-all").prop("checked", true);
  15. }
  16. });
  17. });
  18. //ajax get请求
  19. $('.ajax-get').click(function(){
  20. var confirm_msg = $(this).attr('confirm-msg') ? $(this).attr('confirm-msg') : '确认要执行该操作吗';
  21. var target;
  22. var that = this;
  23. if ( $(this).hasClass('confirm') ) {
  24. if(!confirm(confirm_msg)){
  25. return false;
  26. }
  27. }
  28. if ( (target = $(this).attr('href')) || (target = $(this).attr('url')) ) {
  29. $.get(target).success(function(data){
  30. if (data.status==1) {
  31. if (data.url) {
  32. updateAlert(data.info + ' 页面即将自动跳转~','alert-success');
  33. }else{
  34. updateAlert(data.info,'alert-success');
  35. }
  36. setTimeout(function(){
  37. if (data.url) {
  38. location.href=data.url;
  39. }else if( $(that).hasClass('no-refresh')){
  40. $('#top-alert').find('button').click();
  41. }else{
  42. location.reload();
  43. }
  44. },1500);
  45. }else{
  46. updateAlert(data.info);
  47. setTimeout(function(){
  48. if (data.url) {
  49. location.href=data.url;
  50. }else{
  51. $('#top-alert').find('button').click();
  52. }
  53. },1500);
  54. }
  55. });
  56. }
  57. return false;
  58. });
  59. //ajax post submit请求
  60. $('.ajax-post').click(function(){
  61. var confirm_msg = $(this).attr('confirm-msg') ? $(this).attr('confirm-msg') : '确认要执行该操作吗';
  62. var target,query,form;
  63. var target_form = $(this).attr('target-form');
  64. var that = this;
  65. var nead_confirm=false;
  66. if( ($(this).attr('type')=='submit') || (target = $(this).attr('href')) || (target = $(this).attr('url')) ){
  67. form = $('.'+target_form);
  68. if ($(this).attr('hide-data') === 'true'){//无数据时也可以使用的功能
  69. form = $('.hide-data');
  70. query = form.serialize();
  71. }else if (form.get(0)==undefined){
  72. console.log('c1');
  73. confirm(confirm_msg);
  74. return false;
  75. }else if ( form.get(0).nodeName=='FORM' ){
  76. if ( $(this).hasClass('confirm') ) {
  77. console.log('c2');
  78. if(!confirm(confirm_msg)){
  79. return false;
  80. }
  81. }
  82. if($(this).attr('url') !== undefined){
  83. target = $(this).attr('url');
  84. }else{
  85. target = form.get(0).action;
  86. }
  87. query = form.serialize();
  88. }else if( form.get(0).nodeName=='INPUT' || form.get(0).nodeName=='SELECT' || form.get(0).nodeName=='TEXTAREA') {
  89. form.each(function(k,v){
  90. if(v.type=='checkbox' && v.checked==true){
  91. nead_confirm = true;
  92. }
  93. })
  94. if ( nead_confirm && $(this).hasClass('confirm') ) {
  95. console.log('c2');
  96. if(!confirm(confirm_msg)){
  97. return false;
  98. }
  99. }
  100. query = form.serialize();
  101. }else{
  102. if ( $(this).hasClass('confirm') ) {
  103. console.log('c3');
  104. if(!confirm(confirm_msg)){
  105. return false;
  106. }
  107. }
  108. query = form.find('input,select,textarea').serialize();
  109. }
  110. $(that).addClass('disabled').attr('autocomplete','off').prop('disabled',true);
  111. $.post(target,query).success(function(data){
  112. if (data.status==1) {
  113. if (data.url) {
  114. updateAlert(data.info + ' 页面即将自动跳转~','alert-success');
  115. }else{
  116. updateAlert(data.info ,'alert-success');
  117. }
  118. setTimeout(function(){
  119. if (data.url) {
  120. location.href=data.url;
  121. }else if( $(that).hasClass('no-refresh')){
  122. $('#top-alert').find('button').click();
  123. $(that).removeClass('disabled').prop('disabled',false);
  124. }else{
  125. location.reload();
  126. }
  127. },1500);
  128. }else{
  129. updateAlert(data.info);
  130. setTimeout(function(){
  131. if (data.url) {
  132. location.href=data.url;
  133. }else{
  134. $('#top-alert').find('button').click();
  135. $(that).removeClass('disabled').prop('disabled',false);
  136. }
  137. },1500);
  138. }
  139. });
  140. }
  141. return false;
  142. });
  143. /**顶部警告栏*/
  144. var content = $('#main');
  145. var top_alert = $('#top-alert');
  146. top_alert.find('.close').on('click', function () {
  147. top_alert.removeClass('block').slideUp(200);
  148. // content.animate({paddingTop:'-=55'},200);
  149. });
  150. window.updateAlert = function (text,c) {
  151. text = text||'default';
  152. c = c||false;
  153. if ( text!='default' ) {
  154. top_alert.find('.alert-content').text(text);
  155. if (top_alert.hasClass('block')) {
  156. } else {
  157. top_alert.addClass('block').slideDown(200);
  158. // content.animate({paddingTop:'+=55'},200);
  159. }
  160. } else {
  161. if (top_alert.hasClass('block')) {
  162. top_alert.removeClass('block').slideUp(200);
  163. // content.animate({paddingTop:'-=55'},200);
  164. }
  165. }
  166. if ( c!=false ) {
  167. top_alert.removeClass('alert-error alert-warn alert-info alert-success').addClass(c);
  168. }
  169. };
  170. /*
  171. //按钮组
  172. (function(){
  173. //按钮组(鼠标悬浮显示)
  174. $(".btn-group").mouseenter(function(){
  175. var userMenu = $(this).children(".dropdown ");
  176. var icon = $(this).find(".btn i");
  177. icon.addClass("btn-arrowup").removeClass("btn-arrowdown");
  178. userMenu.show();
  179. clearTimeout(userMenu.data("timeout"));
  180. }).mouseleave(function(){
  181. var userMenu = $(this).children(".dropdown");
  182. var icon = $(this).find(".btn i");
  183. icon.removeClass("btn-arrowup").addClass("btn-arrowdown");
  184. userMenu.data("timeout") && clearTimeout(userMenu.data("timeout"));
  185. userMenu.data("timeout", setTimeout(function(){userMenu.hide()}, 100));
  186. });
  187. //按钮组(鼠标点击显示)
  188. // $(".btn-group-click .btn").click(function(){
  189. // var userMenu = $(this).next(".dropdown ");
  190. // var icon = $(this).find("i");
  191. // icon.toggleClass("btn-arrowup");
  192. // userMenu.toggleClass("block");
  193. // });
  194. $(".btn-group-click .btn").click(function(e){
  195. if ($(this).next(".dropdown").is(":hidden")) {
  196. $(this).next(".dropdown").show();
  197. $(this).find("i").addClass("btn-arrowup");
  198. e.stopPropagation();
  199. }else{
  200. $(this).find("i").removeClass("btn-arrowup");
  201. }
  202. })
  203. $(".dropdown").click(function(e) {
  204. e.stopPropagation();
  205. });
  206. $(document).click(function() {
  207. $(".dropdown").hide();
  208. $(".btn-group-click .btn").find("i").removeClass("btn-arrowup");
  209. });
  210. })();
  211. */
  212. // 独立域表单获取焦点样式
  213. $(".text").focus(function(){
  214. $(this).addClass("focus");
  215. }).blur(function(){
  216. $(this).removeClass('focus');
  217. });
  218. $("textarea").focus(function(){
  219. $(this).closest(".textarea").addClass("focus");
  220. }).blur(function(){
  221. $(this).closest(".textarea").removeClass("focus");
  222. });
  223. });
  224. /* 上传图片预览弹出层 */
  225. $(function(){
  226. $(window).resize(function(){
  227. var winW = $(window).width();
  228. var winH = $(window).height();
  229. $(".upload-img-box").click(function(){
  230. //如果没有图片则不显示
  231. if($(this).find('img').attr('src') === undefined){
  232. return false;
  233. }
  234. // 创建弹出框以及获取弹出图片
  235. var imgPopup = "<div id=\"uploadPop\" class=\"upload-img-popup\"></div>"
  236. var imgItem = $(this).find(".upload-pre-item").html();
  237. //如果弹出层存在,则不能再弹出
  238. var popupLen = $(".upload-img-popup").length;
  239. if( popupLen < 1 ) {
  240. $(imgPopup).appendTo("body");
  241. $(".upload-img-popup").html(
  242. imgItem + "<a class=\"close-pop\" href=\"javascript:;\" title=\"关闭\"></a>"
  243. );
  244. }
  245. // 弹出层定位
  246. var uploadImg = $("#uploadPop").find("img");
  247. var popW = uploadImg.width();
  248. var popH = uploadImg.height();
  249. var left = (winW -popW)/2;
  250. var top = (winH - popH)/2 + 50;
  251. $(".upload-img-popup").css({
  252. "max-width" : winW * 0.9,
  253. "left": left,
  254. "top": top
  255. });
  256. });
  257. // 关闭弹出层
  258. $("body").on("click", "#uploadPop .close-pop", function(){
  259. $(this).parent().remove();
  260. });
  261. }).resize();
  262. // 缩放图片
  263. function resizeImg(node,isSmall){
  264. if(!isSmall){
  265. $(node).height($(node).height()*1.2);
  266. } else {
  267. $(node).height($(node).height()*0.8);
  268. }
  269. }
  270. })
  271. //标签页切换(无下一步)
  272. function showTab() {
  273. $(".tab-nav li").click(function(){
  274. var self = $(this), target = self.data("tab");
  275. self.addClass("current").siblings(".current").removeClass("current");
  276. window.location.hash = "#" + target.substr(3);
  277. $(".tab-pane.in").removeClass("in");
  278. $("." + target).addClass("in");
  279. }).filter("[data-tab=tab" + window.location.hash.substr(1) + "]").click();
  280. }
  281. //标签页切换(有下一步)
  282. function nextTab() {
  283. $(".tab-nav li").click(function(){
  284. var self = $(this), target = self.data("tab");
  285. self.addClass("current").siblings(".current").removeClass("current");
  286. window.location.hash = "#" + target.substr(3);
  287. $(".tab-pane.in").removeClass("in");
  288. $("." + target).addClass("in");
  289. showBtn();
  290. }).filter("[data-tab=tab" + window.location.hash.substr(1) + "]").click();
  291. $("#submit-next").click(function(){
  292. $(".tab-nav li.current").next().click();
  293. showBtn();
  294. });
  295. }
  296. // 下一步按钮切换
  297. function showBtn() {
  298. var lastTabItem = $(".tab-nav li:last");
  299. if( lastTabItem.hasClass("current") ) {
  300. $("#submit").removeClass("hidden");
  301. $("#submit-next").addClass("hidden");
  302. } else {
  303. $("#submit").addClass("hidden");
  304. $("#submit-next").removeClass("hidden");
  305. }
  306. }
  307. //导航高亮
  308. function highlight_subnav(url){
  309. $('.side-sub-menu').find('a[href="'+url+'"]').closest('li').addClass('current');
  310. }