You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
427 lines
15 KiB
Plaintext
427 lines
15 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DD_ActiveList.aspx.cs" Inherits="TradeManage.DingDan.DD_ActiveList" %>
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>活动</title>
|
|
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/icon.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/New.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/DataGrid.css" />
|
|
<script src="../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.easyui.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DataGrid.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DataPager.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.url.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.bgiframe.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/Global.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DatePicker/WdatePicker.js" type="text/javascript"></script>
|
|
<script src="../Scripts/WindowLoad.js" type="text/javascript"></script>
|
|
<script src="../Scripts/MaskedTextBox.js" type="text/javascript"></script>
|
|
<link rel="stylesheet" type="text/css" href="../Scripts/fancybox/jquery.fancybox-1.3.4.css"
|
|
media="screen" />
|
|
<script type="text/javascript" src="../Scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
|
<script type="text/javascript" src="../Scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var datagrid1 = new nblf.ui.DataGrid("DataGrid1");
|
|
|
|
var WindowLoadModel = new WindowLoad();
|
|
var Id = 0;
|
|
$(document).ready(function () {
|
|
WindowLoadModel.ApplicationPath = "../";
|
|
WindowLoadModel.ControlID = "WindowLoad";
|
|
WindowLoadModel.Isbgiframe = true;
|
|
WindowLoadModel.Load();
|
|
ajaxInit(WindowLoadModel);
|
|
|
|
|
|
CreateDataGrid();
|
|
GetShopList();
|
|
$("#txtPrice").MaskedTextBox();
|
|
ReadData();
|
|
|
|
$("#" + datagrid1.TableID + " [CommandName='cmdEdit']").live("click", function () {
|
|
var RowIndex = $(this).parentsUntil("tr").parent().attr("index");
|
|
var model = datagrid1.Get_Model(RowIndex);
|
|
Id = model.Id;
|
|
Clear();
|
|
$("#select_shop").val(model.ShopId);
|
|
$("#txtGoodsCode").val(model.GoodsCode);
|
|
|
|
$("#txtActiveName").val(model.ActiveName);
|
|
$("#txtPrice").val(model.Price);
|
|
if (model.StartDate!=null)
|
|
$("#txtStartDate").val(model.StartDate.localeFormat("yyyy-MM-dd"));
|
|
|
|
fopen();
|
|
});
|
|
|
|
$("#btn_add").bind("click", function () {
|
|
Clear();
|
|
Id = 0;
|
|
fopen();
|
|
});
|
|
|
|
$("#btn_sch").bind("click", function () {
|
|
ReadData();
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
function GetShopList() {
|
|
$("#select_shop").append("<option value='0'>-选择-</option>");
|
|
$("#select_shop1").append("<option value='0'>全部</option>");
|
|
var param = new Object();
|
|
|
|
param.PlatType = 0;
|
|
|
|
WindowLoadModel.Show();
|
|
$.ajax({
|
|
url: "../BaseData.asmx/GetShopList",
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
async:false,
|
|
success: function (data) {
|
|
WindowLoadModel.Hide();
|
|
|
|
if (data.d != null) {
|
|
$(data.d).each(function () {
|
|
$("#select_shop,#select_shop1").append("<option value='" + this.ShopId + "'>" + this.ShopName + "</option>");
|
|
});
|
|
|
|
}
|
|
|
|
|
|
}
|
|
});
|
|
}
|
|
function Clear()
|
|
{
|
|
|
|
$("#select_shop").val("0");
|
|
$("#txtGoodsCode").val("");
|
|
|
|
$("#txtActiveName").val("");
|
|
$("#txtPrice").val("");
|
|
$("#txtStartDate").val("");
|
|
|
|
}
|
|
|
|
function fopen() {
|
|
|
|
$.fancybox({
|
|
'width': '40%',
|
|
'height': '40%',
|
|
'autoScale': false,
|
|
'transitionIn': 'elastic',
|
|
'transitionOut': 'elastic',
|
|
'href': '#test',
|
|
'onComplete': function () {
|
|
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
function fopen() {
|
|
|
|
$.fancybox({
|
|
'width': '40%',
|
|
'height': '40%',
|
|
'autoScale': false,
|
|
'transitionIn': 'elastic',
|
|
'transitionOut': 'elastic',
|
|
'href': '#test',
|
|
'onComplete': function () {
|
|
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
//#endregion
|
|
//#region 初始化DataGrid
|
|
function CreateDataGrid() {
|
|
|
|
var col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "店铺";
|
|
col.CellTemplate = "<a>{Bind ShopName}</a>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "货物编号";
|
|
col.CellTemplate = "<a>{Bind GoodsCode}</a>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "活动名称";
|
|
col.CellTemplate = "<span>{Bind ActiveName}</span>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "一口价";
|
|
col.CellTemplate = "<a>{Bind Price}</a>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "展示开始日期";
|
|
col.CellTemplate = "<span>{Bind StartDate,yyyy-MM-dd}</span>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "添加人";
|
|
col.CellTemplate = "<span>{Bind InName}</span>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "添加日期";
|
|
col.CellTemplate = "<span>{Bind InDate,yyyy-MM-dd}</span>";
|
|
Array.add(datagrid1.Columns, col);
|
|
col = new nblf.ui.DataGridColumn();
|
|
col.HeaderText = "操作";
|
|
col.Width = "180px";
|
|
col.CellTemplate = "<input CommandName='cmdEdit' class='btnClass dgbtnEdit' type='button' value='编辑'></input> <input onclick='DelCol(this)' class='btnClass dgbtnDel' type='button' value='删除'></input>";
|
|
Array.add(datagrid1.Columns, col);
|
|
datagrid1.SetPageSize(30);
|
|
datagrid1.SetPageIndex(1);
|
|
datagrid1.IsFixHeader = false;
|
|
datagrid1.ShowIndexColumn = false;
|
|
datagrid1.AllowPaging = true;
|
|
datagrid1.Width = "100%";
|
|
datagrid1.SelectMode = nblf.ui.SelectMode.None;
|
|
datagrid1.Init();
|
|
datagrid1.add_PageIndexChanged(function () { ReadData(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
//#region 读取数据
|
|
function ReadData() {
|
|
|
|
var param = new Object();
|
|
param.ShopId = $("#select_shop1").val();
|
|
param.GoodsCode = $("#txt_GoodsCode").val();
|
|
param.SDate = $("#txtSDate").val();
|
|
param.PageSize = datagrid1.Get_PageSize();
|
|
param.PageIndex = datagrid1.Get_PageIndex();
|
|
|
|
WindowLoadModel.Show();
|
|
$.ajax({
|
|
url: "DD_OrderService.asmx/GetListDT_ShopActive",
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
success: function (data) {
|
|
WindowLoadModel.Hide();
|
|
datagrid1.Set_RowCount(data.d.RowCount);
|
|
datagrid1.DataBind(data.d.DataSource);
|
|
|
|
}
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//#endregion
|
|
//#region 删除
|
|
function DelCol(obj) {
|
|
if (window.confirm('确定要删除吗?') == false) return;
|
|
var rowindex = $(obj).parent().parent().attr("index");
|
|
var param = new Object();
|
|
var model = datagrid1.Get_Model(rowindex);
|
|
|
|
param.Id = model.Id;
|
|
|
|
$.ajax({
|
|
url: "DD_OrderService.asmx/DeleteShopActive",
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
dataType: "json",
|
|
success: function (data) {
|
|
alert("删除成功");
|
|
ReadData();
|
|
|
|
}
|
|
});
|
|
|
|
|
|
}
|
|
function save() {
|
|
|
|
if ($("#select_shop").val() == "0") {
|
|
alert("请选择店铺");
|
|
return;
|
|
}
|
|
if ($("#txtGoodsCode").val() == "") {
|
|
alert("请填写货物编号");
|
|
return;
|
|
}
|
|
if ($("#txtActiveName").val() == "") {
|
|
alert("请填写活动名称");
|
|
return;
|
|
}
|
|
if ($("#txtPrice").val() == "") {
|
|
alert("请填写价格");
|
|
return;
|
|
}
|
|
if ($("#txtStartDate").val() == "") {
|
|
alert("请填写开始日期");
|
|
return;
|
|
}
|
|
var param = new Object();
|
|
var md = new Object();
|
|
md.Id = Id;
|
|
md.ShopId = $("#select_shop").val();
|
|
md.GoodsCode = $("#txtGoodsCode").val();
|
|
|
|
md.ActiveName = $("#txtActiveName").val();
|
|
md.Price = $("#txtPrice").val();
|
|
md.StartDate = $("#txtStartDate").val();
|
|
param.Model = md;
|
|
WindowLoadModel.Show();
|
|
$.ajax({
|
|
url: "DD_OrderService.asmx/SaveShopActive",
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
dataType: "json",
|
|
success: function (data) {
|
|
WindowLoadModel.Hide();
|
|
if (data.d == 0)
|
|
{
|
|
alert("货物编码不存在");
|
|
return;
|
|
}
|
|
alert("保存成功");
|
|
ReadData();
|
|
$.fancybox.close();
|
|
|
|
// window.location.href = "CG_Chase.aspx";
|
|
}
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//#endregion
|
|
</script>
|
|
|
|
|
|
</head>
|
|
<body class="headbody">
|
|
<div style="display: none">
|
|
<div id="test" title="供应商" style="width:400px; height:350px;">
|
|
<table width="95%" class="tableAll" border="1" ellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td style="width: 110px;" class="f1">
|
|
<font color="red" style="font-weight: bolder">*</font>店铺:
|
|
</td>
|
|
<td>
|
|
|
|
<select id="select_shop" class="selectClass" name="D4" style="width:120px;">
|
|
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 110px;" class="f1">
|
|
<font color="red" style="font-weight: bolder">*</font> 货物编号:
|
|
</td>
|
|
<td>
|
|
<input id="txtGoodsCode" class="editTextbox" style="width:95%;" type="text" />
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 110px;" class="f1">
|
|
<font color="red" style="font-weight: bolder">*</font> 活动名称:
|
|
</td>
|
|
<td>
|
|
<input id="txtActiveName" class="editTextbox" style="width:95%;" type="text" />
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 110px;" class="f1">
|
|
<font color="red" style="font-weight: bolder">*</font> 单价:
|
|
</td>
|
|
<td>
|
|
<input id="txtPrice" min='0' max='1000000' precision='2' class="editTextbox" style="width:95%;" type="text" />
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 110px;" class="f1">
|
|
展示日期:
|
|
</td>
|
|
<td>
|
|
<input id="txtStartDate" onfocus="WdatePicker()" class="editTextbox" style="width:95%;" type="text" />
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="center" colspan="2">
|
|
<input id="btn_Save" type="button" class="btnClass btnClassSave" value="保 存" onclick="save();"/> <input
|
|
id="btn_Cancel" type="button" class="btnClass btnClassClose" value="关 闭" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="title_ico">
|
|
活动管理
|
|
</div>
|
|
|
|
<table id="tb1" class="tableAll" style="width: 100%;">
|
|
|
|
|
|
<tr>
|
|
|
|
<td class="f1" width="13%">店铺:</td>
|
|
<td width="15%">
|
|
<select id="select_shop1" class="selectClass" name="D5" style="width:120px;">
|
|
</select></td>
|
|
|
|
<td class="f1" width="13%">编号/活动名称:</td>
|
|
<td width="15%">
|
|
<input id="txt_GoodsCode" class="editTextbox" style="width: 120px;" type="text" /></td>
|
|
<td class="f1" style="width: 10%;">开始日期:</td>
|
|
<td width="15%">
|
|
<input id="txtSDate" class="editTextbox" style="width: 120px;" type="text" /></td>
|
|
|
|
<td>
|
|
<input id="btn_sch" class="btnClass btnClassFind" type="button" value="查询" /></td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td colspan="7" class="auto-style1">
|
|
<input id="btn_add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" colspan="7">
|
|
<div id="DataGrid1" class="DataGridStyle"></div>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|