|
@ -45,7 +45,7 @@ spa_define(function () {
|
45
|
45
|
if (articleId) {
|
46
|
46
|
util.get("../ajax/article/base", {id: articleId}, function (data) {
|
47
|
47
|
if (data) {
|
48
|
|
$e.parent().find(".articleTitle").text(data.articleTitle);
|
|
48
|
$e.parent().find(".articleTitle .name").text(data.articleTitle).attr('shareId',data.shareId).attr('createTime',data.createTime);
|
49
|
49
|
$e.parent().find(".professorName").text(data.professorName || data.organizationName);
|
50
|
50
|
$e.parent().find(".subject").text(data.subject);
|
51
|
51
|
$e.parent().find(".colNum").text(caption("banner", data.colNum));
|
|
@ -144,6 +144,14 @@ spa_define(function () {
|
144
|
144
|
}
|
145
|
145
|
})
|
146
|
146
|
});
|
|
147
|
root.on("click",".articleTitle a.name",function () {
|
|
148
|
console.log("xmtt");
|
|
149
|
var articleId = $(this).attr("articleId");
|
|
150
|
var time = $(this).attr("createTime").substring(0,8);
|
|
151
|
var shareId = $(this).attr("shareId");
|
|
152
|
// window.open('http://www.ekexiu.com/articalShow.html?articleId=' + articleId);
|
|
153
|
window.open('http://www.ekexiu.com/shtml/a/'+time+'/' + shareId+'.html');
|
|
154
|
});
|
147
|
155
|
var myChart = echarts.init(document.getElementById('total'));
|
148
|
156
|
var tableData = {data: []},
|
149
|
157
|
allData = [];
|