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
| <!DOCTYPE html>
| <html xmlns="http://www.w3.org/1999/xhtml">
| <head>
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
| <title>更新记录</title>
| <style type="text/css">
| div.div_Desc p {
| font-size: 12px;
| }
|
| div.div_Update p {
| font-size: 14px;
| font-weight: bold;
| }
|
| .war_p {
| color: red;
| }
| </style>
| </head>
| <body>
| <div class="div_Update">
| <p>WMS变更记录(版本:V20)</p>
| </div>
| <div class="div_Desc">
| <div class="div_Update">
| <p>更新时间:2018-09-20</p>
| </div>
| <p>1、</p>
| </div>
| </body>
| </html>
|
|