<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WorkScoreList.aspx.cs" Inherits="CY.WebForm.Pages.wage.WorkScoreList" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head id="Head1" runat="server">
|
<title>工作考评</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
<script type="text/javascript">
|
//明细
|
function onView(keyid) {
|
top.Dialog.open({ URL: "/Pages/work/WorkPlanDetail.aspx?keyid=" + keyid, Title: "工作明细", Width: 620, Height: 460 });
|
}
|
$(function () {
|
$(".NoPlan").remove();
|
});
|
</script>
|
<style type="text/css">
|
.NoPlan { display: none; }
|
</style>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<div class="box1" paneltitle="功能面板" roller="false">
|
<table class="TableNewStyle">
|
<tr>
|
<td class="ali03">
|
执行时间:
|
</td>
|
<td style="width: 215px">
|
<input id="txtRegTimeStart" type="text" class="date w90px" datefmt="yyyy-MM-dd" runat="server" />-<input id="txtRegTimeEnd" type="text" class="date w90px" datefmt="yyyy-MM-dd" runat="server" />
|
</td>
|
<td class="ali03">
|
类型:
|
</td>
|
<td>
|
<select keepdefaultstyle="true" name="selIsFinish" runat="server" id="selIsFinish">
|
<option value="">全部</option>
|
<option value="1">奖励</option>
|
<option value="2">罚款</option>
|
</select>
|
</td>
|
<td>
|
<asp:Button ID="btn_Submit" Text="查询" runat="server" OnClick="btn_Search_Click" />
|
</td>
|
</tr>
|
</table>
|
</div>
|
<div>
|
<asp:Repeater ID="RepClientList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle">
|
<tr>
|
<th width="30" style="text-align: center">
|
编号
|
</th>
|
<th width="130" style="text-align: center">
|
时间
|
</th>
|
<th style="text-align: center">
|
主题
|
</th>
|
<th style="text-align: center">
|
内容
|
</th>
|
<th style="text-align: center">
|
类型
|
</th>
|
<th style="text-align: center">
|
金额
|
</th>
|
<th style="text-align: center">
|
查看
|
</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td style="text-align: center">
|
<%#Container.ItemIndex + 1+ this.UCPager1.PageSize * (this.UCPager1.PageIndex - 1)%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("RecTime", "{0:yyyy-MM-dd}")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("RecTitle")%>
|
</td>
|
<td style="text-align: center">
|
<a title="<%#Eval("RecContent")%>">
|
<%#Eval("RecContent").ToString().Length>20?(Eval("RecContent").ToString().Substring(0,20)+"..."):Eval("RecContent").ToString()%></a>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("RecType").ToString() == "1" ? "奖励" : "罚款"%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("RecMoney", "{0:F2}")%>
|
</td>
|
<td class="Operate " style="text-align: center">
|
<span class="<%#Eval("PlanId").ToString()=="0"?"NoPlan":""%>" menu_member_case_id="case_PlanView" menu_member_case_name="工作查看" onclick="onView('<%#Eval("Keyid")%>')">工作查看</span>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
<div id="page">
|
<uc:UCPager ID="UCPager1" runat="server" />
|
</div>
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|