master
editor 1 year ago
commit 3fbb1dff91

@ -0,0 +1,90 @@
小手拍拍购物商城_电子商务网站购物系统 (课程设计)
一、源码描述
       小手拍拍购物商城_电子商务网站购物系统 是一套完善的课程设计,系统具有完整的源代码和数据库。非常适合课程设计或课程设计使用,具有非常高的学习价值,欢迎下载。
二、功能介绍
        该系统主要包含前台和后台两个模块
        前台功能主要包括:
        1、首页
        2、注册登录
        3、产品分类
        4、产品展示
        5、产品详情
        6、购物车
        7、我的订单
        8、我的评论
        管理员后台功能主要包括:
        1、商品分类管理
        2、商品管理
        3、会员管理
        4、订单管理
        5、评论管理
三、注意事项
        1、数据库为SQLServer2008 R2使用C#语言开发。
作者: aries1001
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/SmallHandClappingShoppingMallENetwork
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace BLL.Admin
{
public class GZXX_Admin
{
DAL.Admin.GZXX_Admin dal = new DAL.Admin.GZXX_Admin();
public bool UpdatePassWord(Model.Admin.GZXX_Admin model)
{
return dal.UpdatePassWord(model);

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DAL;
namespace BLL.Admin
{
public class GZXX_UserTable
{
DAL.Admin.GZXX_UserTable dal = new DAL.Admin.GZXX_UserTable();
public bool Exist(string Title)
{
return dal.Exist(Title);

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8B78390D-7D5E-4F03-AEA6-E23ADB42CBD4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BLL</RootNamespace>
<AssemblyName>BLL</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
namespace BLL.Models
{
public class GZXX_Model
{
DAL.Models.GZXX_Model dal = new DAL.Models.GZXX_Model();
public string GetPreStr(string ModelIDFieldName, string ModelID, int infoid, string FieldName, string TableName)

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("BLL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BLL")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\BLL.dll
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\BLL.pdb
C:\Users\gzxx\Desktop\WebApplication\BLL\obj\Debug\BLL.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\WebApplication\BLL\obj\Debug\BLL.dll
C:\Users\gzxx\Desktop\WebApplication\BLL\obj\Debug\BLL.pdb
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\DAL.dll
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\Model.dll
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\DAL.pdb
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\Model.pdb
C:\Users\gzxx\Desktop\WebApplication\BLL\bin\Debug\DBUtility.pdb
D:\数据库\考试系统\WebApplication\BLL\bin\Debug\BLL.dll
D:\数据库\考试系统\WebApplication\BLL\bin\Debug\BLL.pdb
D:\数据库\考试系统\WebApplication\BLL\bin\Debug\DAL.dll
D:\数据库\考试系统\WebApplication\BLL\bin\Debug\Model.dll

@ -0,0 +1,11 @@
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\BLL.dll
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\BLL.pdb
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\DAL.dll
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\Model.dll
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\DAL.pdb
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\Model.pdb
C:\Users\gzxx\Desktop\Eheart\BLL\bin\Release\DBUtility.pdb
C:\Users\gzxx\Desktop\Eheart\BLL\obj\Release\BLL.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\BLL\obj\Release\BLL.dll
C:\Users\gzxx\Desktop\Eheart\BLL\obj\Release\BLL.pdb

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Text;
using DBUtility;
namespace DAL.Admin
{
public class GZXX_Admin
{
public bool UpdatePassWord(Model.Admin.GZXX_Admin model)
{
string sql = "update GZXX_Admin set PassWord = @PassWord where LoginName = @LoginName";

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using DBUtility;
namespace DAL.Admin
{
public class GZXX_UserTable
{
public bool Exist(string Title)
{
SqlParameter[] p = new SqlParameter[] {

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7B49803E-9468-466F-B973-F0BF849830DC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DAL</RootNamespace>
<AssemblyName>DAL</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data;
using System.Text;
using DBUtility;
using System.Collections;
namespace DAL.Models
{
public class GZXX_Model
{
public bool EditModelContent(string TableName, Hashtable ht)
{
string s = "update " + TableName + " set ";

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DAL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DAL")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\DAL.dll
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\DAL.pdb
C:\Users\gzxx\Desktop\WebApplication\DAL\obj\Debug\DAL.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\WebApplication\DAL\obj\Debug\DAL.dll
C:\Users\gzxx\Desktop\WebApplication\DAL\obj\Debug\DAL.pdb
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\Model.dll
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\DBUtility.pdb
C:\Users\gzxx\Desktop\WebApplication\DAL\bin\Debug\Model.pdb
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\DAL.dll
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\DAL.pdb
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\DBUtility.dll
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\Model.dll
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\DBUtility.pdb
D:\数据库\考试系统\WebApplication\DAL\bin\Debug\Model.pdb

@ -0,0 +1,9 @@
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\DAL.dll
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\DAL.pdb
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\Model.dll
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\DBUtility.pdb
C:\Users\gzxx\Desktop\Eheart\DAL\bin\Release\Model.pdb
C:\Users\gzxx\Desktop\Eheart\DAL\obj\Release\DAL.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\DAL\obj\Release\DAL.dll
C:\Users\gzxx\Desktop\Eheart\DAL\obj\Release\DAL.pdb

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Data.OleDb;
namespace DBUtility
{
public enum EffentNextType
{
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD>Ӱ<EFBFBD><D3B0>
/// </summary>
None,
/// <summary>
/// <20><>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ"select count(1) from .."<22><>ʽ<EFBFBD><CABD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ִ<EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڻع<DABB><D8B9><EFBFBD><EFBFBD><EFBFBD>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{26E5E376-B4E7-458F-8285-91E2DEEA0BC5}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DBUtility</RootNamespace>
<AssemblyName>DBUtility</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Data.Common;
using System.Collections.Generic;
namespace DBUtility
{
/// <summary>
/// <20><><EFBFBD>ݷ<EFBFBD><DDB7>ʳ<EFBFBD><CAB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// Copyright (C) 2004-2008 By LiTianPing
/// </summary>
public abstract class DbHelperSQL

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Text.RegularExpressions;
namespace DBUtility
{
public class IPAddress
{
public string IP_Address
{
get
{

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DBUtility")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DBUtility")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Configuration;
namespace DBUtility
{
public class PubConstant
{
/// <summary>
/// <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>
/// </summary>
public static string ConnectionString
{
get
{
string _connectionString = ConfigurationManager.AppSettings["ConnectionString"];

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DBUtility
{
public class RandomPoint
{
public static int[] Point
{
get
{
int[] A = new int[40];
for (int i = 100; i < 140; i++)

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DBUtility
{
public class Tools
{
/// <summary>
/// 产生随机字符串(数字、小写/大写字母)
/// </summary>
/// <param name="length">字符串长度</param>
/// <returns>随机字符串</returns>
public static string GetRandomChar(int length)

@ -0,0 +1,15 @@
C:\Users\gzxx\Desktop\WebApplication\DBUtility\bin\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\WebApplication\DBUtility\bin\Debug\DBUtility.pdb
C:\Users\gzxx\Desktop\WebApplication\DBUtility\obj\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\WebApplication\DBUtility\obj\Debug\DBUtility.pdb
D:\数据库\考试系统\WebApplication\DBUtility\bin\Debug\DBUtility.dll
D:\数据库\考试系统\WebApplication\DBUtility\bin\Debug\DBUtility.pdb
D:\数据库\考试系统\WebApplication\DBUtility\obj\Debug\DBUtility.dll
D:\数据库\考试系统\WebApplication\DBUtility\obj\Debug\DBUtility.pdb
D:\数据库\考试系统\WebApplication\DBUtility\obj\Debug\DBUtility.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\WebApplication\DBUtility\obj\Debug\DBUtility.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\DBUtility\bin\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\DBUtility\bin\Debug\DBUtility.pdb
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Debug\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Debug\DBUtility.pdb
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Debug\DBUtility.csprojResolveAssemblyReference.cache

@ -0,0 +1,5 @@
C:\Users\gzxx\Desktop\Eheart\DBUtility\bin\Release\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\DBUtility\bin\Release\DBUtility.pdb
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Release\DBUtility.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Release\DBUtility.dll
C:\Users\gzxx\Desktop\Eheart\DBUtility\obj\Release\DBUtility.pdb

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model.Admin
{
public class GZXX_Admin
{
private int _id;
private DateTime _adddate;
private DateTime _lastlogintime;
private string _password;
private string _lastloginip;

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2F9C413E-2A60-4EDF-8A05-A31BDA888787}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Model</RootNamespace>
<AssemblyName>Model</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Model")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Model")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
C:\Users\gzxx\Desktop\WebApplication\Model\bin\Debug\Model.dll
C:\Users\gzxx\Desktop\WebApplication\Model\bin\Debug\Model.pdb
C:\Users\gzxx\Desktop\WebApplication\Model\obj\Debug\Model.dll
C:\Users\gzxx\Desktop\WebApplication\Model\obj\Debug\Model.pdb
D:\数据库\考试系统\WebApplication\Model\bin\Debug\Model.dll
D:\数据库\考试系统\WebApplication\Model\bin\Debug\Model.pdb
D:\数据库\考试系统\WebApplication\Model\obj\Debug\Model.dll
D:\数据库\考试系统\WebApplication\Model\obj\Debug\Model.pdb
D:\数据库\考试系统\WebApplication\Model\obj\Debug\Model.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\WebApplication\Model\obj\Debug\Model.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\Model\bin\Debug\Model.dll
C:\Users\gzxx\Desktop\Eheart\Model\bin\Debug\Model.pdb
C:\Users\gzxx\Desktop\Eheart\Model\obj\Debug\Model.dll
C:\Users\gzxx\Desktop\Eheart\Model\obj\Debug\Model.pdb
D:\NewProject\考试系统\Exam\Model\bin\Debug\Model.dll

@ -0,0 +1,5 @@
C:\Users\gzxx\Desktop\Eheart\Model\bin\Release\Model.dll
C:\Users\gzxx\Desktop\Eheart\Model\bin\Release\Model.pdb
C:\Users\gzxx\Desktop\Eheart\Model\obj\Release\Model.csprojResolveAssemblyReference.cache
C:\Users\gzxx\Desktop\Eheart\Model\obj\Release\Model.dll
C:\Users\gzxx\Desktop\Eheart\Model\obj\Release\Model.pdb

@ -0,0 +1,15 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Index.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="WebApplication.About" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script src="Css/jquery.share.min.js"></script>
<link href="Css/share.min.css" rel="stylesheet">
<link href="Css/newCommon.css" rel="stylesheet" />
<script>
window._bd_share_config = { "common": { "bdSnsKey": {}, "bdText": "", "bdMini": "1", "bdMiniList": ["qzone", "tsina", "weixin", "tqq", "tqf", "tieba", "sqq"], "bdPic": "", "bdStyle": "0", "bdSize": "16" }, "share": {} }; with (document) 0[(getElementsByTagName('head')[0] || body).appendChild(createElement('script')).src = 'http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion=' + ~(-new Date() / 36e5)];
function bd_show() {
$(".bdsharebuttonbox").toggle();
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container">

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication
{
public partial class About : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace WebApplication {
public partial class About {
/// <summary>

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript" src="/Admin/js/jquery-1.4.4.min.js"></script>
<link href="/Admin/Css/style.css" rel="stylesheet" />
<script src="../Js/layui/layui.all.js"></script>
<link href="../Js/layui/css/layui.css" rel="stylesheet" />
<script type="text/javascript" charset="utf-8" src="/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="/ueditor/ueditor.all.min.js"> </script>
<!--建议手动加在语言避免在ie下有时因为加载语言失败导致编辑器加载失败-->
<!--这里加载的语言文件会覆盖你在配置项目里添加的语言类型,比如你在配置项目里配置的是英文,这里加载的中文,那最后就是中文-->
<script type="text/javascript" charset="utf-8" src="/ueditor/lang/zh-cn/zh-cn.js"></script>
<style>

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript" src="/Admin/js/jquery-1.4.4.min.js"></script>
<link href="/Admin/Css/style.css" rel="stylesheet" />
<script src="../Js/layui/layui.all.js"></script>
<link href="../Js/layui/css/layui.css" rel="stylesheet" />
<style>
.layui-form-item
{
padding-right:20px;
}
.zdybtn1

@ -0,0 +1,15 @@
.main-content {
height: 100%;
padding:0 20px;
}
.form-group {
border-bottom:1px solid #ccc;
}
.labels {
width: 150px;
display: inline-block;
text-align:right;
padding-right:20px;
line-height:50px;
}
input {

@ -0,0 +1,15 @@
/*-------------------------------------
zTree Style using fontawesome instead of images
version: 1.1
author: Mike King
email: mikkelking @ hotmail . com
website: http://code.google.com/p/jquerytree/
-------------------------------------*/
/* Definitions ----------------------*/
/* End of Definitions ---------------*/
/* Imports -------------------------*/
/* End of Imports ------------------*/
.ztree * {
padding: 0;

@ -0,0 +1,15 @@
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,

@ -0,0 +1,15 @@
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;padding: 0;border: 0;outline: 0;font-weight: inherit;font-style: inherit;font-size: 100%;font-family: inherit;vertical-align: baseline;}
body {color: #2f332a;font: 15px/21px Arial, Helvetica, simsun, sans-serif;background: #f0f6e4 \9;}
h1, h2, h3, h4, h5, h6 {color: #2f332a;font-weight: bold;font-family: Helvetica, Arial, sans-serif;padding-bottom: 5px;}
h1 {font-size: 24px;line-height: 34px;text-align: center;}
h2 {font-size: 14px;line-height: 24px;padding-top: 5px;}
h6 {font-weight: normal;font-size: 12px;letter-spacing: 1px;line-height: 24px;text-align: center;}
a {color:#3C6E31;text-decoration: underline;}
a:hover {}
input.radio {margin: 0 2px 0 8px;}
input.radio.first {margin-left:0;}
input.empty {color: lightgray;}
code {color: #2f332a;}
.highlight_red {color:#A60000;}
.highlight_green {color:#A7F43D;}

@ -0,0 +1,15 @@
@charset "utf-8";
/* CSS Document */
*{
margin:0;
padding:0;
font-family:"微软雅黑";
}
a{
text-decoration:none;
}
li{
list-style:none;
}
.pull-left{
display:inline-block;

@ -0,0 +1,15 @@
@charset "utf-8";
/* CSS Document */
*{
margin:0;
padding:0;
font-family:"微软雅黑";
font-size:14px!important;
}
a{
text-decoration:none;
}
li{
list-style:none;
}
.pull-left{

@ -0,0 +1,15 @@
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;

@ -0,0 +1,15 @@
@font-face {
font-family: 'entypo';
src: url('../font/entypo.eot?71205724');
src: url('../font/entypo.eot?71205724#iefix') format('embedded-opentype'),
url('../font/entypo.woff?71205724') format('woff'),
url('../font/entypo.ttf?71205724') format('truetype'),
url('../font/entypo.svg?71205724#entypo') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/* CSS Document */
/*通用样式*/
*{margin:0;padding:0;word-wrap:break-word;}
@font-face {
font-family: 'HelveticaLT55Roman';
src: url('../fonts/HelveticaLT55Roman.eot');
src: url('../fonts/HelveticaLT55Roman.eot') format('embedded-opentype'),
url('../fonts/HelveticaLT55Roman.woff') format('woff'),
url('../fonts/HelveticaLT55Roman.ttf') format('truetype'),
url('../fonts/HelveticaLT55Roman.svg#HelveticaLT55Roman') format('svg');
}
.bgStretcher-container {
background:url('/Admin/Images/1.jpg') no-repeat center;
background-size:cover;
position:relative;

@ -0,0 +1,15 @@
#mainform {
padding:54px 0 0;
width:100%;
background:url(/images/opacity_bg.png) bottom no-repeat;
background-color:#fcfcfc!important;
overflow-y:auto ;
overflow-x: hidden;
}
a {
cursor: pointer;
}
*{
font-size:14px!important;
}

@ -0,0 +1,15 @@
.navbar-fixed-top {
position: absolute;
width:100%;
}
/*.has-sub {
position: relative;
float:left;
font-size: 14px!important;
padding-right:10px;
padding-left:10px;
}*/
.navbar-nav > li {
position: relative;
float:left;
font-size: 14px!important;

@ -0,0 +1,15 @@
/*-------------------------------------
zTree Style
version: 3.4
author: Hunter.z
email: hunter.z@263.net
website: http://code.google.com/p/jquerytree/
-------------------------------------*/
.ztree * {padding:0; margin:0; font-size:12px; font-family: Verdana, Arial, Helvetica, AppleGothic, sans-serif}
.ztree {margin:0; padding:5px; color:#333}
.ztree li{padding:0; margin:0; list-style:none; line-height:17px; text-align:left; white-space:nowrap; outline:0}
.ztree li ul{ margin:0; padding:0 0 0 18px}
.ztree li ul.line{ background:url(./img/line_conn.png) 0 0 repeat-y;}

@ -0,0 +1,15 @@
@charset "utf-8";
/*
* artDialog skin
* http://code.google.com/p/artdialog/
* (c) 2009-2011 TangBin, http://www.planeArt.cn
*
* This is licensed under the GNU LGPL, version 2.1 or later.
* For details, see: http://creativecommons.org/licenses/LGPL/2.1/
*/
/* common start */
body { _margin:0; _height:100%; /*IE6 BUG*/ }
.aui_outer { text-align:left; background:#FFF; border-radius: 5px; }
table.aui_border, table.aui_dialog { border:0; margin:0; border-collapse:collapse; width:auto; }
.aui_nw, .aui_n, .aui_ne, .aui_w, .aui_c, .aui_e, .aui_sw, .aui_s, .aui_se, .aui_header, .aui_tdIcon, .aui_main, .aui_footer { padding:0; }

@ -0,0 +1,8 @@
*{ margin:0; padding:0; list-style:none;}
a{ text-decoration:none;}
a:hover{ text-decoration:none;}
.tcdPageCode{padding: 15px 20px;text-align: center;color: #ccc; }
.tcdPageCode a{display: inline-block;color: #428bca;display: inline-block;height:34px; line-height: 34px; padding: 0 10px;border: 1px solid #ddd; margin: 0 2px;border-radius: 4px;vertical-align: middle;}
.tcdPageCode a:hover{text-decoration: none;border: 1px solid #13C0AF;}
.tcdPageCode span.current{display: inline-block;height: 34px;line-height: 34px;padding: 0 10px;margin: 0 2px;color: #fff;background-color: #13C0AF; border: 1px solid #13C0AF;border-radius: 4px;vertical-align: middle;}
.tcdPageCode span.disabled{ display: inline-block;height: 34px;line-height: 34px;padding: 0 10px;margin: 0 2px; color: #bfbfbf;background: #f2f2f2;border: 1px solid #bfbfbf;border-radius: 4px;vertical-align: middle;}

@ -0,0 +1,15 @@
.page{
display: none;
}
.tree_about_dang{
width: 100%;
text-align: center;
font-size: 0!important;
}
.tree_about_dang_first{
display: inline-block;
width:90%;
height: 224px;
background: url(/images/card.png) center no-repeat;
background-size: 99% 250px;
padding-top: 26px;

@ -0,0 +1,15 @@
body a {
color: #333;
}
body .profile-info.dropdown .dropdown-menu {
background: #cc100e;
border-color: #cc100e;
}
body .profile-info.dropdown .dropdown-menu > li {
border-bottom-color: transparent;
}
body .profile-info.dropdown .dropdown-menu li a {
color: #f8e0e0;
}
body .profile-info.dropdown .dropdown-menu li a:hover {
background: #891818;

@ -0,0 +1,15 @@
/*通用样式*/
*{margin:0;padding:0;word-wrap:break-word;}
div,ul,li,p,form,table,dt,dl,dd,tr,i,em,b,a,s{padding: 0px; margin: 0px;list-style-type: none;}
@font-face {
font-family: 'HelveticaLT55Roman';
src: url('fonts/HelveticaLT55Roman.eot');
src: url('fonts/HelveticaLT55Roman.eot') format('embedded-opentype'),
url('fonts/HelveticaLT55Roman.woff') format('woff'),
url('fonts/HelveticaLT55Roman.ttf') format('truetype'),
url('fonts/HelveticaLT55Roman.svg#HelveticaLT55Roman') format('svg');
}
.new_button_with_new_bg{
background: url(/images/button_bg.png)no-repeat!important;
background-size: 100% 100%!important;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/images/button_bg.png', sizingMethod='scale');

@ -0,0 +1,15 @@
.tem_control {
height: 32px;
outline: 0;
border: #D1D6D9 solid 1px;
background-color: #fff;
color: #444;
padding-right: 10px;
padding-left: 10px;
}
.tem_labels {
width:100px;
display: inline-block;
}
.tem_tips {

@ -0,0 +1,15 @@
/*-------------------------------------
zTree Style
version: 3.5.19
author: Hunter.z
email: hunter.z@263.net
website: http://code.google.com/p/jquerytree/
-------------------------------------*/
.ztree * {padding:0; margin:0; font-size:12px; font-family: Verdana, Arial, Helvetica, AppleGothic, sans-serif}
.ztree {margin:0; padding:5px; color:#333}
.ztree li{padding:0; margin:0; list-style:none; line-height:14px; text-align:left; white-space:nowrap; outline:0}
.ztree li ul{ margin:0; padding:0 0 0 18px}
.ztree li ul.line{ background:url(./img/line_conn.gif) 0 0 repeat-y;}

@ -0,0 +1,15 @@
/*
* My97 DatePicker 4.8 Beta3
* License: http://www.my97.net/dp/license.asp
*/
var $dp,WdatePicker;(function(){var $={
$langList:[
{name:"en",charset:"UTF-8"},
{name:"zh-cn",charset:"UTF-8"},
{name:"zh-tw",charset:"UTF-8"}],
$skinList:[
{name:"default",charset:"gb2312"},
{name:"whyGreen",charset:"gb2312"},
{name:"blue",charset:"gb2312"},
{name:"blueFresh",charset:"gb2312"},
{name:"twoer",charset:"gb2312"}],

File diff suppressed because one or more lines are too long

@ -0,0 +1,14 @@
var $lang={
errAlertMsg: "Invalid date or the date out of range,redo or not?",
aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],
aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"],
clearStr: "Clear",
todayStr: "Today",
okStr: "OK",
updateStr: "OK",
timeStr: "Time",
quickStr: "Quick Selection",
err_1: 'MinDate Cannot be bigger than MaxDate!'
}

@ -0,0 +1,14 @@
var $lang={
errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?",
aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],
aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],
aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],
aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],
clearStr: "\u6E05\u7A7A",
todayStr: "\u4ECA\u5929",
okStr: "\u786E\u5B9A",
updateStr: "\u786E\u5B9A",
timeStr: "\u65F6\u95F4",
quickStr: "\u5FEB\u901F\u9009\u62E9",
err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!'
}

@ -0,0 +1,14 @@
var $lang={
errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?",
aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],
aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],
aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],
aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],
clearStr: "\u6E05\u7A7A",
todayStr: "\u4ECA\u5929",
okStr: "\u78BA\u5B9A",
updateStr: "\u78BA\u5B9A",
timeStr: "\u6642\u9593",
quickStr: "\u5FEB\u901F\u9078\u64C7",
err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!'
}

@ -0,0 +1,9 @@
.Wdate,.Wdate:hover,.Wdate:focus{
background:#fff url(datePicker.gif) no-repeat right !important;
margin-right:7px;
}
.WdateFmtErr{
font-weight:bold;
color:red;
}

@ -0,0 +1,15 @@
/*
* My97 DatePicker 4.8
*/
.WdateDiv{
width:180px;
background-color:#FFFFFF;
border:#bbb 1px solid;
padding:2px;
}
.WdateDiv2{
width:360px;
}
.WdateDiv *{font-size:9pt;}

@ -0,0 +1,15 @@
/*
* My97 DatePicker 4.8 Skin:whyGreen
*/
.WdateDiv{
width:180px;
background-color:#fff;
border:#C5E1E4 1px solid;
padding:2px;
}
.WdateDiv2{
width:360px;
}
.WdateDiv *{font-size:9pt;}

@ -0,0 +1,15 @@
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
.uploadify {
position: relative;
/*margin-bottom: 1em;*/
}
.uploadify-button {
/*background-color: #505050;
background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);

@ -0,0 +1,15 @@
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
.uploadify {
position: relative;
display: inline-block;
margin-right:10px;
/*margin-bottom: 1em;*/
}
.uploadify-button {
/*background-color: #505050;
background-image: linear-gradient(bottom, #505050 0%, #707070 100%);

@ -0,0 +1,15 @@
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
.uploadify1 {
position: relative;
/*margin-bottom: 1em;*/
}
.uploadify1-button {
/*background-color: #505050;
background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/*
SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
;var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;
if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;
X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);
ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0;}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");
if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)];}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac};
}(),k=function(){if(!M.w3){return;}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f();
}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false);}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);
f();}});if(O==top){(function(){if(J){return;}try{j.documentElement.doScroll("left");}catch(X){setTimeout(arguments.callee,0);return;}f();})();}}if(M.wk){(function(){if(J){return;
}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return;}f();})();}s(f);}}();function f(){if(J){return;}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));
Z.parentNode.removeChild(Z);}catch(aa){return;}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]();}}function K(X){if(J){X();}else{U[U.length]=X;}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false);
}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false);}else{if(typeof O.attachEvent!=D){i(O,"onload",Y);}else{if(typeof O.onload=="function"){var X=O.onload;

@ -0,0 +1,15 @@
/*
Uploadify v3.2.1
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
SWFUpload: http://www.swfupload.org, http://swfupload.googlecode.com
mmSWFUpload 1.0: Flash upload dialog - http://profandesign.se/swfupload/, http://www.vinterwebb.se/
SWFUpload is (c) 2006-2007 Lars Huring, Olov Nilzén and Mammon Media and is released under the MIT License:
http://www.opensource.org/licenses/mit-license.php
SWFUpload 2 is (c) 2007-2008 Jake Roberts and is released under the MIT License:
http://www.opensource.org/licenses/mit-license.php
SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/

@ -0,0 +1,15 @@
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
.uploadify {
position: relative;
/*margin-bottom: 1em;*/
}
.uploadify-button {
/*background-color: #505050;
background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/*
SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
;var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;
if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;
X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);
ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0;}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");
if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)];}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac};
}(),k=function(){if(!M.w3){return;}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f();
}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false);}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);
f();}});if(O==top){(function(){if(J){return;}try{j.documentElement.doScroll("left");}catch(X){setTimeout(arguments.callee,0);return;}f();})();}}if(M.wk){(function(){if(J){return;
}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return;}f();})();}s(f);}}();function f(){if(J){return;}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));
Z.parentNode.removeChild(Z);}catch(aa){return;}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]();}}function K(X){if(J){X();}else{U[U.length]=X;}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false);
}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false);}else{if(typeof O.attachEvent!=D){i(O,"onload",Y);}else{if(typeof O.onload=="function"){var X=O.onload;

@ -0,0 +1,15 @@
/*
Uploadify v3.2.1
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
SWFUpload: http://www.swfupload.org, http://swfupload.googlecode.com
mmSWFUpload 1.0: Flash upload dialog - http://profandesign.se/swfupload/, http://www.vinterwebb.se/
SWFUpload is (c) 2006-2007 Lars Huring, Olov Nilzén and Mammon Media and is released under the MIT License:
http://www.opensource.org/licenses/mit-license.php
SWFUpload 2 is (c) 2007-2008 Jake Roberts and is released under the MIT License:
http://www.opensource.org/licenses/mit-license.php
SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/

@ -0,0 +1,15 @@
/*
Background Stretcher jQuery Plugin
?2011 ajaxBlender.com
For any questions please visit www.ajaxblender.com
or email us at support@ajaxblender.com
Version: 2.0.1
*/
;(function($){
/* Variables */
var container = null;
var allLIs = '', containerStr = '';
var element = this;

@ -0,0 +1,15 @@
@CHARSET "UTF-8";
form{ font-size:84%; margin:0; line-height:1.5; color:#333; font-family:Arial, sans-serif;}
a{color:#34538b; text-decoration:none;}a:hover{text-decoration:underline;}
input,select,textarea{font-size:100%;}
#header{height:60px; padding:0 0 0 40px;}
#header .logo{margin-top:12px; overflow:hidden; float:left;}
#main{width:100%; background:#beceeb; overflow:hidden;}
#main h1{line-height:40px; margin:0; text-align:center; font-size:1.3em; background:#c1d5eb; font-family:'楷体','微软雅黑'; text-shadow:0px 1px 0px #f2f2f2;}
#body{padding:0; overflow:hidden;}
#body .part{width:50%; min-height:500px; _height:500px; background:white;}
#code{float:left; margin-left:-1px; margin-bottom:-999em; padding-bottom:999em;}
#effect{float:right; margin-right:-1px; margin-bottom:-999em; padding-bottom:999em;}
#body h3{line-height:30px; margin:0; font-size:1.1em; background:#f0f3f9; padding-left:10px; border-bottom:1px solid #ededed; color:#4e4e4e; text-shadow:0px 1px 0px white;}
#footer{line-height:1.3; padding:15px 0; border-top:1px solid #486aaa; font-family:'Lucida Grande',Verdana, Sans-Serif; text-align:center; text-shadow:1px 1px #cad5eb;}
#footer:before{display:block; height:1px; content:'.'; background-color:#909BAF; color:#aaa; overflow:hidden; position:relative; top:-15px;}

@ -0,0 +1,15 @@
/*!
* jQuery JavaScript Library v1.7.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: Wed Mar 21 12:46:34 2012 -0700
*/

@ -0,0 +1,15 @@
/*
* zyFile.js 基于HTML5 文件上传的核心脚本 http://www.czlqibu.com
* by zhangyan 2014-06-21 QQ : 623585268
*/
var ZYFILE = {
fileInput : null, // 选择文件按钮dom对象
uploadInput : null, // 上传文件按钮dom对象
dragDrop: null, //拖拽敏感区域
url : "", // 上传action路径
uploadFile : [], // 需要上传的文件数组
lastUploadFile : [], // 上一次选择的文件数组,方便继续上传使用
perUploadFile : [], // 存放永久的文件数组,方便删除使用
fileNum : 0, // 代表文件总个数,因为涉及到继续添加,所以下一次添加需要在它的基础上添加索引
/* 提供给外部的接口 */

@ -0,0 +1,15 @@
(function ($) {
$.Jcrop = function (obj, opt) {
var obj = obj, opt = opt; if (typeof (obj) !== "object") { obj = $(obj)[0] } if (typeof (opt) !== "object") { opt = {} } if (!("trackDocument" in opt)) { opt.trackDocument = $.browser.msie ? false : true; if ($.browser.msie && $.browser.version.split(".")[0] == "8") { opt.trackDocument = true } } if (!("keySupport" in opt)) { opt.keySupport = $.browser.msie ? false : true } var defaults = { trackDocument: false, baseClass: "jcrop", addClass: null, bgColor: "black", bgOpacity: 0.6, borderOpacity: 0.4, handleOpacity: 0.5, handlePad: 5, handleSize: 9, handleOffset: 5, edgeMargin: 14, aspectRatio: 0, keySupport: true, cornerHandles: true, sideHandles: true, drawBorders: true, dragEdges: true, boxWidth: 0, boxHeight: 0, boundary: 8, animationDelay: 20, swingSpeed: 3, allowSelect: true, allowMove: true, allowResize: true, minSelect: [0, 0], maxSize: [0, 0], minSize: [0, 0], onChange: function () { }, onSelect: function () { } }; var options = defaults; setOptions(opt); var $origimg = $(obj); var $img = $origimg.clone().removeAttr("id").css({ position: "absolute" }); $img.width($origimg.width()); $img.height($origimg.height()); $origimg.after($img).hide(); presize($img, options.boxWidth, options.boxHeight); var boundx = $img.width(), boundy = $img.height(), $div = $("<div />").width(boundx).height(boundy).addClass(cssClass("holder")).css({ position: "relative", backgroundColor: options.bgColor }).insertAfter($origimg).append($img); if (options.addClass) { $div.addClass(options.addClass) } var $img2 = $("<img />").attr("src", $img.attr("src")).css("position", "absolute").width(boundx).height(boundy); var $img_holder = $("<div />").width(pct(100)).height(pct(100)).css({ zIndex: 310, position: "absolute", overflow: "hidden" }).append($img2); var $hdl_holder = $("<div />").width(pct(100)).height(pct(100)).css("zIndex", 320); var $sel = $("<div />").css({ position: "absolute", zIndex: 300 }).insertBefore($img).append($img_holder, $hdl_holder); var bound = options.boundary; var $trk = newTracker().width(boundx + (bound * 2)).height(boundy + (bound * 2)).css({ position: "absolute", top: px(-bound), left: px(-bound), zIndex: 290 }).mousedown(newSelection); var xlimit, ylimit, xmin, ymin;
var xscale, yscale, enabled = true; var docOffset = getPos($img), btndown, lastcurs, dimmed, animating, shift_down; var Coords = function () {
var x1 = 0, y1 = 0, x2 = 0, y2 = 0, ox, oy; function setPressed(pos) { var pos = rebound(pos); x2 = x1 = pos[0]; y2 = y1 = pos[1] } function setCurrent(pos) { var pos = rebound(pos); ox = pos[0] - x2; oy = pos[1] - y2; x2 = pos[0]; y2 = pos[1] } function getOffset() { return [ox, oy] } function moveOffset(offset) { var ox = offset[0], oy = offset[1]; if (0 > x1 + ox) { ox -= ox + x1 } if (0 > y1 + oy) { oy -= oy + y1 } if (boundy < y2 + oy) { oy += boundy - (y2 + oy) } if (boundx < x2 + ox) { ox += boundx - (x2 + ox) } x1 += ox; x2 += ox; y1 += oy; y2 += oy } function getCorner(ord) { var c = getFixed(); switch (ord) { case "ne": return [c.x2, c.y]; case "nw": return [c.x, c.y]; case "se": return [c.x2, c.y2]; case "sw": return [c.x, c.y2] } } function getFixed() { if (!options.aspectRatio) { return getRect() } var aspect = options.aspectRatio, min_x = options.minSize[0] / xscale, min_y = options.minSize[1] / yscale, max_x = options.maxSize[0] / xscale, max_y = options.maxSize[1] / yscale, rw = x2 - x1, rh = y2 - y1, rwa = Math.abs(rw), rha = Math.abs(rh), real_ratio = rwa / rha, xx, yy; if (max_x == 0) { max_x = boundx * 10 } if (max_y == 0) { max_y = boundy * 10 } if (real_ratio < aspect) { yy = y2; w = rha * aspect; xx = rw < 0 ? x1 - w : w + x1; if (xx < 0) { xx = 0; h = Math.abs((xx - x1) / aspect); yy = rh < 0 ? y1 - h : h + y1 } else { if (xx > boundx) { xx = boundx; h = Math.abs((xx - x1) / aspect); yy = rh < 0 ? y1 - h : h + y1 } } } else { xx = x2; h = rwa / aspect; yy = rh < 0 ? y1 - h : y1 + h; if (yy < 0) { yy = 0; w = Math.abs((yy - y1) * aspect); xx = rw < 0 ? x1 - w : w + x1 } else { if (yy > boundy) { yy = boundy; w = Math.abs(yy - y1) * aspect; xx = rw < 0 ? x1 - w : w + x1 } } } if (xx > x1) { if (xx - x1 < min_x) { xx = x1 + min_x } else { if (xx - x1 > max_x) { xx = x1 + max_x } } if (yy > y1) { yy = y1 + (xx - x1) / aspect } else { yy = y1 - (xx - x1) / aspect } } else { if (xx < x1) { if (x1 - xx < min_x) { xx = x1 - min_x } else { if (x1 - xx > max_x) { xx = x1 - max_x } } if (yy > y1) { yy = y1 + (x1 - xx) / aspect } else { yy = y1 - (x1 - xx) / aspect } } } if (xx < 0) { x1 -= xx; xx = 0 } else { if (xx > boundx) { x1 -= xx - boundx; xx = boundx } } if (yy < 0) { y1 -= yy; yy = 0 } else { if (yy > boundy) { y1 -= yy - boundy; yy = boundy } } return last = makeObj(flipCoords(x1, y1, xx, yy)) } function rebound(p) {
if (p[0] < 0) { p[0] = 0 } if (p[1] < 0) { p[1] = 0 } if (p[0] > boundx) { p[0] = boundx } if (p[1] > boundy) { p[1] = boundy } return [p[0], p[1]]
} function flipCoords(x1, y1, x2, y2) { var xa = x1, xb = x2, ya = y1, yb = y2; if (x2 < x1) { xa = x2; xb = x1 } if (y2 < y1) { ya = y2; yb = y1 } return [Math.round(xa), Math.round(ya), Math.round(xb), Math.round(yb)] } function getRect() { var xsize = x2 - x1; var ysize = y2 - y1; if (xlimit && (Math.abs(xsize) > xlimit)) { x2 = (xsize > 0) ? (x1 + xlimit) : (x1 - xlimit) } if (ylimit && (Math.abs(ysize) > ylimit)) { y2 = (ysize > 0) ? (y1 + ylimit) : (y1 - ylimit) } if (ymin && (Math.abs(ysize) < ymin)) { y2 = (ysize > 0) ? (y1 + ymin) : (y1 - ymin) } if (xmin && (Math.abs(xsize) < xmin)) { x2 = (xsize > 0) ? (x1 + xmin) : (x1 - xmin) } if (x1 < 0) { x2 -= x1; x1 -= x1 } if (y1 < 0) { y2 -= y1; y1 -= y1 } if (x2 < 0) { x1 -= x2; x2 -= x2 } if (y2 < 0) { y1 -= y2; y2 -= y2 } if (x2 > boundx) { var delta = x2 - boundx; x1 -= delta; x2 -= delta } if (y2 > boundy) { var delta = y2 - boundy; y1 -= delta; y2 -= delta } if (x1 > boundx) { var delta = x1 - boundy; y2 -= delta; y1 -= delta } if (y1 > boundy) { var delta = y1 - boundy; y2 -= delta; y1 -= delta } return makeObj(flipCoords(x1, y1, x2, y2)) } function makeObj(a) { return { x: a[0], y: a[1], x2: a[2], y2: a[3], w: a[2] - a[0], h: a[3] - a[1] } } return { flipCoords: flipCoords, setPressed: setPressed, setCurrent: setCurrent, getOffset: getOffset, moveOffset: moveOffset, getCorner: getCorner, getFixed: getFixed }
}(); var Selection = function () {
var start, end, dragmode, awake, hdep = 370; var borders = {}; var handle = {}; var seehandles = false; var hhs = options.handleOffset; if (options.drawBorders) { borders = { top: insertBorder("hline").css("top", $.browser.msie ? px(-1) : px(0)), bottom: insertBorder("hline"), left: insertBorder("vline"), right: insertBorder("vline") } } if (options.dragEdges) { handle.t = insertDragbar("n"); handle.b = insertDragbar("s"); handle.r = insertDragbar("e"); handle.l = insertDragbar("w") } options.sideHandles && createHandles(["n", "s", "e", "w"]); options.cornerHandles && createHandles(["sw", "nw", "ne", "se"]); function insertBorder(type) { var jq = $("<div />").css({ position: "absolute", opacity: options.borderOpacity }).addClass(cssClass(type)); $img_holder.append(jq); return jq } function dragDiv(ord, zi) { var jq = $("<div />").mousedown(createDragger(ord)).css({ cursor: ord + "-resize", position: "absolute", zIndex: zi }); $hdl_holder.append(jq); return jq } function insertHandle(ord) {
return dragDiv(ord, hdep++).css({ top: px(-hhs + 1), left: px(-hhs + 1), opacity: options.handleOpacity }).addClass(cssClass("handle"))
} function insertDragbar(ord) { var s = options.handleSize, o = hhs, h = s, w = s, t = o, l = o; switch (ord) { case "n": case "s": w = pct(100); break; case "e": case "w": h = pct(100); break } return dragDiv(ord, hdep++).width(w).height(h).css({ top: px(-t + 1), left: px(-l + 1) }) } function createHandles(li) { for (i in li) { handle[li[i]] = insertHandle(li[i]) } } function moveHandles(c) { var midvert = Math.round((c.h / 2) - hhs), midhoriz = Math.round((c.w / 2) - hhs), north = west = -hhs + 1, east = c.w - hhs, south = c.h - hhs, x, y; "e" in handle && handle.e.css({ top: px(midvert), left: px(east) }) && handle.w.css({ top: px(midvert) }) && handle.s.css({ top: px(south), left: px(midhoriz) }) && handle.n.css({ left: px(midhoriz) }); "ne" in handle && handle.ne.css({ left: px(east) }) && handle.se.css({ top: px(south), left: px(east) }) && handle.sw.css({ top: px(south) }); "b" in handle && handle.b.css({ top: px(south) }) && handle.r.css({ left: px(east) }) } function moveto(x, y) { $img2.css({ top: px(-y), left: px(-x) }); $sel.css({ top: px(y), left: px(x) }) } function resize(w, h) { $sel.width(w).height(h) } function refresh() { var c = Coords.getFixed(); Coords.setPressed([c.x, c.y]); Coords.setCurrent([c.x2, c.y2]); updateVisible() } function updateVisible() { if (awake) { return update() } } function update() { var c = Coords.getFixed(); resize(c.w, c.h); moveto(c.x, c.y); options.drawBorders && borders["right"].css({ left: px(c.w - 1) }) && borders["bottom"].css({ top: px(c.h - 1) }); seehandles && moveHandles(c); awake || show(); options.onChange(unscale(c)) } function show() { $sel.show(); $img.css("opacity", options.bgOpacity); awake = true } function release() { disableHandles(); $sel.hide(); $img.css("opacity", 1); awake = false } function showHandles() { if (seehandles) { moveHandles(Coords.getFixed()); $hdl_holder.show() } } function enableHandles() { seehandles = true; if (options.allowResize) { moveHandles(Coords.getFixed()); $hdl_holder.show(); return true } } function disableHandles() { seehandles = false; $hdl_holder.hide() } function animMode(v) { (animating = v) ? disableHandles() : enableHandles() } function done() { animMode(false); refresh() } var $track = newTracker().mousedown(createDragger("move")).css({ cursor: "move", position: "absolute", zIndex: 360 });
$img_holder.append($track); disableHandles(); return { updateVisible: updateVisible, update: update, release: release, refresh: refresh, setCursor: function (cursor) { $track.css("cursor", cursor) }, enableHandles: enableHandles, enableOnly: function () { seehandles = true }, showHandles: showHandles, disableHandles: disableHandles, animMode: animMode, done: done }
}(); var Tracker = function () { var onMove = function () { }, onDone = function () { }, trackDoc = options.trackDocument; if (!trackDoc) { $trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp) } function toFront() { $trk.css({ zIndex: 450 }); if (trackDoc) { $(document).mousemove(trackMove).mouseup(trackUp) } } function toBack() { $trk.css({ zIndex: 290 }); if (trackDoc) { $(document).unbind("mousemove", trackMove).unbind("mouseup", trackUp) } } function trackMove(e) { onMove(mouseAbs(e)) } function trackUp(e) { e.preventDefault(); e.stopPropagation(); if (btndown) { btndown = false; onDone(mouseAbs(e)); options.onSelect(unscale(Coords.getFixed())); toBack(); onMove = function () { }; onDone = function () { } } return false } function activateHandlers(move, done) { btndown = true; onMove = move; onDone = done; toFront(); return false } function setCursor(t) { $trk.css("cursor", t) } $img.before($trk); return { activateHandlers: activateHandlers, setCursor: setCursor } }(); var KeyManager = function () {
var $keymgr = $('<input type="radio" />').css({ position: "absolute", left: "-30px" }).keypress(parseKey).blur(onBlur), $keywrap = $("<div />").css({ position: "absolute", overflow: "hidden" }).append($keymgr); function watchKeys() { if (options.keySupport) { $keymgr.show(); $keymgr.focus() } } function onBlur(e) { $keymgr.hide() } function doNudge(e, x, y) { if (options.allowMove) { Coords.moveOffset([x, y]); Selection.updateVisible() } e.preventDefault(); e.stopPropagation() } function parseKey(e) {

@ -0,0 +1,15 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["echarts"] = factory();
else
root["echarts"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
/*!
* artDialog iframeTools
* Date: 2011-11-25 13:54
* http://code.google.com/p/artdialog/
* (c) 2009-2011 TangBin, http://www.planeArt.cn
*
* This is licensed under the GNU LGPL, version 2.1 or later.
* For details, see: http://creativecommons.org/licenses/LGPL/2.1/
*/
;(function ($, window, artDialog, undefined) {
var _topDialog, _proxyDialog, _zIndex,
_data = '@ARTDIALOG.DATA',
_open = '@ARTDIALOG.OPEN',

@ -0,0 +1,15 @@
function ZsqAlert(msg,icon)
{
layer.alert(msg, { icon: icon, kin: 'layer-ext-moon', closeBtn: 0, success: function () { $(':focus').blur(); } });
}
function ZsqAlertCloseAll(msg, icon) {
layer.alert(msg, { icon: icon, kin: 'layer-ext-moon', closeBtn: 0, success: function () { $(':focus').blur(); } }, function () {
layer.closeAll();
});
}
function ZsqAlertUrl(msg, icon, url)
{
var index = layer.alert(msg, { icon: icon, kin: 'layer-ext-moon', closeBtn: 0 }, function () {

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
*/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
//分页插件
/**
ch
**/
(function ($) {
var ms = {
init: function (obj, args) {
return (function () {
ms.fillHtml(obj, args);
ms.bindEvent(obj, args);
})();
},
//填充html
fillHtml: function (obj, args) {
return (function () {

@ -0,0 +1,15 @@
/*
* JQuery zTree core v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function ($) {
var settings = {}, roots = {}, caches = {},

@ -0,0 +1,15 @@
/*
* JQuery zTree core v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(q){var H,I,J,K,L,M,u,r={},v={},w={},N={treeId:"",treeObj:null,view:{addDiyDom:null,autoCancelSelected:!0,dblClickExpand:!0,expandSpeed:"fast",fontCss:{},nameIsHTML:!1,selectedMulti:!0,showIcon:!0,showLine:!0,showTitle:!0,txtSelectedEnable:!1},data:{key:{children:"children",name:"name",title:"",url:"url",icon:"icon"},simpleData:{enable:!1,idKey:"id",pIdKey:"pId",rootPId:null},keep:{parent:!1,leaf:!1}},async:{enable:!1,contentType:"application/x-www-form-urlencoded",type:"post",dataType:"text",
url:"",autoParam:[],otherParam:[],dataFilter:null},callback:{beforeAsync:null,beforeClick:null,beforeDblClick:null,beforeRightClick:null,beforeMouseDown:null,beforeMouseUp:null,beforeExpand:null,beforeCollapse:null,beforeRemove:null,onAsyncError:null,onAsyncSuccess:null,onNodeCreated:null,onClick:null,onDblClick:null,onRightClick:null,onMouseDown:null,onMouseUp:null,onExpand:null,onCollapse:null,onRemove:null}},x=[function(b){var a=b.treeObj,c=f.event;a.bind(c.NODECREATED,function(a,c,g){j.apply(b.callback.onNodeCreated,

@ -0,0 +1,15 @@
/*
* JQuery zTree core v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function ($) {
var settings = {}, roots = {}, caches = {},
//default consts of core

@ -0,0 +1,15 @@
/*
* JQuery zTree core v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(q){var H,I,J,K,L,M,u,r={},v={},w={},N={treeId:"",treeObj:null,view:{addDiyDom:null,autoCancelSelected:!0,dblClickExpand:!0,expandSpeed:"fast",fontCss:{},nameIsHTML:!1,selectedMulti:!0,showIcon:!0,showLine:!0,showTitle:!0,txtSelectedEnable:!1},data:{key:{children:"children",name:"name",title:"",url:"url",icon:"icon"},simpleData:{enable:!1,idKey:"id",pIdKey:"pId",rootPId:null},keep:{parent:!1,leaf:!1}},async:{enable:!1,contentType:"application/x-www-form-urlencoded",type:"post",dataType:"text",
url:"",autoParam:[],otherParam:[],dataFilter:null},callback:{beforeAsync:null,beforeClick:null,beforeDblClick:null,beforeRightClick:null,beforeMouseDown:null,beforeMouseUp:null,beforeExpand:null,beforeCollapse:null,beforeRemove:null,onAsyncError:null,onAsyncSuccess:null,onNodeCreated:null,onClick:null,onDblClick:null,onRightClick:null,onMouseDown:null,onMouseUp:null,onExpand:null,onCollapse:null,onRemove:null}},x=[function(b){var a=b.treeObj,c=f.event;a.bind(c.NODECREATED,function(a,c,g){j.apply(b.callback.onNodeCreated,
[a,c,g])});a.bind(c.CLICK,function(a,c,g,l,h){j.apply(b.callback.onClick,[c,g,l,h])});a.bind(c.EXPAND,function(a,c,g){j.apply(b.callback.onExpand,[a,c,g])});a.bind(c.COLLAPSE,function(a,c,g){j.apply(b.callback.onCollapse,[a,c,g])});a.bind(c.ASYNC_SUCCESS,function(a,c,g,l){j.apply(b.callback.onAsyncSuccess,[a,c,g,l])});a.bind(c.ASYNC_ERROR,function(a,c,g,l,h,f){j.apply(b.callback.onAsyncError,[a,c,g,l,h,f])});a.bind(c.REMOVE,function(a,c,g){j.apply(b.callback.onRemove,[a,c,g])});a.bind(c.SELECTED,

@ -0,0 +1,15 @@
/*
* JQuery zTree excheck v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function($){
//default consts of excheck
var _consts = {

@ -0,0 +1,15 @@
/*
* JQuery zTree excheck v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(m){var p,q,r,o={event:{CHECK:"ztree_check"},id:{CHECK:"_check"},checkbox:{STYLE:"checkbox",DEFAULT:"chk",DISABLED:"disable",FALSE:"false",TRUE:"true",FULL:"full",PART:"part",FOCUS:"focus"},radio:{STYLE:"radio",TYPE_ALL:"all",TYPE_LEVEL:"level"}},v={check:{enable:!1,autoCheckTrigger:!1,chkStyle:o.checkbox.STYLE,nocheckInherit:!1,chkDisabledInherit:!1,radioType:o.radio.TYPE_LEVEL,chkboxType:{Y:"ps",N:"ps"}},data:{key:{checked:"checked"}},callback:{beforeCheck:null,onCheck:null}};p=function(c,
a){if(a.chkDisabled===!0)return!1;var b=g.getSetting(c.data.treeId),d=b.data.key.checked;if(k.apply(b.callback.beforeCheck,[b.treeId,a],!0)==!1)return!0;a[d]=!a[d];e.checkNodeRelation(b,a);d=n(a,j.id.CHECK,b);e.setChkClass(b,d,a);e.repairParentChkClassWithSelf(b,a);b.treeObj.trigger(j.event.CHECK,[c,b.treeId,a]);return!0};q=function(c,a){if(a.chkDisabled===!0)return!1;var b=g.getSetting(c.data.treeId),d=n(a,j.id.CHECK,b);a.check_Focus=!0;e.setChkClass(b,d,a);return!0};r=function(c,a){if(a.chkDisabled===
!0)return!1;var b=g.getSetting(c.data.treeId),d=n(a,j.id.CHECK,b);a.check_Focus=!1;e.setChkClass(b,d,a);return!0};m.extend(!0,m.fn.zTree.consts,o);m.extend(!0,m.fn.zTree._z,{tools:{},view:{checkNodeRelation:function(c,a){var b,d,h,i=c.data.key.children,l=c.data.key.checked;b=j.radio;if(c.check.chkStyle==b.STYLE){var f=g.getRadioCheckedList(c);if(a[l])if(c.check.radioType==b.TYPE_ALL){for(d=f.length-1;d>=0;d--)b=f[d],b[l]&&b!=a&&(b[l]=!1,f.splice(d,1),e.setChkClass(c,n(b,j.id.CHECK,c),b),b.parentTId!=

@ -0,0 +1,15 @@
/*
* JQuery zTree exedit v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function($){
//default consts of exedit
var _consts = {

@ -0,0 +1,15 @@
/*
* JQuery zTree exedit v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(v){var J={event:{DRAG:"ztree_drag",DROP:"ztree_drop",RENAME:"ztree_rename",DRAGMOVE:"ztree_dragmove"},id:{EDIT:"_edit",INPUT:"_input",REMOVE:"_remove"},move:{TYPE_INNER:"inner",TYPE_PREV:"prev",TYPE_NEXT:"next"},node:{CURSELECTED_EDIT:"curSelectedNode_Edit",TMPTARGET_TREE:"tmpTargetzTree",TMPTARGET_NODE:"tmpTargetNode"}},x={onHoverOverNode:function(b,a){var c=m.getSetting(b.data.treeId),d=m.getRoot(c);if(d.curHoverNode!=a)x.onHoverOutNode(b);d.curHoverNode=a;f.addHoverDom(c,a)},onHoverOutNode:function(b){var b=
m.getSetting(b.data.treeId),a=m.getRoot(b);if(a.curHoverNode&&!m.isSelectedNode(b,a.curHoverNode))f.removeTreeDom(b,a.curHoverNode),a.curHoverNode=null},onMousedownNode:function(b,a){function c(b){if(B.dragFlag==0&&Math.abs(O-b.clientX)<e.edit.drag.minMoveSize&&Math.abs(P-b.clientY)<e.edit.drag.minMoveSize)return!0;var a,c,n,k,i;i=e.data.key.children;M.css("cursor","pointer");if(B.dragFlag==0){if(g.apply(e.callback.beforeDrag,[e.treeId,l],!0)==!1)return r(b),!0;for(a=0,c=l.length;a<c;a++){if(a==0)B.dragNodeShowBefore=
[];n=l[a];n.isParent&&n.open?(f.expandCollapseNode(e,n,!n.open),B.dragNodeShowBefore[n.tId]=!0):B.dragNodeShowBefore[n.tId]=!1}B.dragFlag=1;t.showHoverDom=!1;g.showIfameMask(e,!0);n=!0;k=-1;if(l.length>1){var j=l[0].parentTId?l[0].getParentNode()[i]:m.getNodes(e);i=[];for(a=0,c=j.length;a<c;a++)if(B.dragNodeShowBefore[j[a].tId]!==void 0&&(n&&k>-1&&k+1!==a&&(n=!1),i.push(j[a]),k=a),l.length===i.length){l=i;break}}n&&(I=l[0].getPreNode(),R=l[l.length-1].getNextNode());D=o("<ul class='zTreeDragUL'></ul>",

@ -0,0 +1,15 @@
/*
* JQuery zTree exHideNodes v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function($){
//default init node of exLib
var _initNode = function(setting, level, n, parentNode, isFirstNode, isLastNode, openFlag) {

@ -0,0 +1,15 @@
/*
* JQuery zTree exHideNodes v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(i){i.extend(!0,i.fn.zTree._z,{view:{clearOldFirstNode:function(c,a){for(var b=a.getNextNode();b;){if(b.isFirstNode){b.isFirstNode=!1;d.setNodeLineIcos(c,b);break}if(b.isLastNode)break;b=b.getNextNode()}},clearOldLastNode:function(c,a,b){for(a=a.getPreNode();a;){if(a.isLastNode){a.isLastNode=!1;b&&d.setNodeLineIcos(c,a);break}if(a.isFirstNode)break;a=a.getPreNode()}},makeDOMNodeMainBefore:function(c,a,b){c.push("<li ",b.isHidden?"style='display:none;' ":"","id='",b.tId,"' class='",l.className.LEVEL,
b.level,"' tabindex='0' hidefocus='true' treenode>")},showNode:function(c,a){a.isHidden=!1;f.initShowForExCheck(c,a);j(a,c).show()},showNodes:function(c,a,b){if(a&&a.length!=0){var e={},g,k;for(g=0,k=a.length;g<k;g++){var h=a[g];if(!e[h.parentTId]){var i=h.getParentNode();e[h.parentTId]=i===null?f.getRoot(c):h.getParentNode()}d.showNode(c,h,b)}for(var j in e)a=e[j][c.data.key.children],d.setFirstNodeForShow(c,a),d.setLastNodeForShow(c,a)}},hideNode:function(c,a){a.isHidden=!0;a.isFirstNode=!1;a.isLastNode=
!1;f.initHideForExCheck(c,a);d.cancelPreSelectedNode(c,a);j(a,c).hide()},hideNodes:function(c,a,b){if(a&&a.length!=0){var e={},g,k;for(g=0,k=a.length;g<k;g++){var h=a[g];if((h.isFirstNode||h.isLastNode)&&!e[h.parentTId]){var i=h.getParentNode();e[h.parentTId]=i===null?f.getRoot(c):h.getParentNode()}d.hideNode(c,h,b)}for(var j in e)a=e[j][c.data.key.children],d.setFirstNodeForHide(c,a),d.setLastNodeForHide(c,a)}},setFirstNode:function(c,a){var b=c.data.key.children,e=a[b].length;e>0&&!a[b][0].isHidden?

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save