ag-admin部署使用心得


开源地址:https://github.com/wxiaoqi/Spring-Cloud-AG-Admin(后端)https://gitee.com/geek_qi/AG-Admin-v2.0(后端)

安装redis 、rabbitmq环境,按步骤启动。

启动AuthBootStrap的时候,我遇到点难题,我是从新换了maven库,编译了一下,就启动了

前端需要配置node环境,在前端项目路径下使用命令npm install  不成功多运行几次   然后npm run dev项目就启动了


				<script>
					(function(){
						function setArticleH(btnReadmore,posi){
							var winH = $(window).height();
							var articleBox = $("div.article_content");
							var artH = articleBox.height();
							if(artH > winH*posi){
								articleBox.css({
									'height':winH*posi+'px',
									'overflow':'hidden'
								})
								btnReadmore.click(function(){
									articleBox.removeAttr("style");
									$(this).parent().remove();
								})
							}else{
								btnReadmore.parent().remove();
							}
						}
						var btnReadmore = $("#btn-readmore");
						if(btnReadmore.length>0){
							if(currentUserName){
								setArticleH(btnReadmore,3);
							}else{
								setArticleH(btnReadmore,1.2);
							}
						}
					})()
				</script>
				</article>
posted @ 2018-11-06 16:50  星朝  阅读(542)  评论(0编辑  收藏  举报