index.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. // 首页
  2. var homeTab = {
  3. id: 'home', // 唯一标识
  4. name: '首页',
  5. url: 'main.html', // 页面地址
  6. isNeedLoad: false, // 标注:是否需要此刻加载
  7. hideClose: true // 隐藏关闭键
  8. }
  9. // sa_admin对象
  10. var sa_admin = new Vue({
  11. components: {
  12. "nav-logo": httpVueLoader('sa-frame/nav/nav-logo.vue'), // logo
  13. "nav-menu-bar": httpVueLoader('sa-frame/nav/nav-menu-bar.vue'), // 菜单栏
  14. "nav-tool-bar": httpVueLoader('sa-frame/nav/nav-tool-bar.vue'), // 工具栏
  15. "nav-tab-bar": httpVueLoader('sa-frame/nav/nav-tab-bar.vue'), // tab栏
  16. "nav-view-vessel": httpVueLoader('sa-frame/nav/nav-view-vessel.vue'), // 视图容器
  17. "com-right-menu": httpVueLoader('sa-frame/nav/com-right-menu.vue'), // 右键菜单
  18. "com-add-tab": httpVueLoader('sa-frame/nav/com-add-tab.vue'), // 双击添加 tab 的弹窗
  19. },
  20. el: '.app',
  21. data: {
  22. // ------------------------------- 配置 -------------------------------
  23. title: '', // 页面标题 -- Sa-Admin
  24. logo: '', // logo地址 -- sa-frame/admin-logo.png
  25. icon: '', // icon地址 -- sa-frame/admin-logo.png
  26. version: 'v1.40.0', // 当前版本号
  27. updateTime: '2021-9-26', // 更新日期
  28. githubUrl: 'https://github.com/click33/sa-admin', // github地址
  29. isRemeOpen: true, // 是否记住上一次最后打开的窗口
  30. printInfo: true, // 是否在控制台打印信息
  31. homeTab: homeTab, // 主页首屏 Tab
  32. menuList: [], // 全部菜单集合
  33. showList: [], // 显示的菜单集合(id集合)
  34. plusVersion: 'v1.26.0', //sa-plus版本
  35. plusUpdateTime: '2021-10-24', //sa-plus版本
  36. plusGithubUrl: 'https://github.com/click33/sa-plus', // github地址
  37. // ------------------------------- 状态 -------------------------------
  38. themeV: localStorage.getItem('themeV') || '1', // 当前 / 默认的主题
  39. isOpen: true, // 当前是否展开菜单 (整体框架)
  40. isOpenRight: true, // 当前是否展开 (右边) (将右边盒子折叠与菜单折叠分开,这样可以减少动画的卡顿现象)
  41. activeMenuId: '0', // 正在高亮的菜单id
  42. isDrag: false, // 当前是否正在拖拽 tab
  43. dragTab: null, // 当前正在拖拽的 tab
  44. tabList: [homeTab], // 当前 Tab 集合
  45. viewList: [homeTab], // 当前 View 集合
  46. nativeTab: homeTab, // 当前正显示的Tab
  47. user: null ,// user信息
  48. dropList: [], // 头像处下拉列表菜单
  49. },
  50. watch: {
  51. // 监听title改变时, 页面title也跟着切换
  52. title: function(newValue, oldValue) {
  53. document.querySelector('title').innerHTML = newValue;
  54. },
  55. // 监听 icon_url 网页图标
  56. icon: function(newValue, oldValue) {
  57. var icon = newValue;
  58. var iconTarget = document.querySelector('.admin-icon');
  59. if(iconTarget) {
  60. iconTarget.setAttribute('href', icon);
  61. }
  62. }
  63. },
  64. methods: {
  65. // ------------------- 初始化相关 --------------------
  66. // 初始化模板, 此方法必须且只能调用一次
  67. init: function(option) {
  68. // 打开上次最后的一个窗口
  69. this.showTabByHash();
  70. if(this.nativeTab.id == this.homeTab.id) {
  71. this.showHome();
  72. }
  73. // 打印版本等信息
  74. if(this.printInfo) {
  75. this.printVesion();
  76. }
  77. // 手动触发一下窗口变动监听
  78. window.onresize();
  79. },
  80. // 初始化菜单:
  81. // showList = 显示菜单id数组 —— (注意是id的数组),你填哪些id哪些菜单才会显示 ,为空时代表显示所有
  82. initMenu: function(showList) {
  83. this.setMenuList(window.menuList, showList);
  84. },
  85. // 写入菜单:
  86. // menuList = 全部菜单 —— 可以是已经渲染好的 tree 数组,也可以是一个尚未渲染的一维数组(你只要指定好 parent_id,Sa-Admin内部会自动渲染)
  87. // showList = 显示菜单id数组 —— (注意是id的数组),你填哪些id哪些菜单才会显示 ,为空时代表显示所有
  88. setMenuList: function(menuList, showList) {
  89. // 设置 全部菜单
  90. this.menuList = this.arrayToTree(menuList);
  91. // 设置 显示的菜单id
  92. showList = showList || this.getAllId(this.menuList);
  93. for (var i = 0; i < showList.length; i++) {
  94. showList[i] = showList[i] + '';
  95. }
  96. this.showList = showList;
  97. },
  98. // ------------------- Menu 相关操作 --------------------
  99. // 根据 id 查找 Menu
  100. getMenuById: function(id) {
  101. return this.findMenuById(this.menuList, id);
  102. },
  103. // 显示某个菜单,根据id
  104. showMenuById: function(id) {
  105. var menu = this.getMenuById(id);
  106. if(menu) {
  107. this.showTab(menu);
  108. }
  109. },
  110. // 显示homeTab
  111. showHome: function() {
  112. this.showTab(this.homeTab);
  113. },
  114. // 返回当前所有菜单的 一维数组 形式 (将树形菜单转化为一维数组并返回) 方便遍历
  115. getYwList: function() {
  116. var arr = [];
  117. function _dg(menuList) {
  118. menuList = menuList || [];
  119. for (var i = 0; i < menuList.length; i++) {
  120. var menu = menuList[i];
  121. arr.push(menu);
  122. // 如果有子菜单
  123. if(menu.childList) {
  124. _dg(menu.childList);
  125. }
  126. }
  127. }
  128. _dg(this.menuList);
  129. return arr;
  130. },
  131. // 获取菜单所有id
  132. getAllId: function() {
  133. var arr = [];
  134. this.getYwList().forEach(function(item) {
  135. arr.push(item.id);
  136. });
  137. return arr;
  138. },
  139. // ------------------- Tab 相关操作 --------------------
  140. // 刷新Tab
  141. f5Tab: function(tab) {
  142. var cs = '#iframe-' + tab.id;
  143. var iframe = document.querySelector(cs);
  144. if(iframe) {
  145. iframe.setAttribute('src', this.getTabUrl(tab));
  146. } else {
  147. tab.isNeedLoad = false;
  148. this.$nextTick(function() {
  149. tab.isNeedLoad = true;
  150. })
  151. }
  152. },
  153. // 获取 Tab,根据 id
  154. getTabById: function(id) {
  155. for (var i = 0; i < this.tabList.length; i++) {
  156. if(this.tabList[i].id + '' == id + '') {
  157. return this.tabList[i];
  158. }
  159. }
  160. return null;
  161. },
  162. // 添加一个Tab {id,name,url}
  163. addTab: function(tab) {
  164. // 如果没有提供id,则随机一个
  165. if(!tab.id) {
  166. tab.id = new Date().getTime() + '' + this.randomNum();
  167. }
  168. // 如果没有指定类型
  169. if(tab.view === undefined) {
  170. if(this.getUrlExt(tab.url).toLowerCase() == 'vue') {
  171. tab.view = httpVueLoader(tab.url);
  172. }
  173. }
  174. if(tab.isNeedLoad === undefined) {
  175. // tab.isNeedLoad = true;
  176. Vue.set(tab, 'isNeedLoad', true);
  177. }
  178. // console.log('添加之前:' + JSON.stringify(tab));
  179. this.tabList.push(tab);
  180. this.viewList.push(tab);
  181. // tab 超过 20 个,提示过多,如果用户无视继续添加则超过 30 个后不再提示
  182. if(this.tabList.length > 20 && this.tabList.length < 30) {
  183. sa_admin.$message({message: '选项卡过多会造成窗口卡顿,建议您关闭不使用的窗口', type: 'warning'});
  184. }
  185. },
  186. // 显示某个页面 (如果不存在, 则先添加)
  187. showTab: function(tab) {
  188. // 标注:需要此刻加载
  189. // tab.isNeedLoad = false;
  190. Vue.set(tab, 'isNeedLoad', true);
  191. // 如果是外部链接
  192. if(tab.is_blank) {
  193. return open(tab.url);
  194. }
  195. // 如果是当前正在显示的tab , 则直接返回,无需继续操作
  196. if(tab == this.nativeTab) {
  197. return;
  198. }
  199. // 如果是click函数
  200. if(tab.click) {
  201. if(tab.click() !== true) {
  202. return;
  203. }
  204. }
  205. // 如果这个 tab 还没有添加到 tabList 上
  206. if(this.getTabById(tab.id) == null){
  207. this.addTab(tab);
  208. }
  209. // 然后开始显示这个 tab
  210. this.nativeTab = tab;
  211. // this.nativeTab.is_load = true; // 标注:已经加载过了
  212. this.activeMenuId = tab.id + ''; // 左边自动关联, 如果左边没有,则无效果
  213. // 刷新一下url中的锚链
  214. this.$nextTick(function() {
  215. this.f5HashByNativeTab();
  216. })
  217. // 调整一下滚动条
  218. this.$nextTick(function() {
  219. try{
  220. this.$refs['nav-tab-bar'].scrollToAuto();
  221. }catch(e){}
  222. })
  223. },
  224. // 显示一个选项卡, 根据 id , 不存在则不显示
  225. showTabById: function(id) {
  226. var tab = this.getTabById(id);
  227. if(tab) {
  228. this.showTab(tab);
  229. }
  230. },
  231. // 关闭 tab (带动画)
  232. closeTab: function(tab, callFn) {
  233. // homeTab不能关闭
  234. if(tab == this.homeTab || tab.hideClose){
  235. return;
  236. }
  237. // 执行关闭动画
  238. var div = document.querySelector('#tab-' + tab.id);
  239. div.style.width = div.offsetWidth + 'px';
  240. setTimeout(function() {
  241. div.style.width = '0px';
  242. }, 0);
  243. // 等待动画结束
  244. setTimeout(function() {
  245. // 如果 tab 为当前正在显示的 tab, 则切换为前一个 tab
  246. if(tab == this.nativeTab) {
  247. var index = this.tabList.indexOf(tab);
  248. var preTab = this.tabList[index - 1];
  249. if(preTab) {
  250. this.showTab(preTab);
  251. } else {
  252. var nextTab = this.tabList[index + 1];
  253. this.showTab(nextTab);
  254. }
  255. }
  256. // 从 tabList 中移除这个 tab
  257. sa_admin_code_util.arrayDelete(this.tabList, tab);
  258. sa_admin_code_util.arrayDelete(this.viewList, tab);
  259. // 如果有回调
  260. if(callFn) {
  261. this.$nextTick(function() {
  262. callFn();
  263. })
  264. }
  265. }.bind(this), 150);
  266. },
  267. // 关闭 tab, 根据 id
  268. closeTabById: function(id, callFn) {
  269. var tab = this.getTabById(id);
  270. if(tab) {
  271. this.closeTab(tab, callFn);
  272. }
  273. },
  274. // 悬浮打开 tab
  275. xfTab: function(tab) {
  276. console.log('悬浮');
  277. // layer打开
  278. var index = layer.open({
  279. type: 2,
  280. title: tab.name,
  281. moveOut: true, // 是否可拖动到外面
  282. maxmin: true, // 显示最大化按钮
  283. shadeClose: false,
  284. shade: 0,
  285. area: ['80%', '80%'],
  286. zIndex: layer.zIndex,
  287. content: this.getTabUrl(tab),
  288. // 解决拉伸或者最大化的时候,iframe高度不能自适应的问题
  289. resizing: function (layero) {
  290. sa_admin_code_util.solveLayerBug(index);
  291. },
  292. // 操作这个layer的时候置顶它
  293. success: function(layero){
  294. layer.setTop(layero);
  295. }
  296. });
  297. // 解决拉伸或者最大化的时候,iframe高度不能自适应的问题
  298. document.querySelector('#layui-layer' + index + ' .layui-layer-max').onclick = function() {
  299. setTimeout(function() {
  300. sa_admin_code_util.solveLayerBug(index);
  301. }, 200)
  302. }
  303. },
  304. // 新窗口打开 tab
  305. newWinTab: function(tab) {
  306. open(this.getTabUrl(tab));
  307. // this.closeTab(tab);
  308. },
  309. // 获取指定 tab 所代表 iframe 的 url 地址 (同域下可获取最新地址, 跨域时只能获取初始化时的地址)
  310. getTabUrl: function(tab) {
  311. var cs = '#iframe-' + tab.id;
  312. var iframe = document.querySelector(cs);
  313. if(!iframe) {
  314. return tab.url;
  315. }
  316. try{
  317. return iframe.contentWindow.location.href;
  318. }catch(e){
  319. return iframe.getAttribute('src');
  320. }
  321. },
  322. // ------------------- 框架整体相关操作 --------------------
  323. // 展开菜单
  324. startOpen: function() {
  325. this.isOpen = true;
  326. setTimeout(function() {
  327. this.isOpenRight = true;
  328. }.bind(this), 200);
  329. },
  330. // 折叠菜单
  331. endOpen: function() {
  332. this.isOpen = false;
  333. this.isOpenRight = false;
  334. },
  335. // ------------------- 锚链接路由相关 --------------------
  336. // 根据锚链接, 打开窗口
  337. showTabByHash: function() {
  338. // 如果非记住模式
  339. if(this.isRemeOpen == false) {
  340. return;
  341. }
  342. // 获取锚链接中的id
  343. var hash = location.hash;
  344. var id = hash.replace('#', '');
  345. if(id == '') {
  346. return;
  347. }
  348. // 如果已经存在与tabbar中
  349. var tab = this.getTabById(id);
  350. if(tab) {
  351. return this.showTab(tab);
  352. }
  353. // 否则从菜单中打开
  354. this.showMenuById(id);
  355. // 此时, 仍有一种tab打不开, 那就是自定义tab然后还已经关闭的,
  356. // 预设 解决方案: 在localStor里存储所有打开过的tab,
  357. // 以后如果有强需求这个功能时, 再实现
  358. },
  359. // 根据当前tab刷新一下锚链接
  360. f5HashByNativeTab: function() {
  361. // 如果非记住模式
  362. if(this.isRemeOpen == false) {
  363. return;
  364. }
  365. location.hash = this.nativeTab.id;
  366. },
  367. // ------------------- 工具方法 --------------------
  368. // 弹窗提示
  369. msg: function(msg) {
  370. layer.msg(msg)
  371. },
  372. // 返回随机数
  373. randomNum: function(min, max) {
  374. min = min || 1;
  375. max = max || 1000000000;
  376. return parseInt(Math.random() * (max - min + 1) + min, 10);
  377. },
  378. // 从 menuList 里查找指定 id 的 menu,支持多级递归
  379. findMenuById: function(menuList, id) {
  380. for (var i = 0; i < menuList.length; i++) {
  381. var menu = menuList[i];
  382. if(menu.id + '' == id + '') {
  383. return menu;
  384. }
  385. // 如果是二级或多级
  386. if(menu.childList) {
  387. var menu2 = this.findMenuById(menu.childList, id);
  388. if(menu2 != null) {
  389. return menu2;
  390. }
  391. }
  392. }
  393. return null;
  394. },
  395. // 获取文件后缀
  396. getUrlExt: function(url) {
  397. if(!url) {
  398. return "";
  399. }
  400. if(url.indexOf('?') > -1) {
  401. url = url.split('?')[0];
  402. }
  403. if(url.indexOf('#') > -1) {
  404. url = url.split('#')[0];
  405. }
  406. var index= url.lastIndexOf(".");
  407. if(index == -1) {
  408. return "";
  409. }
  410. var ext = url.substr(index + 1);
  411. return ext;
  412. },
  413. // 将一维平面数组转换为 Tree 菜单 (根据其指定的 parent_id 添加到其父菜单的childList)
  414. arrayToTree: function(menuList) {
  415. for (var i = 0; i < menuList.length; i++) {
  416. var menu = menuList[i];
  417. // 如果这个 Menu 指定了 parent_id 属性,则将其转移到其指定的父 Menu 的 childList 属性上
  418. if(menu.parent_id) {
  419. var parent_menu = this.findMenuById(menuList, menu.parent_id);
  420. if(parent_menu) {
  421. menu.parent_menu = parent_menu;
  422. parent_menu.childList = parent_menu.childList || [];
  423. parent_menu.childList.push(menu);
  424. menuList.splice(i, 1); // 从一维中删除
  425. i--;
  426. }
  427. }
  428. }
  429. return menuList;
  430. },
  431. // ------------------- 其它 --------------------
  432. // 获取指定 tab 栏的 window 对象, 用于多窗口通信
  433. getTabWindow: function(tabId) {
  434. var iframe = document.querySelector('#iframe-' + tabId);
  435. if(iframe != null) {
  436. return iframe.contentWindow;
  437. }
  438. return null;
  439. },
  440. // 打印版本
  441. // printVesion: function() {
  442. // console.log('欢迎使用Sa-Admin,当前版本:' + this.version + ",更新于:" + this.updateTime + ",GitHub地址:" + this.githubUrl);
  443. // console.log('如在使用中发现任何bug或者疑问,请加入QQ群交流:782974737,点击加入:' + 'https://jq.qq.com/?_wv=1027&k=5DHN5Ib');
  444. // },
  445. printVesion: function() {
  446. var str = ('欢迎使用sa-plus,当前版本:' + this.plusVersion + ",更新于:" + this.plusUpdateTime + ",GitHub地址:" + this.plusGithubUrl);
  447. // console.log('%c%s', 'color: green; font-size: 12px; font-weight: 400; margin-top: 4px; margin-bottom: 4px;', str);
  448. var str2 = ('如在使用中发现任何bug或者疑问,请加入QQ群交流:782974737,点击加入:' + 'https://jq.qq.com/?_wv=1027&k=5DHN5Ib');
  449. console.log('%c%s', 'color: green; font-size: 12px; margin-top: 2px; margin-bottom: 2px;', str + ' \n' + str2);
  450. },
  451. },
  452. created:function(){
  453. }
  454. });
  455. var saAdmin = sa_admin;
  456. Vue.prototype.sa_admin = sa_admin;
  457. Vue.prototype.saAdmin = saAdmin;
  458. // 监听窗口大小变动
  459. window.onresize = function() {
  460. if(document.body.clientWidth < 800) {
  461. sa_admin.endOpen();
  462. } else {
  463. sa_admin.startOpen();
  464. }
  465. }
  466. // 监听锚链接变动
  467. window.onhashchange = function() {
  468. sa_admin.showTabByHash();
  469. }