123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>mainBody</title>
- <style type="text/css">
- .fontContent{
- font-size:100%;
- color: white;
- text-shadow: 0 0 0;
- line-height:20px;
- padding:10px;
- }
- .whileWidth{
- height:1px;
- width:100%;
- background-color:white;
- }
- .content{
- /* Webkit: Safari 4-5, Chrome 1-9 */
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#52ADE7), to(#2CD3F3));
- /* Webkit: Safari 5.1+, Chrome 10+ */
- background: -webkit-linear-gradient(top, #52ADE7, #2CD3F3);
- /* Firefox 3.6+ */
- background: -moz-linear-gradient(top, #52ADE7, #2CD3F3);
- /* Opera 11.10+ */
- background: -o-linear-gradient(top, #52ADE7, #2CD3F3);
- /* IE 10 */
- background: -ms-linear-gradient(top, #52ADE7, #2CD3F3);
- /* IE < 10 */
- /* 注意:这一行必须写在最后 */
- FILTER: progid:DXImageTransform.Microsoft.Gradient(startColorStr=#52ADE7, endColorStr=#2CD3F3);
- }
- </style>
- </head>
- <body>
- <center>
- <iframe name="weather_inc" src="http://tianqi.xixik.com/cframe/2" width="170" height="70" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox=""></iframe>
- </center>
- <div class="fontContent">
- <div class="whileWidth"></div>
- <br>
- 欢迎您:<font size="5" face="verdana">$!yhxm</font>
- <br><br>
- 上次登录时间:$!dateTool.format('yyyy-MM-dd HH:mm:ss', $!xtLsjl.fwsj)
- <br><br>
- 上次登录方式:$!xtLsjl.sblx
- <br><br>
- 上次登录地点:$!xtLsjl.dldd
- <br><br>
- #if("$!xxtz_kz_xxtz" == "true")
- 消息通知:
- #if("$!xxFlag" != "")
- #set($count = 1)
- #foreach($!obj in $!xxXxtsList)
- <br>
- <a href="#" onclick="javascript:menuLiClick('xx','hide')" class="fontContent"> $!count、$!obj.bt</a>
- #set($count = $count + 1)
- #end
- #else
- <br><br>
- <div style="height:50px"> 暂无未读消息</div>
- #end
- #else
- <div style="height:70px"> </div>
- #end
- </div>
- <div style="height:50px"></div>
- </body>
- </html>
|