1019-002-gaofei
This commit is contained in:
parent
b0dda3b8b2
commit
fbe44ac308
|
@ -350,7 +350,7 @@ padding-left: 2em;
|
||||||
<div class="item flex2">
|
<div class="item flex2">
|
||||||
<div class="bw-b-bottom">
|
<div class="bw-b-bottom">
|
||||||
<div class="bw-b-bottom-up flex flexV">
|
<div class="bw-b-bottom-up flex flexV">
|
||||||
<div class="tit-one tit-center" style="color:#fff">专业工作量表</div>
|
<div class="tit-one tit-center" runat="server" id="divMonth" style="color:#fff">专业工作量表</div>
|
||||||
<div class="bw-item-content flex1 flex jd-list-wrap">
|
<div class="bw-item-content flex1 flex jd-list-wrap">
|
||||||
<div class="jd-list jd-list-long" runat="server" id="divGZL" style="overflow:scroll;max-height:200px;">
|
<div class="jd-list jd-list-long" runat="server" id="divGZL" style="overflow:scroll;max-height:200px;">
|
||||||
<div class="jd-item">
|
<div class="jd-item">
|
||||||
|
|
|
@ -71,6 +71,15 @@ namespace FineUIPro.Web.common
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
divGZL.InnerHtml = quantityCompletionStr;
|
divGZL.InnerHtml = quantityCompletionStr;
|
||||||
|
string date = string.Empty;
|
||||||
|
if (quantityCompletions.Count() > 0)
|
||||||
|
{
|
||||||
|
if (quantityCompletions.First() != null && quantityCompletions.First().EndDate != null)
|
||||||
|
{
|
||||||
|
date = " (" + string.Format("{0:yyyy-MM}", quantityCompletions.First().EndDate) + ")";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
divMonth.InnerHtml = "专业工作量表" + date;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -147,6 +147,15 @@ namespace FineUIPro.Web.common {
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divBG;
|
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divBG;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// divMonth 控件。
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// 自动生成的字段。
|
||||||
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
|
/// </remarks>
|
||||||
|
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divMonth;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// divGZL 控件。
|
/// divGZL 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue