公司级看板,月计划、周计划项目详情补充查询条件
This commit is contained in:
@@ -59,10 +59,23 @@ namespace FineUIPro.Web.DataShow
|
||||
}
|
||||
this.Month = months.ToString("yyyy-MM-dd");
|
||||
}
|
||||
this.txtMonths.Text = this.Month.Replace("-01", "");
|
||||
BindGrid();
|
||||
}
|
||||
}
|
||||
|
||||
#region 月份选择事件
|
||||
/// <summary>
|
||||
/// 月份选择事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void txtMonths_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.Month = string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtMonths.Text.Trim() + "-01"));
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 加载Grid
|
||||
|
||||
Reference in New Issue
Block a user