扩展招标方式选项并修正下拉绑定字段顺序
This commit is contained in:
@@ -463,12 +463,15 @@ namespace BLL
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static ListItem[] GetBidType()
|
public static ListItem[] GetBidType()
|
||||||
{
|
{
|
||||||
ListItem[] list = new ListItem[5];
|
ListItem[] list = new ListItem[8];
|
||||||
list[0] = new ListItem("招标", "公开招标");
|
list[0] = new ListItem("公开招标", "公开招标");
|
||||||
list[1] = new ListItem("谈判", "邀请招标");
|
list[1] = new ListItem("邀请招标", "邀请招标");
|
||||||
list[2] = new ListItem("询比 ", "询比价");
|
list[2] = new ListItem("公开询比 ", "公开询比");
|
||||||
list[3] = new ListItem("竞价", "竞争性谈判");
|
list[3] = new ListItem("邀请询比 ", "邀请询比");
|
||||||
list[4] = new ListItem("直接分包", "单一来源");
|
list[4] = new ListItem("公开谈判", "公开谈判");
|
||||||
|
list[5] = new ListItem("邀请谈判", "邀请谈判");
|
||||||
|
list[6] = new ListItem("竞价", "竞价");
|
||||||
|
list[7] = new ListItem("直接分包", "直接分包");
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -127,8 +127,8 @@ namespace BLL
|
|||||||
/// <param name="isShowPlease">是否显示请选择</param>
|
/// <param name="isShowPlease">是否显示请选择</param>
|
||||||
public static void InitGetBidTypeDropDownList(FineUIPro.DropDownList dropName, bool isShowPlease)
|
public static void InitGetBidTypeDropDownList(FineUIPro.DropDownList dropName, bool isShowPlease)
|
||||||
{
|
{
|
||||||
dropName.DataValueField = "Text";
|
dropName.DataValueField = "Value";
|
||||||
dropName.DataTextField = "Value";
|
dropName.DataTextField = "Text";
|
||||||
dropName.DataSource = BLL.DropListService.GetBidType();
|
dropName.DataSource = BLL.DropListService.GetBidType();
|
||||||
dropName.DataBind();
|
dropName.DataBind();
|
||||||
if (isShowPlease)
|
if (isShowPlease)
|
||||||
|
|||||||
Reference in New Issue
Block a user