12345678910111213141516171819202122 |
-
- @{
- Layout = null;
- }
- @{
- int screenWidth = 1280;
- }
- <div id="PumpsPage_Head" style="position:relative; width:(@screenWidth)px; height: 65px;">
- <img id="PumpsPage_Head_Status_normal" src="~/images/onlineMonitor/header/headblueLeft.png" />
- <img id="PumpsPage_Head_Status_warning" src="~/images/onlineMonitor/header/headYellowLeft.png" style="position:absolute; left: 0px; top: 0px;visibility: hidden;" />
- <img id="PumpsPage_Head_Status_alarm" src="~/images/onlineMonitor/header/headRedLeft.png" style="position:absolute; left: 0px; top: 0px;visibility: hidden;" />
- <span id="head_left_text" style="position: absolute; left: 0px; width: 1096px; line-height: 65px; text-align: center;color: #f0ffff">
- 在线监测
- </span>
- <span id="PumpsPage_Head_Date" style="position: absolute; left: @(screenWidth - 199)px; height: 44px; line-height: 44px;color: white">
- <img id="PumpsPage_Head_Date_img" src="~/images/onlineMonitor/header/headRight.png"/>
- </span>
- <span id="head_right_text" style="position: absolute; width: 99px;left:@(screenWidth - 199)px; height: 44px; line-height: 44px; color: white;text-align: center">
- @DateTime.Now.ToShortDateString()
- </span>
- </div>
|