|
@@ -75,7 +75,7 @@
|
|
|
msg_html += '\
|
|
|
<div class="lr-list">\
|
|
|
<div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
|
|
|
- <h4>'+ _item.AddTime +'</h4>\
|
|
|
+ <h4 id="time">'+ _item.AddTime +'</h4>\
|
|
|
<p class="lr-ellipsis">'+ _item.LicensePlate +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.DeviceNumber +'</span></p>\
|
|
|
<a class="lr-nav-right" id="gonggaodetail">'+ _item.Type +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
|
|
|
</div>\
|
|
@@ -89,8 +89,9 @@
|
|
|
msg_html += '<h4>暂无消息</h4>';
|
|
|
}
|
|
|
$page.find('#gonggaoinfo').html(msg_html);
|
|
|
- $('#gonggaodetail').on('tap', function () {
|
|
|
- learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right',param:'{"addtime":_item.AddTime}' });
|
|
|
+ $('#gonggaodetail').on('tap', function () {
|
|
|
+ var addtime = $('#time').text();
|
|
|
+ learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right',param:'{"addtime":'+addtime+'}' });
|
|
|
});
|
|
|
});
|
|
|
msg_html += '\
|