代码无效引用清理,试压包资料界面看板修改
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using BLL;
|
||||
using System;
|
||||
using System.Web;
|
||||
|
||||
namespace FineUIPro.Web.SysManage
|
||||
{
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
using BLL;
|
||||
using System;
|
||||
using System.Web;
|
||||
|
||||
namespace FineUIPro.Web.SysManage
|
||||
{
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
using BLL;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using AspNet = System.Web.UI.WebControls;
|
||||
|
||||
namespace FineUIPro.Web.SysManage
|
||||
@@ -32,11 +25,11 @@ namespace FineUIPro.Web.SysManage
|
||||
private void BindGrid()
|
||||
{
|
||||
Model.Sys_HttpLog table = new Model.Sys_HttpLog();
|
||||
table.LogTime=txtLogTime.SelectedDate;
|
||||
table.UserName=txtUserName.Text.Trim();
|
||||
table.HttpUrl=txtHttpUrl.Text.Trim();
|
||||
table.LogTxt=txtLogTxt.Text.Trim();
|
||||
table.MeThod=txtMeThod.Text.Trim();
|
||||
table.LogTime = txtLogTime.SelectedDate;
|
||||
table.UserName = txtUserName.Text.Trim();
|
||||
table.HttpUrl = txtHttpUrl.Text.Trim();
|
||||
table.LogTxt = txtLogTxt.Text.Trim();
|
||||
table.MeThod = txtMeThod.Text.Trim();
|
||||
var tb = BLL.SysHttplogService.getListData(table, Grid1);
|
||||
Grid1.RecordCount = SysHttplogService.count;
|
||||
//tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
using BLL;
|
||||
using FineUIPro.Web.DataShow;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
|
||||
namespace FineUIPro.Web.SysManage
|
||||
@@ -13,7 +9,7 @@ namespace FineUIPro.Web.SysManage
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsPostBack && this.CurrUser != null)
|
||||
{
|
||||
{
|
||||
Funs.DropDownPageSize(this.ddlPageSize);
|
||||
// 绑定表格
|
||||
this.BindGrid();
|
||||
@@ -25,7 +21,7 @@ namespace FineUIPro.Web.SysManage
|
||||
/// </summary>
|
||||
private void BindGrid()
|
||||
{
|
||||
var getDataList = Funs.DB.Sp_Project_GetToDoItems( this.CurrUser.LoginProjectId, this.CurrUser.PersonId).ToList();
|
||||
var getDataList = Funs.DB.Sp_Project_GetToDoItems(this.CurrUser.LoginProjectId, this.CurrUser.PersonId).ToList();
|
||||
Grid1.RecordCount = getDataList.Count();
|
||||
Grid1.DataSource = getDataList;
|
||||
Grid1.DataBind();
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
using BLL;
|
||||
using Model;
|
||||
using Newtonsoft.Json;
|
||||
using RestSharp;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using Newtonsoft.Json;
|
||||
using RestSharp;
|
||||
using Model;
|
||||
|
||||
namespace FineUIPro.Web.SysManage
|
||||
{
|
||||
@@ -1195,7 +1195,7 @@ namespace FineUIPro.Web.SysManage
|
||||
request.AddParameter("UnitName", thisUnit.UnitName);
|
||||
request.AddParameter("CollCropCode", thisUnit.CollCropCode);
|
||||
IRestResponse response = client.Execute(request);
|
||||
|
||||
|
||||
Alert.Show(response.Content);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,7 +98,8 @@
|
||||
if (Grid1.SelectedRowIndexArray.Length > 0)
|
||||
{
|
||||
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
|
||||
{ var getperson = Person_PersonsService.GetPerson_PersonsById(Grid1.DataKeys[rowIndex][0].ToString());
|
||||
{
|
||||
var getperson = Person_PersonsService.GetPerson_PersonsById(Grid1.DataKeys[rowIndex][0].ToString());
|
||||
if (getperson != null)
|
||||
{
|
||||
BLL.Person_PersonsService.UpdatePassword(getperson.PersonId, Funs.getInitialPassword(getperson.UnitId, getperson.IdentityCard));
|
||||
|
||||
Reference in New Issue
Block a user