|
|
@@ -79,12 +79,12 @@ |
|
|
|
top.learun.httpAsync("GET", top.$.rootUrl + "/LR_Desktop/DTList/GetSqlData", { |
|
|
|
Id: k.F_Id |
|
|
|
}, |
|
|
|
function(m) { |
|
|
|
function (m) { |
|
|
|
if(m) { |
|
|
|
var l = g.find('[data-value="' + m.Id + '"]'); |
|
|
|
$.each(m.value, |
|
|
|
function(p, q) { |
|
|
|
var o = ' <div class="lr-msg-line"> <a href="#" style="text-decoration: none;" >' + q.f_title + "</a> <label>" + q.f_time + "</label> </div>"; |
|
|
|
var o = ' <div class="lr-msg-line"> <a href="#" style="text-decoration: none;" >' + q.f_title + "</a> <label>" + (q.f_time != '' && q.f_time != undefined && q.f_time != null ? q.f_time.slice(0, 10) : '') + "</label> </div>"; |
|
|
|
var n = $(o); |
|
|
|
n.find("a")[0].item = q; |
|
|
|
l.append(n) |
|
|
|