php中文网 | cnphp.com

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 231|回复: 0

PHP网站备案查询系统源码 v1.1

[复制链接]

2573

主题

2580

帖子

9105

积分

管理员

Rank: 9Rank: 9Rank: 9

UID
1
威望
0
积分
6410
贡献
0
注册时间
2021-4-14
最后登录
2024-3-29
在线时间
654 小时
QQ
发表于 2023-3-27 19:22:57 | 显示全部楼层 |阅读模式
【代码名称】:PHP网站备案查询系统源码 v1.1

【代码介绍】:PHP网站备案查询系统源码 v1.1

【代码截图】:更新说明:

修复重置更新报错BUG

安装说明

放到网站网站根目录

访问http://你的网址/install.php

然后配置网站服务器伪静态,警告必须配置伪静态不然无法访问

演示站点:https://icp.mgtv.xyz

【核心代码】


.
├── Lib
│   ├── Admin
│   │   ├── Action
│   │   │   ├── AdminAction.class.php
│   │   │   ├── IndexAction.class.php
│   │   │   ├── InstallAction.class.php
│   │   │   └── LoginAction.class.php
│   │   └── Common
│   │       └── function.php
│   ├── Common
│   │   ├── Action
│   │   │   ├── AllAction.class.php
│   │   │   ├── BaseAction.class.php
│   │   │   └── HomeAction.class.php
│   │   ├── Common
│   │   │   ├── con_common.php
│   │   │   └── function.php
│   │   └── Model
│   │       └── AdminModel.class.php
│   ├── Conf
│   │   ├── config.php
│   │   ├── debug.php
│   │   ├── pinyin.dat
│   │   ├── tags.php
│   │   └── ueditor.json
│   ├── Home
│   │   └── Action
│   │       ├── IcpAction.class.php
│   │       └── IndexAction.class.php
│   ├── Lang
│   │   └── zh-cn.php
│   ├── Plus
│   │   ├── Action
│   │   │   ├── DswinAction.class.php
│   │   │   ├── MyAction.class.php
│   │   │   ├── SearchAction.class.php
│   │   │   └── TaglistAction.class.php
│   │   └── Common
│   │       └── function.php
│   └── ThinkPHP
│       ├── Common
│       │   ├── build.php
│       │   └── functions.php
│       ├── Conf
│       │   ├── Mode
│       │   │   ├── common.php
│       │   │   └── sae.php
│       │   ├── convention.php
│       │   ├── convention_sae.php
│       │   └── debug.php
│       ├── LICENSE.txt
│       ├── Lang
│       │   ├── en-us.php
│       │   ├── pt-br.php
│       │   ├── zh-cn.php
│       │   └── zh-tw.php
│       ├── Library
│       │   ├── Behavior
│       │   │   ├── AgentCheckBehavior.class.php
│       │   │   ├── BorisBehavior.class.php
│       │   │   ├── BrowserCheckBehavior.class.php
│       │   │   ├── BuildLiteBehavior.class.php
│       │   │   ├── CheckActionRouteBehavior.class.php
│       │   │   ├── CheckLangBehavior.class.php
│       │   │   ├── ChromeShowPageTraceBehavior.class.php
│       │   │   ├── ContentReplaceBehavior.class.php
│       │   │   ├── CronRunBehavior.class.php
│       │   │   ├── FireShowPageTraceBehavior.class.php
│       │   │   ├── ParseTemplateBehavior.class.php
│       │   │   ├── ReadHtmlCacheBehavior.class.php
│       │   │   ├── RobotCheckBehavior.class.php
│       │   │   ├── ShowPageTraceBehavior.class.php
│       │   │   ├── ShowRuntimeBehavior.class.php
│       │   │   ├── TokenBuildBehavior.class.php
│       │   │   ├── UpgradeNoticeBehavior.class.php
│       │   │   └── WriteHtmlCacheBehavior.class.php
│       │   ├── Org
│       │   │   ├── Net
│       │   │   │   ├── Code.class.php
│       │   │   │   ├── Curl.class.php
│       │   │   │   ├── Dir.class.php
│       │   │   │   ├── Ftp.class.php
│       │   │   │   ├── Http.class.php
│       │   │   │   ├── IpLocation.class.php
│       │   │   │   ├── QireCaiji.class.php
│       │   │   │   ├── UploadFile.class.php
│       │   │   │   └── VideoCaiji.class.php
│       │   │   └── Util
│       │   │       ├── AlipayNotify.class.php
│       │   │       ├── AlipaySubmit.class.php
│       │   │       ├── ArrayList.class.php
│       │   │       ├── CodeSwitch.class.php
│       │   │       ├── Date.class.php
│       │   │       ├── Rbac.class.php
│       │   │       ├── Stack.class.php
│       │   │       ├── String.class.php
│       │   │       └── Ueditor.class.php
│       │   ├── Think
│       │   │   ├── App.class.php
│       │   │   ├── Auth.class.php
│       │   │   ├── Behavior.class.php
│       │   │   ├── Build.class.php
│       │   │   ├── Cache
│       │   │   │   └── Driver
│       │   │   │       ├── Apachenote.class.php
│       │   │   │       ├── Apc.class.php
│       │   │   │       ├── Db.class.php
│       │   │   │       ├── Eaccelerator.class.php
│       │   │   │       ├── File.class.php
│       │   │   │       ├── Memcache.class.php
│       │   │   │       ├── Memcached.class.php
│       │   │   │       ├── Memcachesae.class.php
│       │   │   │       ├── Redis.class.php
│       │   │   │       ├── Shmop.class.php
│       │   │   │       ├── Sqlite.class.php
│       │   │   │       ├── Wincache.class.php
│       │   │   │       └── Xcache.class.php
│       │   │   ├── Cache.class.php
│       │   │   ├── Controller
│       │   │   │   ├── HproseController.class.php
│       │   │   │   ├── JsonRpcController.class.php
│       │   │   │   ├── RestController.class.php
│       │   │   │   ├── RpcController.class.php
│       │   │   │   └── YarController.class.php
│       │   │   ├── Controller.class.php
│       │   │   ├── Crypt
│       │   │   │   └── Driver
│       │   │   │       ├── Base64.class.php
│       │   │   │       ├── Crypt.class.php
│       │   │   │       ├── Des.class.php
│       │   │   │       ├── Think.class.php
│       │   │   │       └── Xxtea.class.php
│       │   │   ├── Crypt.class.php
│       │   │   ├── Db
│       │   │   │   └── Driver
│       │   │   │       ├── Ibase.class.php
│       │   │   │       ├── Mongo.class.php
│       │   │   │       ├── Mssql.class.php
│       │   │   │       ├── Mysql.class.php
│       │   │   │       ├── Mysqli.class.php
│       │   │   │       ├── Oracle.class.php
│       │   │   │       ├── Pdo.class.php
│       │   │   │       ├── Pgsql.class.php
│       │   │   │       ├── Sqlite.class.php
│       │   │   │       └── Sqlsrv.class.php
│       │   │   ├── Db.class.php
│       │   │   ├── Dispatcher.class.php
│       │   │   ├── Exception.class.php
│       │   │   ├── Hook.class.php
│       │   │   ├── Image
│       │   │   │   └── Driver
│       │   │   │       ├── GIF.class.php
│       │   │   │       ├── Gd.class.php
│       │   │   │       └── Imagick.class.php
│       │   │   ├── Image.class.php
│       │   │   ├── Log
│       │   │   │   └── Driver
│       │   │   │       ├── File.class.php
│       │   │   │       └── Sae.class.php
│       │   │   ├── Log.class.php
│       │   │   ├── Model
│       │   │   │   ├── AdvModel.class.php
│       │   │   │   ├── MongoModel.class.php
│       │   │   │   ├── RelationModel.class.php
│       │   │   │   └── ViewModel.class.php
│       │   │   ├── Model.class.php
│       │   │   ├── Page.class.php
│       │   │   ├── Route.class.php
│       │   │   ├── Session
│       │   │   │   └── Driver
│       │   │   │       └── Db.class.php
│       │   │   ├── Storage
│       │   │   │   └── Driver
│       │   │   │       ├── File.class.php
│       │   │   │       └── Sae.class.php
│       │   │   ├── Storage.class.php
│       │   │   ├── Template
│       │   │   │   ├── Driver
│       │   │   │   │   ├── Ease.class.php
│       │   │   │   │   ├── Lite.class.php
│       │   │   │   │   ├── Mobile.class.php
│       │   │   │   │   ├── Smart.class.php
│       │   │   │   │   └── Smarty.class.php
│       │   │   │   ├── TagLib
│       │   │   │   │   ├── Cx.class.php
│       │   │   │   │   └── Html.class.php
│       │   │   │   └── TagLib.class.php
│       │   │   ├── Template.class.php
│       │   │   ├── Think.class.php
│       │   │   ├── Upload
│       │   │   │   └── Driver
│       │   │   │       ├── Bcs
│       │   │   │       │   ├── bcs.class.php
│       │   │   │       │   ├── mimetypes.class.php
│       │   │   │       │   └── requestcore.class.php
│       │   │   │       ├── Bcs.class.php
│       │   │   │       ├── Ftp.class.php
│       │   │   │       ├── Local.class.php
│       │   │   │       ├── Qiniu
│       │   │   │       │   └── QiniuStorage.class.php
│       │   │   │       ├── Qiniu.class.php
│       │   │   │       ├── Sae.class.php
│       │   │   │       └── Upyun.class.php
│       │   │   ├── Upload.class.php
│       │   │   ├── Verify
│       │   │   │   ├── bgs
│       │   │   │   │   ├── 1.jpg
│       │   │   │   │   ├── 2.jpg
│       │   │   │   │   ├── 3.jpg
│       │   │   │   │   ├── 4.jpg
│       │   │   │   │   ├── 5.jpg
│       │   │   │   │   ├── 6.jpg
│       │   │   │   │   ├── 7.jpg
│       │   │   │   │   └── 8.jpg
│       │   │   │   ├── ttfs
│       │   │   │   │   ├── 1.ttf
│       │   │   │   │   ├── 2.ttf
│       │   │   │   │   ├── 3.ttf
│       │   │   │   │   ├── 4.ttf
│       │   │   │   │   ├── 5.ttf
│       │   │   │   │   └── 6.ttf
│       │   │   │   └── zhttfs
│       │   │   │       └── 1.ttf
│       │   │   ├── Verify.class.php
│       │   │   └── View.class.php
│       │   ├── Vendor
│       │   │   ├── Boris
│       │   │   │   ├── Boris.php
│       │   │   │   ├── CLIOptionsHandler.php
│       │   │   │   ├── ColoredInspector.php
│       │   │   │   ├── Config.php
│       │   │   │   ├── DumpInspector.php
│       │   │   │   ├── EvalWorker.php
│       │   │   │   ├── ExportInspector.php
│       │   │   │   ├── Inspector.php
│       │   │   │   ├── ReadlineClient.php
│       │   │   │   └── ShallowParser.php
│       │   │   ├── Dir
│       │   │   │   └── Dir.class.php
│       │   │   ├── EaseTemplate
│       │   │   │   ├── template.core.php
│       │   │   │   └── template.ease.php
│       │   │   ├── Email
│       │   │   │   ├── class.phpmailer.php
│       │   │   │   └── class.smtp.php
│       │   │   ├── Hprose
│       │   │   │   ├── HproseClassManager.php
│       │   │   │   ├── HproseClient.php
│       │   │   │   ├── HproseCommon.php
│       │   │   │   ├── HproseFormatter.php
│       │   │   │   ├── HproseHttpClient.php
│       │   │   │   ├── HproseHttpServer.php
│       │   │   │   ├── HproseIO.php
│       │   │   │   ├── HproseIOStream.php
│       │   │   │   ├── HproseReader.php
│       │   │   │   ├── HproseTags.php
│       │   │   │   └── HproseWriter.php
│       │   │   ├── README.txt
│       │   │   ├── SmartTemplate
│       │   │   │   ├── class.smarttemplate.php
│       │   │   │   ├── class.smarttemplatedebugger.php
│       │   │   │   └── class.smarttemplateparser.php
│       │   │   ├── Smarty
│       │   │   │   ├── Smarty.class.php
│       │   │   │   ├── SmartyBC.class.php
│       │   │   │   ├── debug.tpl
│       │   │   │   ├── plugins
│       │   │   │   │   ├── block.textformat.php
│       │   │   │   │   ├── function.counter.php
│       │   │   │   │   ├── function.cycle.php
│       │   │   │   │   ├── function.fetch.php
│       │   │   │   │   ├── function.html_checkboxes.php
│       │   │   │   │   ├── function.html_image.php
│       │   │   │   │   ├── function.html_options.php
│       │   │   │   │   ├── function.html_radios.php
│       │   │   │   │   ├── function.html_select_date.php
│       │   │   │   │   ├── function.html_select_time.php
│       │   │   │   │   ├── function.html_table.php
│       │   │   │   │   ├── function.mailto.php
│       │   │   │   │   ├── function.math.php
│       │   │   │   │   ├── modifier.capitalize.php
│       │   │   │   │   ├── modifier.date_format.php
│       │   │   │   │   ├── modifier.debug_print_var.php
│       │   │   │   │   ├── modifier.escape.php
│       │   │   │   │   ├── modifier.regex_replace.php
│       │   │   │   │   ├── modifier.replace.php
│       │   │   │   │   ├── modifier.spacify.php
│       │   │   │   │   ├── modifier.truncate.php
│       │   │   │   │   ├── modifiercompiler.cat.php
│       │   │   │   │   ├── modifiercompiler.count_characters.php
│       │   │   │   │   ├── modifiercompiler.count_paragraphs.php
│       │   │   │   │   ├── modifiercompiler.count_sentences.php
│       │   │   │   │   ├── modifiercompiler.count_words.php
│       │   │   │   │   ├── modifiercompiler.default.php
│       │   │   │   │   ├── modifiercompiler.escape.php
│       │   │   │   │   ├── modifiercompiler.from_charset.php
│       │   │   │   │   ├── modifiercompiler.indent.php
│       │   │   │   │   ├── modifiercompiler.lower.php
│       │   │   │   │   ├── modifiercompiler.noprint.php
│       │   │   │   │   ├── modifiercompiler.string_format.php
│       │   │   │   │   ├── modifiercompiler.strip.php
│       │   │   │   │   ├── modifiercompiler.strip_tags.php
│       │   │   │   │   ├── modifiercompiler.to_charset.php
│       │   │   │   │   ├── modifiercompiler.unescape.php
│       │   │   │   │   ├── modifiercompiler.upper.php
│       │   │   │   │   ├── modifiercompiler.wordwrap.php
│       │   │   │   │   ├── outputfilter.trimwhitespace.php
│       │   │   │   │   ├── shared.escape_special_chars.php
│       │   │   │   │   ├── shared.literal_compiler_param.php
│       │   │   │   │   ├── shared.make_timestamp.php
│       │   │   │   │   ├── shared.mb_str_replace.php
│       │   │   │   │   ├── shared.mb_unicode.php
│       │   │   │   │   ├── shared.mb_wordwrap.php
│       │   │   │   │   └── variablefilter.htmlspecialchars.php
│       │   │   │   └── sysplugins
│       │   │   │       ├── smarty_cacheresource.php
│       │   │   │       ├── smarty_cacheresource_custom.php
│       │   │   │       ├── smarty_cacheresource_keyvaluestore.php
│       │   │   │       ├── smarty_config_source.php
│       │   │   │       ├── smarty_internal_cacheresource_file.php
│       │   │   │       ├── smarty_internal_compile_append.php
│       │   │   │       ├── smarty_internal_compile_assign.php
│       │   │   │       ├── smarty_internal_compile_block.php
│       │   │   │       ├── smarty_internal_compile_break.php
│       │   │   │       ├── smarty_internal_compile_call.php
│       │   │   │       ├── smarty_internal_compile_capture.php
│       │   │   │       ├── smarty_internal_compile_config_load.php
│       │   │   │       ├── smarty_internal_compile_continue.php
│       │   │   │       ├── smarty_internal_compile_debug.php
│       │   │   │       ├── smarty_internal_compile_eval.php
│       │   │   │       ├── smarty_internal_compile_extends.php
│       │   │   │       ├── smarty_internal_compile_for.php
│       │   │   │       ├── smarty_internal_compile_foreach.php
│       │   │   │       ├── smarty_internal_compile_function.php
│       │   │   │       ├── smarty_internal_compile_if.php
│       │   │   │       ├── smarty_internal_compile_include.php
│       │   │   │       ├── smarty_internal_compile_include_php.php
│       │   │   │       ├── smarty_internal_compile_insert.php
│       │   │   │       ├── smarty_internal_compile_ldelim.php
│       │   │   │       ├── smarty_internal_compile_nocache.php
│       │   │   │       ├── smarty_internal_compile_private_block_plugin.php
│       │   │   │       ├── smarty_internal_compile_private_function_plugin.php
│       │   │   │       ├── smarty_internal_compile_private_modifier.php
│       │   │   │       ├── smarty_internal_compile_private_object_block_function.php
│       │   │   │       ├── smarty_internal_compile_private_object_function.php
│       │   │   │       ├── smarty_internal_compile_private_print_expression.php
│       │   │   │       ├── smarty_internal_compile_private_registered_block.php
│       │   │   │       ├── smarty_internal_compile_private_registered_function.php
│       │   │   │       ├── smarty_internal_compile_private_special_variable.php
│       │   │   │       ├── smarty_internal_compile_rdelim.php
│       │   │   │       ├── smarty_internal_compile_section.php
│       │   │   │       ├── smarty_internal_compile_setfilter.php
│       │   │   │       ├── smarty_internal_compile_while.php
│       │   │   │       ├── smarty_internal_compilebase.php
│       │   │   │       ├── smarty_internal_config.php
│       │   │   │       ├── smarty_internal_config_file_compiler.php
│       │   │   │       ├── smarty_internal_configfilelexer.php
│       │   │   │       ├── smarty_internal_configfileparser.php
│       │   │   │       ├── smarty_internal_data.php
│       │   │   │       ├── smarty_internal_debug.php
│       │   │   │       ├── smarty_internal_filter_handler.php
│       │   │   │       ├── smarty_internal_function_call_handler.php
│       │   │   │       ├── smarty_internal_get_include_path.php
│       │   │   │       ├── smarty_internal_nocache_insert.php
│       │   │   │       ├── smarty_internal_parsetree.php
│       │   │   │       ├── smarty_internal_resource_eval.php
│       │   │   │       ├── smarty_internal_resource_extends.php
│       │   │   │       ├── smarty_internal_resource_file.php
│       │   │   │       ├── smarty_internal_resource_php.php
│       │   │   │       ├── smarty_internal_resource_registered.php
│       │   │   │       ├── smarty_internal_resource_stream.php
│       │   │   │       ├── smarty_internal_resource_string.php
│       │   │   │       ├── smarty_internal_smartytemplatecompiler.php
│       │   │   │       ├── smarty_internal_template.php
│       │   │   │       ├── smarty_internal_templatebase.php
│       │   │   │       ├── smarty_internal_templatecompilerbase.php
│       │   │   │       ├── smarty_internal_templatelexer.php
│       │   │   │       ├── smarty_internal_templateparser.php
│       │   │   │       ├── smarty_internal_utility.php
│       │   │   │       ├── smarty_internal_write_file.php
│       │   │   │       ├── smarty_resource.php
│       │   │   │       ├── smarty_resource_custom.php
│       │   │   │       ├── smarty_resource_recompiled.php
│       │   │   │       ├── smarty_resource_uncompiled.php
│       │   │   │       └── smarty_security.php
│       │   │   ├── TemplateLite
│       │   │   │   ├── class.compiler.php
│       │   │   │   ├── class.config.php
│       │   │   │   ├── class.template.php
│       │   │   │   └── internal
│       │   │   │       ├── compile.compile_config.php
│       │   │   │       ├── compile.compile_custom_block.php
│       │   │   │       ├── compile.compile_custom_function.php
│       │   │   │       ├── compile.compile_if.php
│       │   │   │       ├── compile.generate_compiler_debug_output.php
│       │   │   │       ├── compile.include.php
│       │   │   │       ├── compile.parse_is_expr.php
│       │   │   │       ├── compile.section_start.php
│       │   │   │       ├── debug.tpl
│       │   │   │       ├── template.build_dir.php
│       │   │   │       ├── template.config_loader.php
│       │   │   │       ├── template.destroy_dir.php
│       │   │   │       ├── template.fetch_compile_include.php
│       │   │   │       └── template.generate_debug_output.php
│       │   │   ├── jsonRPC
│       │   │   │   ├── jsonRPCClient.php
│       │   │   │   └── jsonRPCServer.php
│       │   │   ├── phpRPC
│       │   │   │   ├── bigint.php
│       │   │   │   ├── compat.php
│       │   │   │   ├── dhparams
│       │   │   │   │   ├── 1024.dhp
│       │   │   │   │   ├── 128.dhp
│       │   │   │   │   ├── 1536.dhp
│       │   │   │   │   ├── 160.dhp
│       │   │   │   │   ├── 192.dhp
│       │   │   │   │   ├── 2048.dhp
│       │   │   │   │   ├── 256.dhp
│       │   │   │   │   ├── 3072.dhp
│       │   │   │   │   ├── 4096.dhp
│       │   │   │   │   ├── 512.dhp
│       │   │   │   │   ├── 768.dhp
│       │   │   │   │   └── 96.dhp
│       │   │   │   ├── dhparams.php
│       │   │   │   ├── pecl
│       │   │   │   │   └── xxtea
│       │   │   │   │       ├── CREDITS
│       │   │   │   │       ├── INSTALL
│       │   │   │   │       ├── LICENSE
│       │   │   │   │       ├── README
│       │   │   │   │       ├── config.m4
│       │   │   │   │       ├── config.w32
│       │   │   │   │       ├── php_xxtea.c
│       │   │   │   │       ├── php_xxtea.dsp
│       │   │   │   │       ├── php_xxtea.h
│       │   │   │   │       ├── php_xxtea.sln
│       │   │   │   │       ├── php_xxtea.vcproj
│       │   │   │   │       ├── test
│       │   │   │   │       │   └── test.php
│       │   │   │   │       ├── xxtea.c
│       │   │   │   │       └── xxtea.h
│       │   │   │   ├── phprpc_client.php
│       │   │   │   ├── phprpc_date.php
│       │   │   │   ├── phprpc_server.php
│       │   │   │   └── xxtea.php
│       │   │   └── spyc
│       │   │       ├── COPYING
│       │   │       ├── README.md
│       │   │       ├── Spyc.php
│       │   │       ├── composer.json
│       │   │       ├── examples
│       │   │       │   ├── yaml-dump.php
│       │   │       │   └── yaml-load.php
│       │   │       ├── php4
│       │   │       │   ├── 5to4.php
│       │   │       │   ├── spyc.php4
│       │   │       │   └── test.php4
│       │   │       ├── spyc.yaml
│       │   │       └── tests
│       │   │           ├── DumpTest.php
│       │   │           ├── IndentTest.php
│       │   │           ├── ParseTest.php
│       │   │           ├── RoundTripTest.php
│       │   │           ├── comments.yaml
│       │   │           ├── failing1.yaml
│       │   │           ├── indent_1.yaml
│       │   │           └── quotes.yaml
│       │   ├── Vin
│       │   │   ├── FileStorage
│       │   │   │   └── Driver
│       │   │   │       ├── File.class.php
│       │   │   │       └── Sae.class.php
│       │   │   └── FileStorage.class.php
│       │   └── Vin.zip
│       ├── Mode
│       │   ├── Api
│       │   │   ├── App.class.php
│       │   │   ├── Controller.class.php
│       │   │   ├── Dispatcher.class.php
│       │   │   └── functions.php
│       │   ├── Sae
│       │   │   └── convention.php
│       │   ├── api.php
│       │   ├── common.php
│       │   └── sae.php
│       ├── README.txt
│       ├── ThinkPHP.php
│       ├── Tpl
│       │   ├── default_index.tpl
│       │   ├── dispatch_jump.tpl
│       │   ├── page_trace.tpl
│       │   └── think_exception.tpl
│       └── logo.png
├── Public
│   ├── css
│   │   ├── admin-left.css
│   │   ├── admin-login.css
│   │   ├── admin-style.css
│   │   ├── admin-top.css
│   │   ├── admin.css
│   │   ├── install.css
│   │   └── style.default.css
│   ├── del
│   │   ├── css
│   │   │   ├── 6d3ca27ddbc0aa8a03b46888217b0c51.css
│   │   │   ├── all-base.css
│   │   │   ├── all.css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── demo.css
│   │   │   ├── global.css
│   │   │   ├── images
│   │   │   │   ├── O1CN019fcY9d1uKkU75QAHP_!!46466019.jpg
│   │   │   │   ├── brokerbg.png
│   │   │   │   ├── goodsdetail_contentttbg.png
│   │   │   │   ├── guardIcon.png
│   │   │   │   ├── hot0.png
│   │   │   │   ├── mallFacia_popupCatz_lv1.bg.png
│   │   │   │   ├── new0.png
│   │   │   │   ├── step0.png
│   │   │   │   ├── step1.png
│   │   │   │   ├── step2.png
│   │   │   │   └── step3.png
│   │   │   ├── index.css
│   │   │   ├── jquery.fancybox-1.3.4.css
│   │   │   ├── list.css
│   │   │   ├── my.css
│   │   │   ├── seo-v2.css
│   │   │   └── style.css
│   │   ├── fonts
│   │   │   ├── icons.eot
│   │   │   ├── icons.ttf
│   │   │   ├── icons.woff
│   │   │   └── icons.woff2
│   │   ├── images
│   │   │   ├── arrow.png
│   │   │   ├── arrow_hover.png
│   │   │   ├── arrows.png
│   │   │   ├── chax.png
│   │   │   ├── di.png
│   │   │   ├── dian1.gif
│   │   │   ├── dian2.gif
│   │   │   ├── dianxin_2.gif
│   │   │   ├── downadr.gif
│   │   │   ├── downtu.gif
│   │   │   ├── gao.png
│   │   │   ├── icon
│   │   │   │   ├── bd.png
│   │   │   │   ├── bd0.png
│   │   │   │   ├── bd1.png
│   │   │   │   ├── bd10.png
│   │   │   │   ├── bd2.png
│   │   │   │   ├── bd3.png
│   │   │   │   ├── bd4.png
│   │   │   │   ├── bd5.png
│   │   │   │   ├── bd6.png
│   │   │   │   ├── bd7.png
│   │   │   │   ├── bd8.png
│   │   │   │   ├── bd9.png
│   │   │   │   ├── google.png
│   │   │   │   ├── google0.png
│   │   │   │   ├── google1.png
│   │   │   │   ├── google10.png
│   │   │   │   ├── google2.png
│   │   │   │   ├── google3.png
│   │   │   │   ├── google4.png
│   │   │   │   ├── google5.png
│   │   │   │   ├── google6.png
│   │   │   │   ├── google7.png
│   │   │   │   ├── google8.png
│   │   │   │   ├── google9.png
│   │   │   │   ├── shenma.png
│   │   │   │   ├── shenma0.png
│   │   │   │   ├── shenma1.png
│   │   │   │   ├── shenma10.png
│   │   │   │   ├── shenma2.png
│   │   │   │   ├── shenma3.png
│   │   │   │   ├── shenma4.png
│   │   │   │   ├── shenma5.png
│   │   │   │   ├── shenma6.png
│   │   │   │   ├── shenma7.png
│   │   │   │   ├── shenma8.png
│   │   │   │   ├── shenma9.png
│   │   │   │   ├── so.png
│   │   │   │   ├── so0.png
│   │   │   │   ├── so1.png
│   │   │   │   ├── so10.png
│   │   │   │   ├── so2.png
│   │   │   │   ├── so3.png
│   │   │   │   ├── so4.png
│   │   │   │   ├── so5.png
│   │   │   │   ├── so6.png
│   │   │   │   ├── so7.png
│   │   │   │   ├── so8.png
│   │   │   │   ├── so9.png
│   │   │   │   ├── sogou.png
│   │   │   │   ├── sogou0.png
│   │   │   │   ├── sogou1.png
│   │   │   │   ├── sogou10.png
│   │   │   │   ├── sogou2.png
│   │   │   │   ├── sogou3.png
│   │   │   │   ├── sogou4.png
│   │   │   │   ├── sogou5.png
│   │   │   │   ├── sogou6.png
│   │   │   │   ├── sogou7.png
│   │   │   │   ├── sogou8.png
│   │   │   │   ├── sogou9.png
│   │   │   │   ├── toutiao.png
│   │   │   │   ├── toutiao0.png
│   │   │   │   ├── toutiao1.png
│   │   │   │   ├── toutiao2.png
│   │   │   │   ├── toutiao3.png
│   │   │   │   ├── toutiao4.png
│   │   │   │   ├── toutiao5.png
│   │   │   │   ├── toutiao6.png
│   │   │   │   ├── toutiao7.png
│   │   │   │   ├── toutiao8.png
│   │   │   │   └── toutiao9.png
│   │   │   ├── icon-pl_bak.png
│   │   │   ├── icon.png
│   │   │   ├── icosprit.png
│   │   │   ├── icosprit_1.png
│   │   │   ├── idx_icos.png
│   │   │   ├── iphone_1.gif
│   │   │   ├── liji_1.gif
│   │   │   ├── liji_2.gif
│   │   │   ├── line_arrow.png
│   │   │   ├── logo.png
│   │   │   ├── new_lc.png
│   │   │   ├── shadow.png
│   │   │   ├── softdbtn.png
│   │   │   ├── stars.png
│   │   │   ├── tab_line.gif
│   │   │   ├── tb_icos.png
│   │   │   ├── tc_close.png
│   │   │   ├── top_ico2.gif
│   │   │   ├── wangtong_1.gif
│   │   │   ├── wangtong_2.gif
│   │   │   ├── xiao1.jpg
│   │   │   ├── xunlei_1.gif
│   │   │   ├── xunlei_2.gif
│   │   │   ├── xxk1.png
│   │   │   └── ztarrow.png
│   │   ├── img
│   │   │   ├── 2vmd.png
│   │   │   ├── WePayLogo.png
│   │   │   ├── alipay.png
│   │   │   ├── bgipad.png
│   │   │   ├── bgipadw.png
│   │   │   ├── bgiphone.png
│   │   │   ├── bgiphonew.png
│   │   │   ├── cross2.png
│   │   │   ├── index
│   │   │   │   ├── left_line.png
│   │   │   │   ├── liuchen_five.png
│   │   │   │   ├── liuchen_four.png
│   │   │   │   ├── liuchen_one.png
│   │   │   │   ├── liuchen_three.png
│   │   │   │   ├── liuchen_two.png
│   │   │   │   ├── right_line.png
│   │   │   │   ├── snow_log.png
│   │   │   │   ├── souYe_five.png
│   │   │   │   ├── souYe_four.png
│   │   │   │   ├── souYe_one.png
│   │   │   │   ├── souYe_six.png
│   │   │   │   ├── souYe_three.png
│   │   │   │   ├── souYe_two.png
│   │   │   │   └── use_one.png
│   │   │   ├── index.css
│   │   │   ├── layout.css
│   │   │   ├── mon-spr.png
│   │   │   └── tingshu.jpg
│   │   └── js
│   │       ├── bootstrap.min.js
│   │       ├── foot.js
│   │       ├── global.js
│   │       ├── index.js
│   │       ├── jquery-1.8.3.min.js
│   │       ├── jquery.min.js
│   │       ├── jquery.qrcode.min.js
│   │       ├── pace.min.js
│   │       ├── pc2wap.js
│   │       ├── read.js
│   │       ├── show.js
│   │       └── three.min.js
│   ├── images
│   │   ├── admin
│   │   │   ├── add.gif
│   │   │   ├── arrow.gif
│   │   │   ├── bg.gif
│   │   │   ├── bg2.gif
│   │   │   ├── body_title_bg.gif
│   │   │   ├── body_title_left.gif
│   │   │   ├── body_title_right.gif
│   │   │   ├── botbg.gif
│   │   │   ├── bt_bg.gif
│   │   │   ├── button_bg.gif
│   │   │   ├── check_no.gif
│   │   │   ├── check_yes.gif
│   │   │   ├── close.gif
│   │   │   ├── continu0.gif
│   │   │   ├── continu1.gif
│   │   │   ├── ct.gif
│   │   │   ├── del.gif
│   │   │   ├── down.gif
│   │   │   ├── edit.gif
│   │   │   ├── left.gif
│   │   │   ├── left_bg.gif
│   │   │   ├── left_bg_hover.gif
│   │   │   ├── leftbg.gif
│   │   │   ├── login.gif
│   │   │   ├── next.jpg
│   │   │   ├── right.gif
│   │   │   ├── star0.gif
│   │   │   ├── star1.gif
│   │   │   ├── tbtitle.gif
│   │   │   ├── title_bg.gif
│   │   │   ├── top_bg.gif
│   │   │   ├── top_bg_left.gif
│   │   │   ├── top_bg_right.gif
│   │   │   ├── top_logo.gif
│   │   │   └── up.gif
│   │   ├── face
│   │   │   ├── face_1.jpg
│   │   │   ├── face_2.jpg
│   │   │   ├── face_3.jpg
│   │   │   ├── face_4.jpg
│   │   │   ├── face_5.jpg
│   │   │   └── face_6.jpg
│   │   ├── file
│   │   │   ├── css.gif
│   │   │   ├── dir.gif
│   │   │   ├── folder.gif
│   │   │   ├── gif.gif
│   │   │   ├── htm.gif
│   │   │   ├── html.gif
│   │   │   ├── jpg.gif
│   │   │   ├── js.gif
│   │   │   ├── last.gif
│   │   │   ├── other.gif
│   │   │   └── php.gif
│   │   ├── new.gif
│   │   └── player
│   │       └── list.gif
│   ├── jquery
│   │   ├── jquery-1.7.2.min.js
│   │   ├── jquery.autocomplete-1.1.js
│   │   ├── jquery.jqmodal.css
│   │   ├── jquery.jqmodal.js
│   │   ├── jquery.lazyload-1.8.4.js
│   │   └── jquery.waypoints-2.0.2.js
│   ├── js
│   │   ├── admin.js
│   │   ├── calendar
│   │   │   ├── border-radius.css
│   │   │   ├── calendar-blue.css
│   │   │   ├── calendar.js
│   │   │   ├── city.js
│   │   │   ├── img
│   │   │   │   ├── cool-bg-hard-inv.png
│   │   │   │   ├── cool-bg-hard.png
│   │   │   │   ├── cool-bg-inv.png
│   │   │   │   ├── cool-bg.png
│   │   │   │   ├── drop-down.gif
│   │   │   │   ├── drop-up.gif
│   │   │   │   ├── nav-left-x2.gif
│   │   │   │   ├── nav-left.gif
│   │   │   │   ├── nav-right-x2.gif
│   │   │   │   ├── nav-right.gif
│   │   │   │   ├── time-down.png
│   │   │   │   └── time-up.png
│   │   │   ├── jscal2.css
│   │   │   ├── lang
│   │   │   │   └── en.js
│   │   │   ├── reduce-spacing.css
│   │   │   └── win2k.css
│   │   ├── formvalidatorregex.js
│   │   ├── jquery-2.0.2.js
│   │   ├── jquery.js
│   │   └── jump.js
│   ├── jump
│   │   └── jumpurl.html
│   ├── maps
│   │   ├── 360.html
│   │   ├── baidu.html
│   │   ├── baidumobile.html
│   │   ├── google.html
│   │   ├── rss.html
│   │   ├── rssid.html
│   │   └── so.html
│   ├── plus
│   │   ├── ds
│   │   │   ├── ds_wait.html
│   │   │   └── ds_win.html
│   │   ├── js
│   │   ├── star_check.html
│   │   └── video_check.html
│   ├── system
│   │   ├── admin
│   │   │   ├── css
│   │   │   │   ├── admin_style.css
│   │   │   │   ├── collect.css
│   │   │   │   └── dialog.css
│   │   │   └── js
│   │   │       ├── admin_all.js
│   │   │       ├── collect.js
│   │   │       ├── dialog.js
│   │   │       ├── formvalidator.js
│   │   │       └── jquery.js
│   │   ├── admin_add.html
│   │   ├── admin_agreement.html
│   │   ├── admin_conf.html
│   │   ├── admin_show.html
│   │   ├── footer.html
│   │   ├── header.html
│   │   ├── html_show.html
│   │   ├── index.html
│   │   ├── install.html
│   │   ├── left.html
│   │   ├── login.html
│   │   ├── right.html
│   │   └── top.html
│   ├── ueditor
│   │   ├── dialogs
│   │   │   ├── anchor
│   │   │   │   └── anchor.html
│   │   │   ├── attachment
│   │   │   │   ├── attachment.css
│   │   │   │   ├── attachment.html
│   │   │   │   ├── attachment.js
│   │   │   │   ├── fileTypeImages
│   │   │   │   │   ├── icon_chm.gif
│   │   │   │   │   ├── icon_default.png
│   │   │   │   │   ├── icon_doc.gif
│   │   │   │   │   ├── icon_exe.gif
│   │   │   │   │   ├── icon_jpg.gif
│   │   │   │   │   ├── icon_mp3.gif
│   │   │   │   │   ├── icon_mv.gif
│   │   │   │   │   ├── icon_pdf.gif
│   │   │   │   │   ├── icon_ppt.gif
│   │   │   │   │   ├── icon_psd.gif
│   │   │   │   │   ├── icon_rar.gif
│   │   │   │   │   ├── icon_txt.gif
│   │   │   │   │   └── icon_xls.gif
│   │   │   │   └── images
│   │   │   │       ├── alignicon.gif
│   │   │   │       ├── alignicon.png
│   │   │   │       ├── bg.png
│   │   │   │       ├── file-icons.gif
│   │   │   │       ├── file-icons.png
│   │   │   │       ├── icons.gif
│   │   │   │       ├── icons.png
│   │   │   │       ├── image.png
│   │   │   │       ├── progress.png
│   │   │   │       ├── success.gif
│   │   │   │       └── success.png
│   │   │   ├── background
│   │   │   │   ├── background.css
│   │   │   │   ├── background.html
│   │   │   │   ├── background.js
│   │   │   │   └── images
│   │   │   │       ├── bg.png
│   │   │   │       └── success.png
│   │   │   ├── charts
│   │   │   │   ├── chart.config.js
│   │   │   │   ├── charts.css
│   │   │   │   ├── charts.html
│   │   │   │   ├── charts.js
│   │   │   │   └── images
│   │   │   │       ├── charts0.png
│   │   │   │       ├── charts1.png
│   │   │   │       ├── charts2.png
│   │   │   │       ├── charts3.png
│   │   │   │       ├── charts4.png
│   │   │   │       └── charts5.png
│   │   │   ├── emotion
│   │   │   │   ├── emotion.css
│   │   │   │   ├── emotion.html
│   │   │   │   ├── emotion.js
│   │   │   │   └── images
│   │   │   │       ├── 0.gif
│   │   │   │       ├── bface.gif
│   │   │   │       ├── cface.gif
│   │   │   │       ├── fface.gif
│   │   │   │       ├── jxface2.gif
│   │   │   │       ├── neweditor-tab-bg.png
│   │   │   │       ├── tface.gif
│   │   │   │       ├── wface.gif
│   │   │   │       └── yface.gif
│   │   │   ├── gmap
│   │   │   │   └── gmap.html
│   │   │   ├── help
│   │   │   │   ├── help.css
│   │   │   │   ├── help.html
│   │   │   │   └── help.js
│   │   │   ├── image
│   │   │   │   ├── image.css
│   │   │   │   ├── image.html
│   │   │   │   ├── image.js
│   │   │   │   └── images
│   │   │   │       ├── alignicon.jpg
│   │   │   │       ├── bg.png
│   │   │   │       ├── icons.gif
│   │   │   │       ├── icons.png
│   │   │   │       ├── image.png
│   │   │   │       ├── progress.png
│   │   │   │       ├── success.gif
│   │   │   │       └── success.png
│   │   │   ├── insertframe
│   │   │   │   └── insertframe.html
│   │   │   ├── internal.js
│   │   │   ├── link
│   │   │   │   └── link.html
│   │   │   ├── map
│   │   │   │   ├── map.html
│   │   │   │   └── show.html
│   │   │   ├── music
│   │   │   │   ├── music.css
│   │   │   │   ├── music.html
│   │   │   │   └── music.js
│   │   │   ├── preview
│   │   │   │   └── preview.html
│   │   │   ├── scrawl
│   │   │   │   ├── images
│   │   │   │   │   ├── addimg.png
│   │   │   │   │   ├── brush.png
│   │   │   │   │   ├── delimg.png
│   │   │   │   │   ├── delimgH.png
│   │   │   │   │   ├── empty.png
│   │   │   │   │   ├── emptyH.png
│   │   │   │   │   ├── eraser.png
│   │   │   │   │   ├── redo.png
│   │   │   │   │   ├── redoH.png
│   │   │   │   │   ├── scale.png
│   │   │   │   │   ├── scaleH.png
│   │   │   │   │   ├── size.png
│   │   │   │   │   ├── undo.png
│   │   │   │   │   └── undoH.png
│   │   │   │   ├── scrawl.css
│   │   │   │   ├── scrawl.html
│   │   │   │   └── scrawl.js
│   │   │   ├── searchreplace
│   │   │   │   ├── searchreplace.html
│   │   │   │   └── searchreplace.js
│   │   │   ├── snapscreen
│   │   │   │   └── snapscreen.html
│   │   │   ├── spechars
│   │   │   │   ├── spechars.html
│   │   │   │   └── spechars.js
│   │   │   ├── table
│   │   │   │   ├── dragicon.png
│   │   │   │   ├── edittable.css
│   │   │   │   ├── edittable.html
│   │   │   │   ├── edittable.js
│   │   │   │   ├── edittd.html
│   │   │   │   └── edittip.html
│   │   │   ├── template
│   │   │   │   ├── config.js
│   │   │   │   ├── images
│   │   │   │   │   ├── bg.gif
│   │   │   │   │   ├── pre0.png
│   │   │   │   │   ├── pre1.png
│   │   │   │   │   ├── pre2.png
│   │   │   │   │   ├── pre3.png
│   │   │   │   │   └── pre4.png
│   │   │   │   ├── template.css
│   │   │   │   ├── template.html
│   │   │   │   └── template.js
│   │   │   ├── video
│   │   │   │   ├── images
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── center_focus.jpg
│   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   ├── file-icons.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── left_focus.jpg
│   │   │   │   │   ├── none_focus.jpg
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── right_focus.jpg
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── video.css
│   │   │   │   ├── video.html
│   │   │   │   └── video.js
│   │   │   ├── webapp
│   │   │   │   └── webapp.html
│   │   │   └── wordimage
│   │   │       ├── fClipboard_ueditor.swf
│   │   │       ├── imageUploader.swf
│   │   │       ├── tangram.js
│   │   │       ├── wordimage.html
│   │   │       └── wordimage.js
│   │   ├── lang
│   │   │   ├── en
│   │   │   │   ├── en.js
│   │   │   │   └── images
│   │   │   │       ├── addimage.png
│   │   │   │       ├── alldeletebtnhoverskin.png
│   │   │   │       ├── alldeletebtnupskin.png
│   │   │   │       ├── background.png
│   │   │   │       ├── button.png
│   │   │   │       ├── copy.png
│   │   │   │       ├── deletedisable.png
│   │   │   │       ├── deleteenable.png
│   │   │   │       ├── listbackground.png
│   │   │   │       ├── localimage.png
│   │   │   │       ├── music.png
│   │   │   │       ├── rotateleftdisable.png
│   │   │   │       ├── rotateleftenable.png
│   │   │   │       ├── rotaterightdisable.png
│   │   │   │       ├── rotaterightenable.png
│   │   │   │       └── upload.png
│   │   │   └── zh-cn
│   │   │       ├── images
│   │   │       │   ├── copy.png
│   │   │       │   ├── localimage.png
│   │   │       │   ├── music.png
│   │   │       │   └── upload.png
│   │   │       └── zh-cn.js
│   │   ├── php
│   │   │   ├── Uploader.class.php
│   │   │   ├── action_crawler.php
│   │   │   ├── action_list.php
│   │   │   ├── action_upload.php
│   │   │   ├── config.json
│   │   │   └── controller.php
│   │   ├── themes
│   │   │   ├── default
│   │   │   │   ├── css
│   │   │   │   │   ├── ueditor.css
│   │   │   │   │   └── ueditor.min.css
│   │   │   │   ├── dialogbase.css
│   │   │   │   └── images
│   │   │   │       ├── anchor.gif
│   │   │   │       ├── arrow.png
│   │   │   │       ├── arrow_down.png
│   │   │   │       ├── arrow_up.png
│   │   │   │       ├── button-bg.gif
│   │   │   │       ├── cancelbutton.gif
│   │   │   │       ├── charts.png
│   │   │   │       ├── cursor_h.gif
│   │   │   │       ├── cursor_h.png
│   │   │   │       ├── cursor_v.gif
│   │   │   │       ├── cursor_v.png
│   │   │   │       ├── dialog-title-bg.png
│   │   │   │       ├── filescan.png
│   │   │   │       ├── highlighted.gif
│   │   │   │       ├── icons-all.gif
│   │   │   │       ├── icons.gif
│   │   │   │       ├── icons.png
│   │   │   │       ├── loaderror.png
│   │   │   │       ├── loading.gif
│   │   │   │       ├── lock.gif
│   │   │   │       ├── neweditor-tab-bg.png
│   │   │   │       ├── pagebreak.gif
│   │   │   │       ├── scale.png
│   │   │   │       ├── sortable.png
│   │   │   │       ├── spacer.gif
│   │   │   │       ├── sparator_v.png
│   │   │   │       ├── table-cell-align.png
│   │   │   │       ├── tangram-colorpicker.png
│   │   │   │       ├── toolbar_bg.png
│   │   │   │       ├── unhighlighted.gif
│   │   │   │       ├── upload.png
│   │   │   │       ├── videologo.gif
│   │   │   │       ├── word.gif
│   │   │   │       └── wordpaste.png
│   │   │   └── iframe.css
│   │   ├── third-party
│   │   │   ├── SyntaxHighlighter
│   │   │   │   ├── shCore.js
│   │   │   │   └── shCoreDefault.css
│   │   │   ├── codemirror
│   │   │   │   ├── codemirror.css
│   │   │   │   └── codemirror.js
│   │   │   ├── highcharts
│   │   │   │   ├── adapters
│   │   │   │   │   ├── mootools-adapter.js
│   │   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   │   ├── prototype-adapter.js
│   │   │   │   │   ├── prototype-adapter.src.js
│   │   │   │   │   ├── standalone-framework.js
│   │   │   │   │   └── standalone-framework.src.js
│   │   │   │   ├── highcharts-more.js
│   │   │   │   ├── highcharts-more.src.js
│   │   │   │   ├── highcharts.js
│   │   │   │   ├── highcharts.src.js
│   │   │   │   ├── modules
│   │   │   │   │   ├── annotations.js
│   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   ├── canvas-tools.js
│   │   │   │   │   ├── canvas-tools.src.js
│   │   │   │   │   ├── data.js
│   │   │   │   │   ├── data.src.js
│   │   │   │   │   ├── drilldown.js
│   │   │   │   │   ├── drilldown.src.js
│   │   │   │   │   ├── exporting.js
│   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   ├── funnel.js
│   │   │   │   │   ├── funnel.src.js
│   │   │   │   │   ├── heatmap.js
│   │   │   │   │   ├── heatmap.src.js
│   │   │   │   │   ├── map.js
│   │   │   │   │   ├── map.src.js
│   │   │   │   │   ├── no-data-to-display.js
│   │   │   │   │   └── no-data-to-display.src.js
│   │   │   │   └── themes
│   │   │   │       ├── dark-blue.js
│   │   │   │       ├── dark-green.js
│   │   │   │       ├── gray.js
│   │   │   │       ├── grid.js
│   │   │   │       └── skies.js
│   │   │   ├── jquery-1.10.2.js
│   │   │   ├── jquery-1.10.2.min.js
│   │   │   ├── jquery-1.10.2.min.map
│   │   │   ├── snapscreen
│   │   │   │   └── UEditorSnapscreen.exe
│   │   │   ├── video-js
│   │   │   │   ├── font
│   │   │   │   │   ├── vjs.eot
│   │   │   │   │   ├── vjs.svg
│   │   │   │   │   ├── vjs.ttf
│   │   │   │   │   └── vjs.woff
│   │   │   │   ├── video-js.css
│   │   │   │   ├── video-js.min.css
│   │   │   │   ├── video-js.swf
│   │   │   │   ├── video.dev.js
│   │   │   │   └── video.js
│   │   │   ├── webuploader
│   │   │   │   ├── Uploader.swf
│   │   │   │   ├── webuploader.css
│   │   │   │   ├── webuploader.custom.js
│   │   │   │   ├── webuploader.custom.min.js
│   │   │   │   ├── webuploader.flashonly.js
│   │   │   │   ├── webuploader.flashonly.min.js
│   │   │   │   ├── webuploader.html5only.js
│   │   │   │   ├── webuploader.html5only.min.js
│   │   │   │   ├── webuploader.js
│   │   │   │   ├── webuploader.min.js
│   │   │   │   ├── webuploader.withoutimage.js
│   │   │   │   └── webuploader.withoutimage.min.js
│   │   │   └── zeroclipboard
│   │   │       ├── ZeroClipboard.js
│   │   │       ├── ZeroClipboard.min.js
│   │   │       └── ZeroClipboard.swf
│   │   ├── ueditor.all.js
│   │   ├── ueditor.all.min.js
│   │   ├── ueditor.config.js
│   │   ├── ueditor.parse.js
│   │   └── ueditor.parse.min.js
│   └── user
│       └── qz
│           ├── Tpl
│           │   ├── agreement.html
│           │   ├── img.html
│           │   ├── index.html
│           │   ├── left.html
│           │   ├── links.html
│           │   ├── links_list.html
│           │   ├── links_list_order.html
│           │   ├── links_list_status.html
│           │   ├── links_orderlist.html
│           │   ├── login.html
│           │   ├── product.html
│           │   ├── record.html
│           │   ├── reg.html
│           │   ├── resetpasswdstep.html
│           │   ├── resetpasswdstep1.html
│           │   ├── security.html
│           │   ├── tag.html
│           │   ├── top.html
│           │   ├── ueditor.html
│           │   ├── user_footer.html
│           │   ├── user_header.html
│           │   ├── user_pay.html
│           │   ├── user_top.html
│           │   └── withdrawal.html
│           ├── css
│           │   ├── baseinfo.css
│           │   ├── comm.css
│           │   ├── cropper.css
│           │   ├── fwindow.css
│           │   ├── homepage.css
│           │   ├── icon.css
│           │   ├── login.css
│           │   ├── newlist.css
│           │   ├── publish.css
│           │   └── resetPasswdStep1.css
│           ├── img
│           │   ├── anquan.png
│           │   ├── audio.png
│           │   ├── list_links.png
│           │   ├── logo.png
│           │   ├── t0133d463361d8f80d5.png
│           │   ├── t015eb4ad07be2bfa0f.png
│           │   ├── t017d86583dbdec8024.png
│           │   ├── t01eab9b3777b6efc89.png
│           │   ├── user.png
│           │   └── user_logo.png
│           ├── js
│           │   ├── jquery-3.4.1.min.js
│           │   ├── newstop.js
│           │   ├── resetPasswdStep.js
│           │   ├── url.js
│           │   └── vendor.min.js
│           ├── layui
│           │   ├── css
│           │   │   ├── layui.css
│           │   │   ├── layui.mobile.css
│           │   │   └── modules
│           │   │       ├── code.css
│           │   │       ├── laydate
│           │   │       │   └── default
│           │   │       │       └── laydate.css
│           │   │       └── layer
│           │   │           └── default
│           │   │               ├── icon-ext.png
│           │   │               ├── icon.png
│           │   │               ├── layer.css
│           │   │               ├── loading-0.gif
│           │   │               ├── loading-1.gif
│           │   │               └── loading-2.gif
│           │   ├── font
│           │   │   ├── iconfont.eot
│           │   │   ├── iconfont.svg
│           │   │   ├── iconfont.ttf
│           │   │   ├── iconfont.woff
│           │   │   └── iconfont.woff2
│           │   ├── images
│           │   │   └── face
│           │   │       ├── 0.gif
│           │   │       ├── 1.gif
│           │   │       ├── 10.gif
│           │   │       ├── 11.gif
│           │   │       ├── 12.gif
│           │   │       ├── 13.gif
│           │   │       ├── 14.gif
│           │   │       ├── 15.gif
│           │   │       ├── 16.gif
│           │   │       ├── 17.gif
│           │   │       ├── 18.gif
│           │   │       ├── 19.gif
│           │   │       ├── 2.gif
│           │   │       ├── 20.gif
│           │   │       ├── 21.gif
│           │   │       ├── 22.gif
│           │   │       ├── 23.gif
│           │   │       ├── 24.gif
│           │   │       ├── 25.gif
│           │   │       ├── 26.gif
│           │   │       ├── 27.gif
│           │   │       ├── 28.gif
│           │   │       ├── 29.gif
│           │   │       ├── 3.gif
│           │   │       ├── 30.gif
│           │   │       ├── 31.gif
│           │   │       ├── 32.gif
│           │   │       ├── 33.gif
│           │   │       ├── 34.gif
│           │   │       ├── 35.gif
│           │   │       ├── 36.gif
│           │   │       ├── 37.gif
│           │   │       ├── 38.gif
│           │   │       ├── 39.gif
│           │   │       ├── 4.gif
│           │   │       ├── 40.gif
│           │   │       ├── 41.gif
│           │   │       ├── 42.gif
│           │   │       ├── 43.gif
│           │   │       ├── 44.gif
│           │   │       ├── 45.gif
│           │   │       ├── 46.gif
│           │   │       ├── 47.gif
│           │   │       ├── 48.gif
│           │   │       ├── 49.gif
│           │   │       ├── 5.gif
│           │   │       ├── 50.gif
│           │   │       ├── 51.gif
│           │   │       ├── 52.gif
│           │   │       ├── 53.gif
│           │   │       ├── 54.gif
│           │   │       ├── 55.gif
│           │   │       ├── 56.gif
│           │   │       ├── 57.gif
│           │   │       ├── 58.gif
│           │   │       ├── 59.gif
│           │   │       ├── 6.gif
│           │   │       ├── 60.gif
│           │   │       ├── 61.gif
│           │   │       ├── 62.gif
│           │   │       ├── 63.gif
│           │   │       ├── 64.gif
│           │   │       ├── 65.gif
│           │   │       ├── 66.gif
│           │   │       ├── 67.gif
│           │   │       ├── 68.gif
│           │   │       ├── 69.gif
│           │   │       ├── 7.gif
│           │   │       ├── 70.gif
│           │   │       ├── 71.gif
│           │   │       ├── 8.gif
│           │   │       └── 9.gif
│           │   ├── lay
│           │   │   └── modules
│           │   │       ├── carousel.js
│           │   │       ├── code.js
│           │   │       ├── colorpicker.js
│           │   │       ├── element.js
│           │   │       ├── flow.js
│           │   │       ├── form.js
│           │   │       ├── jquery.js
│           │   │       ├── laydate.js
│           │   │       ├── layedit.js
│           │   │       ├── layer.js
│           │   │       ├── laypage.js
│           │   │       ├── laytpl.js
│           │   │       ├── mobile.js
│           │   │       ├── rate.js
│           │   │       ├── slider.js
│           │   │       ├── table.js
│           │   │       ├── transfer.js
│           │   │       ├── tree.js
│           │   │       ├── upload.js
│           │   │       └── util.js
│           │   ├── layui.all.js
│           │   ├── layui.js
│           │   ├── modules
│           │   │   ├── tag.css
│           │   │   └── tag.js
│           │   └── static
│           │       ├── cropper
│           │       │   ├── cropper.css
│           │       │   ├── cropper.js
│           │       │   └── croppers.js
│           │       └── xmselect
│           │           ├── index.html
│           │           ├── static
│           │           │   ├── 2.js
│           │           │   ├── 3.js
│           │           │   ├── docs.js
│           │           │   ├── element-icons.535877f.woff
│           │           │   ├── element-icons.732389d.ttf
│           │           │   └── wx.f391ad4.jpg
│           │           └── xm-select.js
│           └── modules
│               └── tag.css
├── Runtime
│   ├── Cache
│   ├── Conf
│   │   └── config.php
│   ├── Data
│   │   ├── _bak
│   │   │   └── 20200401_7715_1.sql
│   │   ├── _fields
│   │   │   └── icp.gxl_icp.php
│   │   ├── _gxlnews
│   │   │   ├── list.php
│   │   │   ├── listaudio.php
│   │   │   ├── listlinks.php
│   │   │   ├── listnews.php
│   │   │   ├── listtree.php
│   │   │   └── listzhidao.php
│   │   └── _nav
│   │       └── list.php
│   ├── Install
│   │   └── install.sql
│   ├── Js
│   ├── Logs
│   └── Temp
│       ├── 2
│       │   └── b
│       │       └── 2b80ae215d9c545644e55a36259af23f.php
│       ├── 6
│       │   └── d
│       │       └── 6d91079d4f40bfd224b417c52b3667cf.php
│       ├── 8
│       │   └── e
│       │       └── 8ea4dd7ec3244fac0e0630471cbfea3f.php
│       ├── 9
│       │   ├── 5
│       │   │   └── 95208bb3dec25ee410b7b6888c2388e7.php
│       │   └── b
│       │       └── 9b49b485e806e83fc47cfa3743df2389.php
│       └── d
│           └── c
│               └── dccc8e53c57572550fd27c1deb018f6f.php
├── Tpl
│   ├── cat3
│   │   ├── Links_links.html
│   │   ├── gxl_fend.html
│   │   ├── gxl_head.html
│   │   ├── gxl_index.html
│   │   ├── gxl_links.html
│   │   ├── gxl_linkslist.html
│   │   ├── gxl_login.html
│   │   └── gxl_zhidao.html
│   └── icp
│       ├── gxl_fend.html
│       ├── gxl_head.html
│       ├── gxl_icp.html
│       ├── gxl_icpsearch.html
│       └── gxl_index.html
├── admin.php
├── index.php
├── install.php
├── kan
│   ├── 1-full.jpg
│   ├── css
│   │   ├── basezb.css
│   │   ├── index.css
│   │   ├── layui.css
│   │   └── style.css
│   ├── font
│   │   ├── iconfont.eot
│   │   ├── iconfont.eot@
│   │   ├── iconfont.svg
│   │   ├── iconfont.ttf
│   │   └── iconfont.woff
│   ├── fonts
│   │   ├── demo.css
│   │   ├── demo_index.html
│   │   ├── iconfont.css
│   │   ├── iconfont.eot
│   │   ├── iconfont.js
│   │   ├── iconfont.json
│   │   ├── iconfont.svg
│   │   ├── iconfont.ttf
│   │   ├── iconfont.woff
│   │   └── iconfont.woff2
│   ├── images
│   │   ├── close.png
│   │   ├── icons
│   │   │   ├── alert.gif
│   │   │   ├── alert.png
│   │   │   ├── cross.gif
│   │   │   ├── cross.png
│   │   │   ├── error.gif
│   │   │   ├── error.png
│   │   │   ├── succ.gif
│   │   │   └── succ.png
│   │   └── logo.png
│   └── js
│       ├── ad.js
│       ├── amazonmenu.css
│       ├── amazonmenu.js
│       ├── default-skin
│       │   ├── default-skin.css
│       │   ├── default-skin.png
│       │   ├── default-skin.svg
│       │   └── preloader.gif
│       ├── down.js
│       ├── film_slide_back.js
│       ├── foot_js.js
│       ├── index18.js
│       ├── jquery-1.12.2.min.js
│       ├── jquery-1.8.3.min.js
│       ├── jquery.SuperSlide.2.1.1.js
│       ├── jquery.base.js
│       ├── jquery.bookblock1.js
│       ├── jquery.js
│       ├── jquery.masonry.min.js
│       ├── jquery.qrcode.min.js
│       ├── jquery.quicksand.js
│       ├── jquery.ting.js
│       ├── js.js
│       ├── layer.js
│       ├── lazyload.js
│       ├── modernizr.custom.js
│       ├── piccontent.min.js
│       ├── playclass.js
│       ├── read.js
│       ├── script----.js
│       ├── script.js
│       ├── scrollbar.js
│       ├── skin
│       │   └── default
│       │       ├── icon-ext.png
│       │       ├── icon.png
│       │       ├── layer.css
│       │       ├── loading-0.gif
│       │       ├── loading-1.gif
│       │       └── loading-2.gif
│       ├── slide.js
│       ├── superslide.js
│       ├── uaredirectforpc.js
│       └── v256.js
├── layui
│   ├── css
│   │   ├── layui.css
│   │   └── modules
│   │       ├── code.css
│   │       ├── laydate
│   │       │   └── default
│   │       │       └── laydate.css
│   │       └── layer
│   │           └── default
│   │               ├── icon-ext.png
│   │               ├── icon.png
│   │               ├── layer.css
│   │               ├── loading-0.gif
│   │               ├── loading-1.gif
│   │               └── loading-2.gif
│   ├── font
│   │   ├── iconfont.eot
│   │   ├── iconfont.svg
│   │   ├── iconfont.ttf
│   │   ├── iconfont.woff
│   │   └── iconfont.woff2
│   └── layui.js
├── static
│   └── cropper
│       ├── cropper.css
│       ├── cropper.js
│       └── croppers.js
├── 安装说明.txt

【代码下载】: icpbacx-v1.1.zip (10.75 MB, 下载次数: 0)





上一篇:简易办公OA系统
下一篇:SQL数据库+java学生成绩管理系统
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|php中文网 | cnphp.com ( 赣ICP备2021002321号-2 )51LA统计

GMT+8, 2024-3-29 20:30 , Processed in 0.183831 second(s), 40 queries , Gzip On.

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2020, Tencent Cloud.

申明:本站所有资源皆搜集自网络,相关版权归版权持有人所有,如有侵权,请电邮(fiorkn@foxmail.com)告之,本站会尽快删除。

快速回复 返回顶部 返回列表