liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html>
 
    <head>
        <meta charset="UTF-8">
        <title></title>
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <link href="css/mui.min.css" rel="stylesheet" />
        <link rel="stylesheet" type="text/css" href="css/custom.css"/>
        <link rel="stylesheet" href="node_modules/weui/dist/style/weui.css"/>
        <style>
            .mui-bar{
                background-color: #0d0d0d;
            }
            .mui-title{
                color:#ffffff;
            }
        </style>
    </head>
 
    <body class="custom-mui-content">
        <header class="mui-bar mui-bar-nav">
            <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left" style="color:#ffffff"></a>
            <h1 class="mui-title">消息通知详情</h1>
        </header>
                <div class="mui-content mui-scroll-wrapper custom-mui-content">
                    <div class="mui-scroll">
                    <div class="custom-title">
                        大学校长带教授到职校开家长会:职业教育不低等
                    </div>
                    <div class="custom-src">
                        <span class='article_src'>王五</span>
                        <span class='time'>2016-09-03</span>
                    </div>
                    <div class="custom-text-content">
                        9月3日,上海应用技术大学和上海信息技术学校联合举行中职-应用本科贯通专业“化学工程与工艺”、中高职贯通专业“应用化工技术”新生家长会。两所学校校长、教务负责人等向两个班71名家长详细介绍了专业贯通后的课程设置、培养方向等情况。今年,全市试点院校共计将召开100余场贯通培养新生家长会,覆盖了今年所有中高、中本贯通培养在招生的试点专业。
                    </div>
                    <div class="custom-commentBox">
                        <a class="custom-downloadBtn" href="http://view.inews.qq.com/newsDownLoad?refer=biznew&amp;src=kb_newsappshare&amp;ostype=iphone&amp;ct=309" data-count="0" >
                            <!--<div class="custom-downloader_text"><span>点击下载“<span class="filename"></span>”</span></div>-->
                            <div class="weui-btn weui-btn_primary"><span>点击下载<span class="filename"></span></span></div>
                        </a>
                    </div>
                </div>
            </div>
        </div>
        <script src="js/mui.min.js"></script>
        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
        <script type="text/javascript" src="js/common.js" ></script>
        <script type="text/javascript">
//        if(sessionCache.getSessionCashe("userToken") == null){
//            location.href="login.html";
//        }
            mui.init();
            mui('.mui-scroll-wrapper').scroll();
            var info = sessionCache.getSessionCashe("noticeInfo",sessionCache.json_value,true)
            $(".custom-title").text(info.title);
            $(".custom-src .article_src").text(info.peoples);
            var date = new Date();
            date.setTime(info.releasetime);
            $(".custom-src .time").text(date.getFullYear()+"-"+(date.getMonth()+1)+"-"+date.getDate() +" " + date.getHours()+":"+date.getMinutes()+":"+date.getSeconds());
            $(".custom-text-content").html(info.content);
            $(".filename").html(info.filename == null ? "附件" : info.filename);
            $(".custom-downloadBtn").attr("href",info.filepath);
        </script>
    </body>
 
</html>