master
editor 1 year ago
commit 5765a9d14a

@ -0,0 +1,37 @@
门店备案流程系统
一、主要功能
        1、分店提交销售记录到总店,
        2、总店实时接收消息提醒,并审批.
        3、总店可查看分店销售报表.
        4、分店可无限增加.
        5、使用ligerui, 可作为学习此框架使用.
二、注意事项
        1、开发环境为Visual Studio 2013数据库为SQLite使用.net 4.0开发。
作者: sobne
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/StoreFilingProcess
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AccountForm.aspx.cs" Inherits="AccountForm" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/ligerui.min.js" type="text/javascript"></script>
<script src="scripts/common.js" type="text/javascript"></script>
<script src="scripts/dateCore.js" type="text/javascript"></script>
<script src="data.js" type="text/javascript"></script>
<script type="text/javascript">
var gridManager = null;

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class AccountForm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Text;
using Lib4Net;
using Lib4Net.Data;
/// <summary>
///Account 的摘要说明
/// </summary>
public class Account
{
private SQLiteDAL dal = new SQLiteDAL(Common.Instance.ConnectString);

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
///AccountModel 的摘要说明
/// </summary>
public class AccountModel
{
public Int64 keyID { get; set; }
public string Name { get; set; }
public string EName { get; set; }
public string PassWord { get; set; }
public DateTime BuiltDate { get; set; }

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
/// <summary>
///Common 的摘要说明
/// </summary>
public class Common
{
private static readonly Common instance = new Common();
public static Common Instance
{
get { return instance; }

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Text;
using Lib4Net;
using Lib4Net.Data;
/// <summary>
///Message 的摘要说明
/// </summary>
public class Message
{
private SQLiteDAL dal = new SQLiteDAL(Common.Instance.ConnectString);

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
///MessageModel 的摘要说明
/// </summary>
public class MessageModel
{
public Int64 keyID { get; set; }
public Int64 SellOrderKey { get; set; }
public string SendAccountName { get; set; }
public string ReceiveAccountName { get; set; }
public string Title { get; set; }

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Text;
using Lib4Net;
using Lib4Net.Data;
/// <summary>
///SellOrder 的摘要说明
/// </summary>
public class SellOrder
{
private SQLiteDAL dal = new SQLiteDAL(Common.Instance.ConnectString);

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
///SellOrderModel 的摘要说明
/// </summary>
public class SellOrderModel
{
public Int64 keyID { get; set; }
public string AccountName { get; set; }
public string BrandName { get; set; }
public string TypeNo { get; set; }
public string MachineNo { get; set; }

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("Main.aspx");
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Main.aspx.cs" Inherits="Main" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body, html
{
height: 100%;
width:100%
}

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Main : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SellOrderForm.aspx.cs" Inherits="SellOrderForm" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body{padding: 5px;margin: 0;}
</style>
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/ligerui.min.js" type="text/javascript"></script>
<script src="scripts/common.js" type="text/javascript"></script>
<script src="scripts/dateCore.js" type="text/javascript"></script>

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class SellOrderForm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SellOrderMain.aspx.cs" Inherits="SellOrderMain" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body{padding: 5px;margin: 0;}
</style>
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/ligerui.min.js" type="text/javascript"></script>
<script src="scripts/common.js" type="text/javascript"></script>
<script src="scripts/dateCore.js" type="text/javascript"></script>

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class SellOrderMain : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SubSumary.aspx.cs" Inherits="SubSumary" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/ligerui.min.js" type="text/javascript"></script>
<script src="scripts/jquery.Cookie.js" type="text/javascript"></script>
<script type="text/javascript">
var gridManager = null;
var EName;

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class SubSumary : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TotalSumary.aspx.cs" Inherits="TotalSumary" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/ligerui.min.js" type="text/javascript"></script>
<script src="scripts/jquery.Cookie.js" type="text/javascript"></script>
<script type="text/javascript">
var gridManager = null;
var EName;

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class TotalSumary : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="changePwd.aspx.cs" Inherits="admin_changePwd" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<table style="width: 100%;" cellpadding="0" cellspacing="0" border="0">
<tr>
<th class="tabletitlelink" align="center">
密码变更
</th>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using Lib4Net.Web.Object;
public partial class admin_changePwd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

@ -0,0 +1,15 @@
var subdata =
[
{ text: "备案申请", tabid: "home", showClose: false, url: "SellOrderForm.aspx" },
{ text: "统计报表", tabid: "rpt", showClose: false, url: "SubSumary.aspx" }
];
var mngdata =
[
{ text: "备案申请", tabid: "home", showClose: false, url: "SellOrderMain.aspx" },
{ text: "统计报表", tabid: "rpt", showClose: false, url: "TotalSumary.aspx" },
{ text: "分店设置", tabid: "account", showClose: false, url: "AccountForm.aspx" }
];
var branddata =
[
{ text: '品牌1', id: '品牌1' },
{ text: '品牌2', id: '品牌2' },

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="install.aspx.cs" Inherits="install" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
创建Sqlite数据库,表结构
<br />
<asp:Button ID="Button1" runat="server" Text="创建数据库" onclick="Button1_Click" />
<asp:Button ID="Button3" runat="server" Text="创建Account表" onclick="Button3_Click" />

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using Utility4Net;
using Utility4Net.Data;
public partial class install : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

@ -0,0 +1,15 @@
/*
* Metadata - jQuery plugin for parsing metadata from elements
*
* Copyright (c) 2006 John Resig, Yehuda Katz, J<EFBFBD>örn Zaefferer, Paul McLanahan
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Revision: $Id: jquery.metadata.js 4187 2007-12-16 17:15:27Z joern.zaefferer $
*
*/
/**
* Sets the type of metadata to use. Metadata is encoded in JSON, and each property

@ -0,0 +1,15 @@
/**
* jQuery Validation Plugin 1.8.0
*
* http://bassistance.de/jquery-plugins/jquery-plugin-validation/
* http://docs.jquery.com/Plugins/Validation
*
* Copyright (c) 2006 - 2011 Jörn Zaefferer
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
(function(c){c.extend(c.fn,{validate:function(a){if(this.length){var b=c.data(this[0],"validator");if(b)return b;b=new c.validator(a,this[0]);c.data(this[0],"validator",b);if(b.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){b.cancelSubmit=true});b.settings.submitHandler&&this.find("input, button").filter(":submit").click(function(){b.submitButton=this});this.submit(function(d){function e(){if(b.settings.submitHandler){if(b.submitButton)var f=c("<input type='hidden'/>").attr("name",
b.submitButton.name).val(b.submitButton.value).appendTo(b.currentForm);b.settings.submitHandler.call(b,b.currentForm);b.submitButton&&f.remove();return false}return true}b.settings.debug&&d.preventDefault();if(b.cancelSubmit){b.cancelSubmit=false;return e()}if(b.form()){if(b.pendingRequest){b.formSubmitted=true;return false}return e()}else{b.focusInvalid();return false}})}return b}else a&&a.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing")},valid:function(){if(c(this[0]).is("form"))return this.validate().form();
else{var a=true,b=c(this[0].form).validate();this.each(function(){a&=b.element(this)});return a}},removeAttrs:function(a){var b={},d=this;c.each(a.split(/\s/),function(e,f){b[f]=d.attr(f);d.removeAttr(f)});return b},rules:function(a,b){var d=this[0];if(a){var e=c.data(d.form,"validator").settings,f=e.rules,g=c.validator.staticRules(d);switch(a){case "add":c.extend(g,c.validator.normalizeRule(b));f[d.name]=g;if(b.messages)e.messages[d.name]=c.extend(e.messages[d.name],b.messages);break;case "remove":if(!b){delete f[d.name];

@ -0,0 +1,15 @@
/*
* Translated default messages for the jQuery validation plugin.
* Locale: CN
*/
jQuery.extend(jQuery.validator.messages, {
required: "该字段不能为空",
remote: "请修正该字段",
email: "请输入正确格式的电子邮件",
url: "请输入合法的网址",
date: "请输入合法的日期",
dateISO: "请输入合法的日期 (ISO).",
number: "请输入合法的数字",
digits: "只能输入整数",
creditcard: "请输入合法的信用卡号",
equalTo: "请再次输入相同的值",

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/*!
* jQuery JavaScript Library v1.4.4
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Thu Nov 11 19:04:53 2010 -0500
*/

@ -0,0 +1,15 @@
/*!
* jQuery JavaScript Library v1.5.2
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Thu Mar 31 15:28:23 2011 -0400
*/

@ -0,0 +1,15 @@
/*
http://www.JSON.org/json2.js
2010-11-17
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
This code should be minified before deployment.
See http://javascript.crockford.com/jsmin.html
USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//ligerui 继承方法
Function.prototype.ligerExtend = function (parent, overrides)
{

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//ligerui 继承方法
Function.prototype.ligerExtend = function (parent, overrides)
{

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerAccordion = function (options)
{
return $.ligerui.run.call(this, "ligerAccordion", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerButton = function (options)
{
return $.ligerui.run.call(this, "ligerButton", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerCheckBox = function (options)
{
return $.ligerui.run.call(this, "ligerCheckBox", arguments);
};
$.fn.ligerGetCheckBoxManager = function ()

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerComboBox = function (options)
{
return $.ligerui.run.call(this, "ligerComboBox", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerDateEditor = function ()
{
return $.ligerui.run.call(this, "ligerDateEditor", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
//全局事件
$(".l-dialog-btn").live('mouseover', function ()

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
$.fn.ligerDrag = function (options)
{

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerEasyTab = function ()
{
return $.ligerui.run.call(this, "ligerEasyTab", arguments);
};
$.fn.ligerGetEasyTabManager = function ()

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerFilter = function ()
{
return $.ligerui.run.call(this, "ligerFilter", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerForm = function ()
{
return $.ligerui.run.call(this, "ligerForm", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
$.fn.ligerGrid = function (options)
{

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerLayout = function (options)
{
return $.ligerui.run.call(this, "ligerLayout", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.ligerMenu = function (options)
{
return $.ligerui.run.call(null, "ligerMenu", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerMenuBar = function (options)
{
return $.ligerui.run.call(this, "ligerMenuBar", arguments);
};
$.fn.ligerGetMenuBarManager = function ()

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.ligerMessageBox = function (options)
{
return $.ligerui.run.call(null, "ligerMessageBox", arguments, { isStatic: true });
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerRadio = function ()
{
return $.ligerui.run.call(this, "ligerRadio", arguments);

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerResizable = function (options)
{
return $.ligerui.run.call(this, "ligerResizable", arguments,
{
idAttrName: 'ligeruiresizableid', hasElement: false, propertyToElemnt: 'target'

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerSpinner = function ()
{
return $.ligerui.run.call(this, "ligerSpinner", arguments);
};
$.fn.ligerGetSpinnerManager = function ()

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTab = function (options)
{
return $.ligerui.run.call(this, "ligerTab", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTextBox = function ()
{
return $.ligerui.run.call(this, "ligerTextBox", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//气泡,可以在制定位置显示
$.ligerTip = function (p)
{
return $.ligerui.run.call(null, "ligerTip", arguments);

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerToolBar = function (options)
{
return $.ligerui.run.call(this, "ligerToolBar", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTree = function (options)
{
return $.ligerui.run.call(this, "ligerTree", arguments);
};

@ -0,0 +1,15 @@
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
l.windowCount = 0;

@ -0,0 +1,8 @@
@import url("ligerui-common.css");
@import url("ligerui-dialog.css");
@import url("ligerui-form.css");
@import url("ligerui-grid.css");
@import url("ligerui-layout.css");
@import url("ligerui-menu.css");
@import url("ligerui-tab.css");
@import url("ligerui-tree.css");

@ -0,0 +1,15 @@
/* -------------
* commom *
* ------------- */
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
legend{color:#000;}del,ins{text-decoration:none;}
body{font-family: "微软雅黑", "宋体", Arial, sans-serif; font-size: 12px; }
.l-clear{ clear:both; width:1px; height:1px; overflow:hidden;}
.l-hidden {display: none;}
.l-loading
{
position: absolute;z-index: 91000; top:40%; left:50%; overflow:hidden;
background:url('../images/common/loading.gif') no-repeat 0px 0px;width:24px; height:24px;
display:none;
}

@ -0,0 +1,15 @@
/* 任务栏 */
.l-taskbar{background-image:url('../images/win/taskbar.png'); background-repeat:repeat-x; height:36px; line-height:36px; overflow:hidden; width:100%; position:fixed; left:0px; bottom:-36px; display:none; z-index: 11000;}
.l-taskbar-tasks{ width:100%; margin-top:2px;}
.l-taskbar-task{ height:26px; line-height:26px;overflow:hidden; margin:2px; float:left; margin-left:2px; position:relative; cursor:pointer; background-repeat:repeat-x;}
.l-taskbar-task{ background-image:url('../images/win/taskbar-task.gif'); border:1px solid #676F7F;}
.l-taskbar-task-icon{ position:absolute; left:5px; top:3px;width:24px; height:25px; overflow:hidden;background:url('../images/win/taskicon.gif') no-repeat;}
.l-taskbar-task-content{ margin-left:27px; color:White; font-weight:bold; margin-right:10px;}
.l-taskbar-task-over{ border-color:#A7ADB5;background-position:0px -30px;}
.l-taskbar-task-active{border-color:#A2A8AF;background-position:0px -60px; }
.l-taskbar{_position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))); _background-image:url('../images/win/taskbar.gif');}
.l-taskbar-top{ bottom:auto; top:0px; background-color:White; padding-bottom:1px; border-bottom:1px solid #687079;}
.l-taskbar-top{_position:absolute;_top:expression(eval(document.documentElement.scrollTop));}
/* ------------------
* messagebox *
* --------------- */

@ -0,0 +1,15 @@
/* 表单 */
.l-form { margin:7px;}
.l-form .l-group{ clear:both; margin:0; height:28px; line-height:28px; font-weight:bold; font-size:12px; color:#333; border-bottom:solid 1px #ebebeb; margin-bottom:14px; display:block; position:relative; clear:both;}
.l-form .l-group-hasicon{ padding-left:30px;}
.l-form .l-group-hasicon img{ width:16px; height:16px; position:absolute; left:6px; top:6px;}
.l-form ul, .l-form li{ list-style:none;}
.l-form ul{ clear:both; margin-top:2px; margin-bottom:2px;}
.l-form li{ float:left; overflow:hidden; text-align:left; line-height:23px;padding:0; padding-top:2px; padding-bottom:2px;}
.l-form li textarea{ height:80px;}
.l-hidden{ display:none;}
/* -------------
* *
* ------------- */
.l-textarea{border:1px solid #A8AAAD; margin-left:-1px;outline:none;}

@ -0,0 +1,15 @@
/* -----------------------
* *
* ----------------------- */
.l-grid-mask{
position:absolute;left:0;top:0;width:100%;height:100%;
display1:none;font-size:1px; *zoom:1;overflow:hidden; display:none;z-index: 9000;
}
.l-panel
{
border:1px solid #84A0C4;
position:relative;
text-align:left;
}
.l-panel table{ width:auto;}

@ -0,0 +1,15 @@
/* --------------
* layout *
* ------------ */
.l-layout{ position:relative;}
.l-layout-left,.l-layout-right,.l-layout-center,.l-layout-top,.l-layout-bottom{position:absolute;border:1px solid #BED5F3; background:white; z-index:10; overflow:hidden;}
.l-layout-top{width:100%;}
.l-layout-bottom{width:100%}
.l-layout-left .l-layout-header-toggle{position:absolute; top:3px; right:3px; height:20px; width:20px; overflow:hidden; background:url('../images/layout/togglebar.gif');background-position:-20px 0px; cursor:pointer;}
.l-layout-left .l-layout-header-toggle-over{ background-position:-20px -20px;}
.l-layout-right .l-layout-header-toggle{position:absolute; top:3px; left:3px; height:20px; width:20px; overflow:hidden; background:url('../images/layout/togglebar.gif');background-position:-20px -40px; cursor:pointer;}
.l-layout-right .l-layout-header-toggle-over{ background-position:-20px -60px;}

@ -0,0 +1,15 @@
/* --------------
* menu *
* ------------ */
.l-menu { border:1px solid #979797; background:#F5F5F5;position:absolute; overflow:hidden; padding-bottom:2px; z-index:1001}
.l-menu-shadow{z-index:1000;
FILTER: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
BACKGROUND: #ddd;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
position: absolute;}
.l-menu-inner{ position:relative;width:100%;z-index:103;}

@ -0,0 +1,15 @@
/* -----------------------
* tab *
* ----------------------- */
.l-tab-loading{ position: absolute;z-index: 91000; top:0; left:0;background:white url('../images/common/bigloading.gif') no-repeat center 40%; width:100%; height:100%;_height:800px;display:none;}
.l-tab-links{position:relative; height:26px; background:#F0F5F6; width:100%; overflow:hidden;
background:url('../images/layout/tabs-bg.gif') repeat-x; border-bottom:1px solid #BED5F3;}
.l-tab-links-left{position:absolute; top:1px; left:0; width:17px; height:23px; overflow:hidden; background:url(../images/layout/tabs-tools.gif) 0px 0px; z-index:13; cursor:pointer;}
.l-tab-links-right{ position:absolute; top:1px; right:0;width:17px; height:23px; overflow:hidden;background:url(../images/layout/tabs-tools.gif) -51px 0px;z-index:13; cursor:pointer;}
.l-tab-links-left-over{ background-position:-17px 0px;}
.l-tab-links-right-over{ background-position:-68px 0px;}
.l-tab-links-left-invalid{ background-position:-34px 0px;}
.l-tab-links-right-invalid{ background-position:-85px 0px;}

@ -0,0 +1,15 @@
/* --------------
* tree *
* ------------ */
.l-tree
{
margin:0; padding:0; list-style:none; overflow:hidden; position:relative; display:block; background:white;
}
.l-tree-loading
{
position: absolute;z-index: 91000; top:40%; left:50%; overflow:hidden;
background:url('../images/tree/loading.gif') no-repeat 0px 0px;width:24px; height:24px;
display:none;
}
.l-tree a,.l-tree span{color: #333;display: inherit;height: 22px;line-height: 22px; text-decoration:none;}

@ -0,0 +1,7 @@
@import url("common.css");
@import url("form.css");
@import url("grid.css");
@import url("grid.css");
@import url("layout.css");
@import url("tab.css");
@import url("dialog.css");

@ -0,0 +1,15 @@
/* 按钮 */
.l-button{line-height:25px;height:25px;background:url('../images/ui/button1.gif') repeat-x; position:relative; margin-top:8px; margin-bottom:8px;color:#2C69A2; width:120px; cursor:pointer; border:none; color:#2C69A2; border-left:1px solid #BFCFE1; border-right:1px solid #BFCFE1;border-bottom:1px solid #BFCFE1;}
.l-button-l,.l-button-r{ width:2px;height:25px;background:url('../images/ui/button1.gif') no-repeat; position:absolute; }
.l-button-l{ left:0px; background-position:0px -25px;}
.l-button-r{ right:0px;background-position:0px -50px;}
.l-button-icon{ position:absolute; left:7px; top:6px;}
.l-button img{ width:16px; height:16px;}
.l-button span{ display:block; margin-left:30px; }
.l-buttonnoicon span{ margin-left:8px; }
.l-button2,.l-button2 .l-button-l,.l-button2 .l-button-r{background-image:url('../images/ui/button2.gif'); line-height:23px; height:23px; color:#333;}
.l-button2 .l-button-icon{ top:4px;}
.l-button2 .l-button-l,.l-button2 .l-button-r{ background-position:0px -23px;}

@ -0,0 +1,15 @@
/* --------------
* dialog *
* ------------ */
.l-dialog{ padding:0; margin:0;font-size:12px; border-top:1px solid #405999; border-bottom:1px solid #545454; }
.l-dialog td,.l-dialog tr,.l-dialog td div{font-size:12px; }
.l-dialog-cc{ background:white;}
.l-dialog-tl,.l-dialog-tr,.l-dialog-bl,.l-dialog-br,.l-dialog-cl,.l-dialog-cr{width:1px;}
.l-dialog-tl,.l-dialog-tc,.l-dialog-tr{ height:24px;}
.l-dialog-bl,.l-dialog-bc,.l-dialog-br{ height:0px; line-height:0px;}
.l-dialog-tl{background:#43569A;border-bottom:1px solid #405999;}
.l-dialog-tc{background:#6C84B4;border-bottom:1px solid #405999;}
.l-dialog-tr{background:#43569A;border-bottom:1px solid #405999;}
.l-dialog-bl{background:#575757;}

@ -0,0 +1,15 @@
.l-hidden{ display:none;}
/* -------------
* *
* ------------- */
.l-textarea{border:1px solid #D0D0D0; margin-left:0px;outline:none; background:#FFFFFF url('../images/ui/input.gif') repeat-x top;}
.l-textarea:hover{border-color:#777777;}
.l-textarea-invalid,.l-textarea:focus{ border-color:#777777;}
.l-textarea-invalid{border-color:#FF7777; background:#FFEEEE url(../../Aqua/images/common/invalid-line.gif) repeat-x bottom;}
.l-textarea-invalid:hover,.l-textarea-invalid:focus{border-color:#FF7777;}
/* -------------
* /// *
* ------------- */
/* 文本框、下来框、日期框、调整器都使用到这个 */

@ -0,0 +1,15 @@
.l-scroll {
scrollbar-face-color: white;
scrollbar-highlight-color: #D6D6D6;
scrollbar-shadow-color: #D6D6D6;
scrollbar-3dlight-color: white;
scrollbar-arrow-color: #D6D6D6;
scrollbar-track-color: white;
scrollbar-darkshadow-color: white;
SCROLLBAR-BASE-COLOR:#F1F1F1;
}
/* -----------------------
* *
* ----------------------- */

@ -0,0 +1,15 @@
/* --------------
* layout *
* ------------ */
.l-layout{ position:relative;}
.l-layout-left,.l-layout-right,.l-layout-center,.l-layout-top,.l-layout-bottom{position:absolute;border:1px solid #D0D0D0; background:white; z-index:10; overflow:hidden;}
.l-layout-left .l-layout-header-toggle{background:url('../images/layout/togglebar.gif');background-position:-20px 0px; cursor:pointer;}
.l-layout-left .l-layout-header-toggle-over{ background-position:-20px -20px;}
.l-layout-right .l-layout-header-toggle{position:absolute; top:3px; left:3px; height:20px; width:20px; overflow:hidden; background:url('../images/layout/togglebar.gif');background-position:-20px -40px; cursor:pointer;}
.l-layout-right .l-layout-header-toggle-over{ background-position:-20px -60px;}
.l-layout-center .l-layout-header{ cursor:default;}

@ -0,0 +1,15 @@
/* -----------------------
* tab *
* ----------------------- */
.l-tab-loading{ background-image:url('../images/ui/loading.gif');}
.l-tab-links{background:url('../images/layout/tabs-bg.gif') repeat-x; border-bottom:1px solid #D0D0D0;}
.l-tab-links-left{background:url(../images/layout/tabs-tools.gif) 0px 0px;}
.l-tab-links-right{background:url(../images/layout/tabs-tools.gif) -51px 0px;}
.l-tab-links-left-over{ background-position:-17px 0px;}
.l-tab-links-right-over{ background-position:-68px 0px;}
.l-tab-links-left-invalid{ background-position:-34px 0px;}
.l-tab-links-right-invalid{ background-position:-85px 0px;}
.l-tab-links li{ background:url(../images/layout/tabs-item-bg.gif); }

@ -0,0 +1,15 @@
/* -------------
* *
* ------------- */
.l-textarea{border:1px solid #A8AAAD; margin-left:-1px;outline:none;}
.l-textarea:hover{border-color:#01AAEE;}
l-textarea-invalid,.l-textarea:focus{ border-color:#FF8801;}
/* 文本框、下来框、日期框、调整器都使用到这个 */
.l-text
{
position:relative;border:none; height:21px; line-height:21px; background:white;background:url('../images/form/text.gif') repeat-x;
}
.l-text .l-text-l
{
position:absolute; left:0px; top:0px;
width:3px; height:21px; background:url('../images/form/text-l.gif') no-repeat; overflow:hidden;

@ -0,0 +1,15 @@
/*
*/
.l-grid-header
{
border-bottom: 1px solid #E8F8A9;height: 26px;line-height: 26px;background:url('../images/grid/gridheaderbg.jpg'); overflow:hidden; width:100%;
}
.l-grid-hd-cell-mul
{
border-bottom: 1px solid #ddd;
}
.l-grid-hd-cell
{
padding:0; margin:0;overflow:hidden;

@ -0,0 +1,15 @@
/*
layout
*/
.l-layout-header{ height:25px; line-height:24px; background:#E5EFFE url('../images/layout/layout-header.jpg') repeat-x; overflow:hidden;}
.l-layout-header-over{background:#EFF4FE url('../images/layout/layout-header-over.jpg') repeat-x;}
/*
accordion
*/
.l-accordion-header{ position:relative;padding-left:10px; color:#183152; font-weight:bold;height:25px; line-height:24px; background:url('../images/layout/accordion-header.jpg') repeat-x; overflow:hidden; cursor:pointer;}
.l-accordion-header-over{background:url('../images/layout/accordion-header-over.jpg') repeat-x;}
/*
tab

@ -0,0 +1,3 @@
@import url("layout.css");
@import url("grid.css");
@import url("form.css");

@ -0,0 +1,15 @@
.l-icon{ width:16px; height:16px; overflow:hidden;}
.l-icon-add{ background:url('icons/add.gif') no-repeat center;}
.l-icon-delete{ background:url('icons/delete.gif') no-repeat center;}
.l-icon-back{ background:url('icons/back.gif') no-repeat center;}
.l-icon-bluebook{ background:url('icons/bluebook.gif') no-repeat center;}
.l-icon-bookpen{ background:url('icons/bookpen.gif') no-repeat center;}
.l-icon-coffee{ background:url('icons/coffee.gif') no-repeat center;}
.l-icon-cut{ background:url('icons/cut.gif') no-repeat center;}
.l-icon-discuss{ background:url('icons/discuss.gif') no-repeat center;}
.l-icon-graywarn{ background:url('icons/graywarn.gif') no-repeat center;}
.l-icon-greenwarn{ background:url('icons/greenwarn.gif') no-repeat center;}
.l-icon-help{ background:url('icons/help.gif') no-repeat center;}
.l-icon-home{ background:url('icons/home.gif') no-repeat center;}
.l-icon-lock{ background:url('icons/lock.gif') no-repeat center;}
.l-icon-logout{ background:url('icons/logout.gif') no-repeat center;}

@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<link href="lib/ligerUI/skins/Aqua/css/ligerui-dialog.css" rel="stylesheet" type="text/css" />
<link href="lib/ligerUI/skins/Gray/css/dialog.css" rel="stylesheet" type="text/css" />
<script src="lib/ligerUI/js/core/base.js" type="text/javascript"></script>
<script src="lib/ligerUI/js/plugins/ligerDialog.js" type="text/javascript"></script>
<script src="scripts/jquery.Cookie.js" type="text/javascript"></script>
<style type="text/css">
*{ padding:0; margin:0;}
body{ text-align:center; background:#4974A4;}
#login{ width:740px; margin:0 auto; font-size:12px;}
#loginlogo{ width:700px; height:100px; overflow:hidden; background:url('lib/images/login/logo.jpg') no-repeat; margin-top:50px; }

@ -0,0 +1,15 @@
function getUrlParameter(url, name) {
if (url.indexOf("?") == -1)
return null;
var paramStr = url.substring(url.indexOf("?"));
if (paramStr.length == 0)
return null;
if (paramStr.charAt(0) != '?')
return null;
paramStr = unescape(paramStr);
paramStr = paramStr.substring(1);
if (paramStr.length == 0)
return null;
var params = paramStr.split('&');
for (var i = 0; i < params.length; i++) {
var parts = params[i].split('=', 2);

@ -0,0 +1,15 @@
/*
Date.prototype.isLeapYear 判断闰年
Date.prototype.Format 日期格式化
Date.prototype.DateAdd 日期计算
Date.prototype.DateDiff 比较日期差
Date.prototype.toString 日期转字符串
Date.prototype.toArray 日期分割为数组
Date.prototype.DatePart 取日期的部分信息
Date.prototype.MaxDayOfDate 取日期所在月的最大天数
Date.prototype.WeekNumOfYear 判断日期所在年的第几周
StringToDate 字符串转日期型
IsValidDate 验证日期有效性
CheckDateTime 完整日期时间检查
daysBetween 日期天数差
*/

@ -0,0 +1,15 @@
/*!
* jQuery JavaScript Library v1.4.4
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Thu Nov 11 19:04:53 2010 -0500
*/

@ -0,0 +1,15 @@
/**
* Cookie plugin
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
/**
* Create a cookie with the given name and value and other optional parameters.
*
* @example $.cookie('the_cookie', 'the_value');
* @desc Set the value of a cookie.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
<system.webServer>
<handlers>
<add name="easyUI" path="*.json" verb="*" modules="IsapiModule" scriptProcessor="C:\WINDOWS\system32\inetsrv\asp.dll" resourceType="Unspecified"/>
</handlers>
</system.webServer>
</configuration>
Loading…
Cancel
Save