ZhiYeJianKang_PeiXun/Song.Site/Manage/Sys/ProfitSharing.aspx
2025-02-20 15:41:53 +08:00

61 lines
2.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" MasterPageFile="~/Manage/ManagePage.Master" AutoEventWireup="true"
Codebehind="ProfitSharing.aspx.cs" Inherits="Song.Site.Manage.Sys.ProfitSharing" Title="无标题页" %>
<%@ Register Src="../Utility/toolsBar.ascx" TagName="toolsBar" TagPrefix="uc1" %>
<%@ Register Assembly="WeiSha.WebControl" Namespace="WeiSha.WebControl" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphMain" runat="server">
<div id="header">
<uc1:toolsBar ID="ToolsBar1" runat="server" WinPath="ProfitSharing_Edit.aspx" AddButtonOpen="true"
WinWidth="600" WinHeight="400" GvName="GridView1" OnDelete="DeleteEvent" DelShowMsg="注:\n超管角色无法删除" />
</div>
<cc1:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" SelectBoxKeyName="SelectBox"
ShowSelectBox="True">
<EmptyDataTemplate>
还没有创建分润方案
</EmptyDataTemplate>
<Columns>
<asp:TemplateField HeaderText="序号">
<itemstyle cssclass="center" width="40" />
<itemtemplate>
<%# Container.DataItemIndex + 1 %>
</itemtemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="操作">
<itemtemplate>
<cc1:RowDelete id="btnDel" onclick="btnDel_Click" runat="server"></cc1:RowDelete>
<cc1:RowEdit id="btnEdit" runat="server" ></cc1:RowEdit>
</itemtemplate>
<itemstyle cssclass="center" width="44px" />
</asp:TemplateField>
<asp:TemplateField HeaderText="移动">
<itemstyle cssclass="center" />
<headerstyle width="100px" />
<itemtemplate>
<asp:LinkButton id="lbUp" onclick="lbUp_Click" runat="server" Enabled='<%# Container.DataItemIndex!=0 %>'>上移</asp:LinkButton>
<asp:LinkButton id="lbDown" onclick="lbDown_Click" runat="server" Enabled='<%# Container.DataItemIndex+1< ((Song.Entities.ProfitSharing[])GridView1.DataSource).Length %>'>下移</asp:LinkButton>
</itemtemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="分润方案">
<itemstyle cssclass="center" width="150px" />
<itemtemplate>
<%# Eval("Ps_Name")%>
</itemtemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="说明">
<itemstyle cssclass="center" />
<itemtemplate>
<%# Eval("Ps_Intro")%>
</itemtemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="使用">
<itemstyle cssclass="center" width="60px" />
<itemtemplate>
<cc1:StateButton id="sbShow" onclick="sbShow_Click" runat="server" TrueText="使用" FalseText="禁用" State='<%# Eval("Ps_IsUse","{0}")=="True"%>'></cc1:StateButton>
</itemtemplate>
</asp:TemplateField>
</Columns>
</cc1:GridView>
</asp:Content>