This commit is contained in:
parent
089ab7603b
commit
85668372fa
|
|
@ -2,7 +2,7 @@
|
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<UseIISExpress>true</UseIISExpress>
|
||||
<Use64BitIISExpress />
|
||||
<IISExpressSSLPort />
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ namespace FineUIPro.Web.WeldMat.Stock
|
|||
|
||||
this.drpMaterialman.DataValueField = "UserId";
|
||||
this.drpMaterialman.DataTextField = "UserName";
|
||||
this.drpMaterialman.DataSource = BLL.Sys_UserService.GetUserList();
|
||||
this.drpMaterialman.DataSource = BLL.Project_UserService.Sys_UserService.GetUserList();
|
||||
this.drpMaterialman.DataBind();
|
||||
|
||||
if (CurrUser.Account != Const.Gly)
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ using System.Net.Http;
|
|||
using System.Net.Http.Formatting;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Web.Http.Description;
|
||||
using System.Xml;
|
||||
using System.Xml.Linq;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
|
@ -378,7 +379,7 @@ namespace WebAPI.Areas.HelpPage
|
|||
try
|
||||
{
|
||||
object parsedJson = JsonConvert.DeserializeObject(str);
|
||||
return JsonConvert.SerializeObject(parsedJson, Formatting.Indented);
|
||||
return JsonConvert.SerializeObject(parsedJson, Newtonsoft.Json.Formatting.Indented);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@
|
|||
<Private>True</Private>
|
||||
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="WebGrease">
|
||||
<Private>True</Private>
|
||||
<HintPath>..\packages\WebGrease.1.6.0\lib\WebGrease.dll</HintPath>
|
||||
|
|
|
|||
Loading…
Reference in New Issue