20 lines
514 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 版 本 PIT-ADMS V7.0.3 敏捷开发框架
* Copyright (c) 2013-2018 Hexagon PPM
* 创建人:力软-前端开发组
* 日 期2018.04.28
* 描 述:桌面消息查看
*/
var id = request('id');
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
var item = top['dtlist' + id];
$('.title p').text(item.f_title);
$('.con').html($('<div></div>').html(item.f_content).text());
}
};
page.init();
}