jack 7 years ago
parent
commit
2694662812
1 changed files with 8 additions and 1 deletions
  1. 8 1
      app/js/articleShow.js

+ 8 - 1
app/js/articleShow.js

@ -524,7 +524,7 @@ mui.plusReady(function() {
524 524
	function busfil($data) {				
525 525
				var li = document.createElement("li");
526 526
					li.setAttribute("data-id", $data.id);
527
					var oimg = ($data[i].hasOrgLogo) ? baseUrl + "/images/org/" + $data.id + ".jpg" : "../images/default-icon.jpg";
527
					var oimg = ($data.hasOrgLogo) ? baseUrl + "/images/org/" + $data.id + ".jpg" : "../images/default-icon.jpg";
528 528
					var oAuth = ($data.authStatus == 3) ? 'authicon-com-ok' : '';
529 529
					var orgName = ($data.forShort) ? $data.forShort : $data.name;
530 530
					var orgType = ($data.orgType == '2') ? "上市企业" : "";
@ -549,6 +549,13 @@ mui.plusReady(function() {
549 549
			proid: id
550 550
		});
551 551
	})
552
	mui('#busList').on('tap', 'li', function() {
553
		var id = this.getAttribute("data-id");
554
		plus.nativeUI.showWaiting(); //显示原生等待框
555
		plus.webview.create("../html/cmpInforShow.html", 'cmpInforShow.html', {}, {
556
			cmpId: id
557
		});
558
	})
552 559
	/*留言*/
553 560
	mui('.commentBlock').on('tap', '.useHead,.h1Font', function() {
554 561
		var id = this.getAttribute("data-id");