Ver Código Fonte

文章信息内容裂变样式

luyanan 7 anos atrás
pai
commit
a59cc6f3cc
2 arquivos alterados com 9 adições e 4 exclusões
  1. 5 0
      app/css/app.css
  2. 4 4
      app/js/index.js

+ 5 - 0
app/css/app.css

@ -1104,6 +1104,11 @@ footer.chatFooter .mui-icon-paperplane {font-size: 16px;word-break: keep-all;lin
1104 1104
.showDetail .showMain img{max-width: 100%;/*margin-left:-32px;*/}
1105 1105
.showDetail .showMain p{margin-bottom:16px;font-size:15px;color:#333;text-align:justify}
1106 1106
.showDetail .showMain *{ -webkit-user-select:text; word-break: break-word;}
1107
#articleContent ul,#articleContent ol{padding-left:20px;}
1108
#articleContent ul{list-style-type:disc;}
1109
#articleContent ol{list-style-type:decimal;}
1110
#articleContent ul>li,#articleContent ol>li{padding-left:0px;}
1111
#articleContent ul>li>p,#articleContent ol>li>p{margin: 0;}
1107 1112
ul.tagList{padding:0;margin:18px 0 8px;overflow: hidden;}
1108 1113
ul.tagList>li{list-style:none;float: left;margin-right:10px;margin-bottom:10px;padding:4px 12px;color: #666;background:#EFEFEF;}
1109 1114
ul.tagList>li .h2Font{color: #666; -webkit-user-select:text;}

+ 4 - 4
app/js/index.js

@ -623,7 +623,7 @@ document.addEventListener('plusready',function(){
623 623
function checkArguments(){
624 624
    console.log("plus.runtime.launcher: "+plus.runtime.launcher);
625 625
    var args= plus.runtime.arguments;
626
    alert(args)
626
    //alert(args)
627 627
    if(args){ //处理args参数,如打开新页面等  ekexiu://
628 628
    	var argValue,arg_arr,sp_arr,url_sub;
629 629
        var url=args.substr(9);
@ -637,15 +637,15 @@ function checkArguments(){
637 637
		  arg_arr=sp_arr[0].split("=");//对第一个数组中的值进行分割
638 638
  		  argValue=arg_arr[1];//得到参数的值
639 639
  		  
640
  		  alert("aimPage="+aimPage+",aimPageId="+aimPageId+",argValue="+argValue)
641
  		  
640
  		 // alert("aimPage="+aimPage+",aimPageId="+aimPageId+",argValue="+argValue)
642 641
  		  var webArg={
643 642
  		  	articleId:argValue,
644 643
  		  	proid:argValue,
645 644
  		  	resourceId:argValue,
646 645
  		  	paperId:argValue,
647 646
  		  	patentId:argValue,
648
  		  	cmpId:argValue
647
  		  	cmpId:argValue,
648
  		  	demanid:argValue
649 649
  		  };
650 650
  		  var aimWeb=plus.webview.create(aimPage, aimPageId, {}, webArg);
651 651