新火炬后端单体项目初始化代码
cuilei
18 小时以前 76c5ad320495758d4e76d852d96914f1b405ece7
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>通告详情</title>
    <style>
 
        body {
            margin: 0;
            padding: 20px 16px 12px;
            background-color: #fafafa;
        }
 
        .rich_media_title {
            font-size: 22px;
            line-height: 1.4;
            margin: 0 0 14px;
        }
 
        .meta_content {
            margin-bottom: 22px;
            line-height: 20px;
            font-size: 0;
            word-wrap: break-word;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
            hyphens: auto;
        }
 
        .rich_media_meta {
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px 10px 0;
            font-size: 15px;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }
 
        .rich_media_meta.priority {
            padding: 0 4px;
            font-size: 12px;
            line-height: 1.67;
            border: 1px solid #d9d9d9;
            border-radius: 4px;
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            width: auto;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            word-wrap: normal;
            max-width: 70%;
            font-style: normal;
            letter-spacing: normal;
            background: rgba(0, 0, 0, 0.05);
            color: rgba(0, 0, 0, 0.3);
            margin-right: 8px;
        }
 
        .rich_media_meta.H {
            color: #f5222d;
            background: #fff1f0;
            border-color: #ffcfbf;
        }
 
 
        .rich_media_meta.M {
            color: #fa8c16;
            background: #fff7e6;
            border-color: #ffe59a;
        }
 
        .rich_media_meta.text {
            color: rgba(0, 0, 0, 0.3);
        }
 
        img {
            max-width: 100%;
            height: auto;
        }
 
        /* 滚动条优化 start */
        ::-webkit-scrollbar{
            width:8px;
            height:8px;
        }
        ::-webkit-scrollbar-track{
            background: #f6f6f6;
            border-radius:2px;
        }
        ::-webkit-scrollbar-thumb{
            background: #cdcdcd;
            border-radius:2px;
        }
        ::-webkit-scrollbar-thumb:hover{
            background: #747474;
        }
        ::-webkit-scrollbar-corner {
            background: #f6f6f6;
        }
        /* 滚动条优化 end */
 
    </style>
</head>
<body>
<div>
    <h2 class="rich_media_title">${data.titile}</h2>
    <div class="meta_content">
        <#if data.priority??>
            <span class="rich_media_meta priority ${data.priority}">
                <#if data.priority == "H">
                    高
                <#elseif data.priority == "M">
                    中
                <#elseif data.priority == "L">
                    低
                <#else >
                    ${data.priority}
                </#if>
            </span>
        </#if>
        <#if data.sender??>
        <span class="rich_media_meta text">${data.sender}</span>
        </#if>
        <#if data.sendTime??>
        <span class="rich_media_meta text">${data.sendTime?string('yyyy年MM月dd日')}</span>
        </#if>
    </div>
</div>
<div>
    ${data.msgContent!''}
</div>
</body>
</html>