在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 悟空CRM系统php+mysql

悟空CRM系统php+mysql

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:4.81M
  • 下载次数:2
  • 浏览次数:25
  • 发布时间:2023-12-09
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: MySql crm系统 悟空CRM sql php

实例介绍

【实例简介】php mysql 悟空CRM系统 客户管理平台系统

【实例截图】

from clipboard

【核心代码】

.
├── 5KCRM0.5.1
│   ├── App
│   │   ├── Common
│   │   │   └── common.php
│   │   ├── Conf
│   │   │   ├── app_debug.php
│   │   │   ├── config.php
│   │   │   ├── debug.php
│   │   │   ├── tags.php
│   │   │   ├── test.txt
│   │   │   └── version.php
│   │   ├── Lang
│   │   │   ├── en-us
│   │   │   │   ├── actionlog.php
│   │   │   │   ├── announcement.php
│   │   │   │   ├── business.php
│   │   │   │   ├── comment.php
│   │   │   │   ├── common.php
│   │   │   │   ├── contacts.php
│   │   │   │   ├── contract.php
│   │   │   │   ├── customer.php
│   │   │   │   ├── email.php
│   │   │   │   ├── event.php
│   │   │   │   ├── file.php
│   │   │   │   ├── finance.php
│   │   │   │   ├── index.php
│   │   │   │   ├── install.php
│   │   │   │   ├── knowledge.php
│   │   │   │   ├── leads.php
│   │   │   │   ├── log.php
│   │   │   │   ├── message.php
│   │   │   │   ├── navigation.php
│   │   │   │   ├── permission.php
│   │   │   │   ├── product.php
│   │   │   │   ├── setting.php
│   │   │   │   ├── task.php
│   │   │   │   └── user.php
│   │   │   └── zh-cn
│   │   │       ├── actionlog.php
│   │   │       ├── announcement.php
│   │   │       ├── business.php
│   │   │       ├── comment.php
│   │   │       ├── common.php
│   │   │       ├── contacts.php
│   │   │       ├── contract.php
│   │   │       ├── customer.php
│   │   │       ├── dynamic.php
│   │   │       ├── email.php
│   │   │       ├── event.php
│   │   │       ├── file.php
│   │   │       ├── finance.php
│   │   │       ├── index.php
│   │   │       ├── install.php
│   │   │       ├── knowledge.php
│   │   │       ├── leads.php
│   │   │       ├── log.php
│   │   │       ├── message.php
│   │   │       ├── navigation.php
│   │   │       ├── permission.php
│   │   │       ├── product.php
│   │   │       ├── setting.php
│   │   │       ├── sms.php
│   │   │       ├── task.php
│   │   │       └── user.php
│   │   ├── Lib
│   │   │   ├── Action
│   │   │   │   ├── ActionLogAction.class.php
│   │   │   │   ├── AnnouncementAction.class.php
│   │   │   │   ├── BusinessAction.class.php
│   │   │   │   ├── CommentAction.class.php
│   │   │   │   ├── ContactsAction.class.php
│   │   │   │   ├── ContractAction.class.php
│   │   │   │   ├── CustomerAction.class.php
│   │   │   │   ├── DataAction.class.php
│   │   │   │   ├── DynamicAction.class.php
│   │   │   │   ├── EmailAction.class.php
│   │   │   │   ├── EventAction.class.php
│   │   │   │   ├── FileAction.class.php
│   │   │   │   ├── FinanceAction.class.php
│   │   │   │   ├── IndexAction.class.php
│   │   │   │   ├── InstallAction.class.php
│   │   │   │   ├── KnowledgeAction.class.php
│   │   │   │   ├── LeadsAction.class.php
│   │   │   │   ├── LogAction.class.php
│   │   │   │   ├── MessageAction.class.php
│   │   │   │   ├── NavigationAction.class.php
│   │   │   │   ├── PermissionAction.class.php
│   │   │   │   ├── ProductAction.class.php
│   │   │   │   ├── SettingAction.class.php
│   │   │   │   ├── SmsAction.class.php
│   │   │   │   ├── TaskAction.class.php
│   │   │   │   ├── UpgradeAction.class.php
│   │   │   │   ├── UserAction.class.php
│   │   │   │   └── WeixinAction.class.php
│   │   │   ├── Behavior
│   │   │   │   ├── AppAuthenticateBehavior.class.php
│   │   │   │   ├── AppBehavior.class.php
│   │   │   │   ├── AuthenticateBehavior.class.php
│   │   │   │   ├── CheckLangBehavior.class.php
│   │   │   │   └── MobileCheckBehavior.class.php
│   │   │   ├── Model
│   │   │   │   ├── BusinessDataModel.class.php
│   │   │   │   ├── BusinessModel.class.php
│   │   │   │   ├── BusinessProductViewModel.class.php
│   │   │   │   ├── BusinessStatusFlowModel.class.php
│   │   │   │   ├── BusinessStatusModel.class.php
│   │   │   │   ├── BusinessViewModel.class.php
│   │   │   │   ├── CaresViewModel.class.php
│   │   │   │   ├── CommentViewModel.class.php
│   │   │   │   ├── ConfigModel.class.php
│   │   │   │   ├── ContactsViewModel.class.php
│   │   │   │   ├── ContractViewModel.class.php
│   │   │   │   ├── ControlModel.class.php
│   │   │   │   ├── ControlModuleModel.class.php
│   │   │   │   ├── CustomerDataModel.class.php
│   │   │   │   ├── CustomerModel.class.php
│   │   │   │   ├── CustomerViewModel.class.php
│   │   │   │   ├── EventModel.class.php
│   │   │   │   ├── EventViewModel.class.php
│   │   │   │   ├── FieldModel.class.php
│   │   │   │   ├── KnowledgeCategoryModel.class.php
│   │   │   │   ├── KnowledgeModel.class.php
│   │   │   │   ├── KnowledgeViewModel.class.php
│   │   │   │   ├── LeadsDataModel.class.php
│   │   │   │   ├── LeadsModel.class.php
│   │   │   │   ├── LeadsViewModel.class.php
│   │   │   │   ├── MessageReceiveViewModel.class.php
│   │   │   │   ├── MessageSendViewModel.class.php
│   │   │   │   ├── PayablesViewModel.class.php
│   │   │   │   ├── PaymentorderViewModel.class.php
│   │   │   │   ├── ProductCategoryModel.class.php
│   │   │   │   ├── ProductDataModel.class.php
│   │   │   │   ├── ProductModel.class.php
│   │   │   │   ├── ProductViewModel.class.php
│   │   │   │   ├── ReceivablesViewModel.class.php
│   │   │   │   ├── ReceivingorderViewModel.class.php
│   │   │   │   ├── RoleViewModel.class.php
│   │   │   │   ├── SalesViewModel.class.php
│   │   │   │   ├── TasksModel.class.php
│   │   │   │   ├── TasksViewModel.class.php
│   │   │   │   ├── UserDepartmentModel.class.php
│   │   │   │   ├── UserModel.class.php
│   │   │   │   ├── UserRoleModel.class.php
│   │   │   │   └── UserViewModel.class.php
│   │   │   ├── ORG
│   │   │   │   ├── Mail.class.php
│   │   │   │   ├── Page.class.php
│   │   │   │   ├── QRCode
│   │   │   │   │   ├── phpqrcode.php
│   │   │   │   │   ├── qrbitstream.php
│   │   │   │   │   ├── qrconfig.php
│   │   │   │   │   ├── qrconst.php
│   │   │   │   │   ├── qrencode.php
│   │   │   │   │   ├── qrimage.php
│   │   │   │   │   ├── qrinput.php
│   │   │   │   │   ├── qrlib.class.php
│   │   │   │   │   ├── qrmask.php
│   │   │   │   │   ├── qrrscode.php
│   │   │   │   │   ├── qrspec.php
│   │   │   │   │   ├── qrsplit.php
│   │   │   │   │   └── qrtools.php
│   │   │   │   ├── Scan.class.php
│   │   │   │   ├── Services_JSON.class.php
│   │   │   │   ├── SplitWord.class.php
│   │   │   │   ├── Unwrap.class.php
│   │   │   │   ├── UploadFile.class.php
│   │   │   │   └── dict.csv
│   │   │   └── Widget
│   │   │       ├── Common
│   │   │       │   ├── Announcement
│   │   │       │   │   └── index.html
│   │   │       │   ├── Business
│   │   │       │   │   └── index.html
│   │   │       │   ├── Contacts
│   │   │       │   │   └── index.html
│   │   │       │   ├── Customer
│   │   │       │   │   └── index.html
│   │   │       │   ├── Customerorigin
│   │   │       │   │   └── index.html
│   │   │       │   ├── Dashboard
│   │   │       │   │   └── index.html
│   │   │       │   ├── Event
│   │   │       │   │   └── index.html
│   │   │       │   ├── Knowledge
│   │   │       │   │   └── index.html
│   │   │       │   ├── Leads
│   │   │       │   │   └── index.html
│   │   │       │   ├── Notepad
│   │   │       │   │   └── index.html
│   │   │       │   ├── Payables
│   │   │       │   │   └── index.html
│   │   │       │   ├── Paymentorder
│   │   │       │   │   └── index.html
│   │   │       │   ├── Product
│   │   │       │   │   └── index.html
│   │   │       │   ├── Productmonthlyamount
│   │   │       │   │   └── index.html
│   │   │       │   ├── Productmonthlysales
│   │   │       │   │   └── index.html
│   │   │       │   ├── Receivables
│   │   │       │   │   └── index.html
│   │   │       │   ├── Receivemonthly
│   │   │       │   │   └── index.html
│   │   │       │   ├── Receiveyearcomparison
│   │   │       │   │   └── index.html
│   │   │       │   ├── Receivingorder
│   │   │       │   │   └── index.html
│   │   │       │   ├── Salesfunnel
│   │   │       │   │   └── index.html
│   │   │       │   └── Task
│   │   │       │       └── index.html
│   │   │       ├── CommonWidget.class.php
│   │   │       ├── Navigation
│   │   │       │   └── index.html
│   │   │       ├── NavigationWidget.class.php
│   │   │       └── WidgetBackUp
│   │   │           ├── Business
│   │   │           │   └── index.html
│   │   │           ├── BusinessWidget.class.php
│   │   │           ├── Contacts
│   │   │           │   └── index.html
│   │   │           ├── ContactsWidget.class.php
│   │   │           ├── Customer
│   │   │           │   └── index.html
│   │   │           ├── CustomerWidget.class.php
│   │   │           ├── Event
│   │   │           │   └── index.html
│   │   │           ├── EventWidget.class.php
│   │   │           ├── Finance
│   │   │           │   └── index.html
│   │   │           ├── FinanceWidget.class.php
│   │   │           ├── Knowledge
│   │   │           │   └── index.html
│   │   │           ├── KnowledgeWidget.class.php
│   │   │           ├── Leads
│   │   │           │   └── index.html
│   │   │           ├── LeadsWidget.class.php
│   │   │           ├── Payables
│   │   │           │   └── index.html
│   │   │           ├── PayablesWidget.class.php
│   │   │           ├── Paymentorder
│   │   │           │   └── index.html
│   │   │           ├── PaymentorderWidget.class.php
│   │   │           ├── Product
│   │   │           │   └── index.html
│   │   │           ├── ProductWidget.class.php
│   │   │           ├── Receivables
│   │   │           │   └── index.html
│   │   │           ├── ReceivablesWidget.class.php
│   │   │           ├── Receivingorder
│   │   │           │   └── index.html
│   │   │           ├── ReceivingorderWidget.class.php
│   │   │           ├── Task
│   │   │           │   └── index.html
│   │   │           ├── TaskWidget.class.php
│   │   │           ├── Welcome
│   │   │           │   └── index.html
│   │   │           └── WelcomeWidget.class.php
│   │   └── Tpl
│   │       ├── ActionLog
│   │       │   └── index.html
│   │       ├── Announcement
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   └── view.html
│   │       ├── Business
│   │       │   ├── add.html
│   │       │   ├── advance.html
│   │       │   ├── analytics.html
│   │       │   ├── assigndialog.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   └── view.html
│   │       ├── Comment
│   │       │   ├── add.html
│   │       │   └── edit.html
│   │       ├── Contacts
│   │       │   ├── add.html
│   │       │   ├── add_dialog.html
│   │       │   ├── checklistdialog.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── index.html
│   │       │   ├── radiolistdialog.html
│   │       │   └── view.html
│   │       ├── Contract
│   │       │   ├── add.html
│   │       │   ├── adddialog.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   └── view.html
│   │       ├── Customer
│   │       │   ├── add.html
│   │       │   ├── analytics.html
│   │       │   ├── cares.html
│   │       │   ├── caresadd.html
│   │       │   ├── caresedit.html
│   │       │   ├── caresview.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── fenpei.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   ├── search.html
│   │       │   └── view.html
│   │       ├── Dynamic
│   │       │   ├── index.html
│   │       │   └── index2.html
│   │       ├── Email
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   ├── smtp.html
│   │       │   ├── smtpadd.html
│   │       │   └── smtpedit.html
│   │       ├── Event
│   │       │   ├── add.html
│   │       │   ├── add_dialog.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── index.html
│   │       │   └── view.html
│   │       ├── File
│   │       │   └── add.html
│   │       ├── Finance
│   │       │   ├── analytics.html
│   │       │   ├── payables.html
│   │       │   ├── payablesadd.html
│   │       │   ├── payablesadddialog.html
│   │       │   ├── payablesedit.html
│   │       │   ├── payableslistdialog.html
│   │       │   ├── payablesview.html
│   │       │   ├── paymentorder.html
│   │       │   ├── paymentorderadd.html
│   │       │   ├── paymentorderadddialog.html
│   │       │   ├── paymentorderedit.html
│   │       │   ├── paymentorderview.html
│   │       │   ├── receivables.html
│   │       │   ├── receivablesadd.html
│   │       │   ├── receivablesadddialog.html
│   │       │   ├── receivablesedit.html
│   │       │   ├── receivableslistdialog.html
│   │       │   ├── receivablesview.html
│   │       │   ├── receivingorder.html
│   │       │   ├── receivingorderadd.html
│   │       │   ├── receivingorderadddialog.html
│   │       │   ├── receivingorderedit.html
│   │       │   └── receivingorderview.html
│   │       ├── Index
│   │       │   ├── index.html
│   │       │   ├── widget_add.html
│   │       │   └── widget_edit.html
│   │       ├── Install
│   │       │   ├── index.html
│   │       │   ├── install.html
│   │       │   ├── step1.html
│   │       │   ├── step2.html
│   │       │   ├── step3.html
│   │       │   ├── step4.html
│   │       │   └── upgrade.html
│   │       ├── Knowledge
│   │       │   ├── add.html
│   │       │   ├── allknowledge.html
│   │       │   ├── announce.html
│   │       │   ├── category.html
│   │       │   ├── categoryadd.html
│   │       │   ├── categoryedit.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── index.html
│   │       │   └── view.html
│   │       ├── Leads
│   │       │   ├── add.html
│   │       │   ├── analytics.html
│   │       │   ├── assigndialog.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── fenpei.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   └── view.html
│   │       ├── Log
│   │       │   ├── add.html
│   │       │   ├── anly.html
│   │       │   ├── category.html
│   │       │   ├── categoryadd.html
│   │       │   ├── categorydelete.html
│   │       │   ├── categoryedit.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   ├── mylog.html
│   │       │   ├── mylog_add.html
│   │       │   ├── mylog_edit.html
│   │       │   ├── mylog_view.html
│   │       │   ├── tasklog.html
│   │       │   ├── view.html
│   │       │   └── wxadd.html
│   │       ├── Message
│   │       │   ├── index.html
│   │       │   ├── send.html
│   │       │   └── view.html
│   │       ├── Navigation
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   └── setting.html
│   │       ├── Permission
│   │       │   └── user_authorize.html
│   │       ├── Product
│   │       │   ├── add.html
│   │       │   ├── adddialog.html
│   │       │   ├── allproductdialog.html
│   │       │   ├── category.html
│   │       │   ├── category_add.html
│   │       │   ├── category_edit.html
│   │       │   ├── count.html
│   │       │   ├── edit.html
│   │       │   ├── editdialog.html
│   │       │   ├── excelimport.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   ├── mutildialog.html
│   │       │   ├── new_dialog.html
│   │       │   └── view.html
│   │       ├── Public
│   │       │   ├── alert.html
│   │       │   ├── error.html
│   │       │   ├── exception.html
│   │       │   ├── footer.html
│   │       │   ├── header.html
│   │       │   ├── message.html
│   │       │   └── success.html
│   │       ├── Setting
│   │       │   ├── businessstatus.html
│   │       │   ├── businessstatusadd.html
│   │       │   ├── businessstatusdelete.html
│   │       │   ├── businessstatusedit.html
│   │       │   ├── defaultinfo.html
│   │       │   ├── fieldadd.html
│   │       │   ├── fieldedit.html
│   │       │   ├── fields.html
│   │       │   ├── index.html
│   │       │   ├── industry.html
│   │       │   ├── industryadd.html
│   │       │   ├── industrydelete.html
│   │       │   ├── industryedit.html
│   │       │   ├── leadsstatus.html
│   │       │   ├── leadsstatusadd.html
│   │       │   ├── leadsstatusdelete.html
│   │       │   ├── leadsstatusedit.html
│   │       │   ├── mapdialog.html
│   │       │   ├── sendemail.html
│   │       │   ├── sendsms.html
│   │       │   ├── smsrecord.html
│   │       │   ├── smtp.html
│   │       │   ├── source.html
│   │       │   ├── sourceadd.html
│   │       │   ├── sourcedelete.html
│   │       │   ├── sourceedit.html
│   │       │   ├── statusflow.html
│   │       │   ├── statusflowadd.html
│   │       │   ├── statusflowedit.html
│   │       │   └── weixin.html
│   │       ├── Sms
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   └── index.html
│   │       ├── Task
│   │       │   ├── add.html
│   │       │   ├── add_dialog.html
│   │       │   ├── analytics.html
│   │       │   ├── edit.html
│   │       │   ├── excelimport.html
│   │       │   ├── index.html
│   │       │   ├── listdialog.html
│   │       │   └── view.html
│   │       └── User
│   │           ├── active.html
│   │           ├── add.html
│   │           ├── alluser.html
│   │           ├── authorize.html
│   │           ├── changRole.html
│   │           ├── delete.html
│   │           ├── department.html
│   │           ├── department_add.html
│   │           ├── department_edit.html
│   │           ├── dialoginfo.html
│   │           ├── edit.html
│   │           ├── index.html
│   │           ├── listdialog.html
│   │           ├── login.html
│   │           ├── lostpw.html
│   │           ├── mutilistdialog.html
│   │           ├── notice.html
│   │           ├── resetpw.html
│   │           ├── role.html
│   │           ├── role_add.html
│   │           ├── role_ajax_add.html
│   │           ├── role_edit.html
│   │           ├── role_user_add.html
│   │           ├── roleedit.html
│   │           ├── user_role.html
│   │           ├── view.html
│   │           ├── weixin.html
│   │           └── weixinbinding.html
│   ├── Base
│   │   ├── Common
│   │   │   ├── common.php
│   │   │   ├── functions.php
│   │   │   └── runtime.php
│   │   ├── Conf
│   │   │   ├── alias.php
│   │   │   ├── convention.php
│   │   │   ├── debug.php
│   │   │   └── tags.php
│   │   ├── Extend
│   │   │   ├── Library
│   │   │   │   └── ORG
│   │   │   │       ├── PHPExcel
│   │   │   │       │   ├── PHPExcel
│   │   │   │       │   │   ├── Autoloader.php
│   │   │   │       │   │   ├── CachedObjectStorage
│   │   │   │       │   │   │   ├── APC.php
│   │   │   │       │   │   │   ├── CacheBase.php
│   │   │   │       │   │   │   ├── DiscISAM.php
│   │   │   │       │   │   │   ├── ICache.php
│   │   │   │       │   │   │   ├── Igbinary.php
│   │   │   │       │   │   │   ├── Memcache.php
│   │   │   │       │   │   │   ├── Memory.php
│   │   │   │       │   │   │   ├── MemoryGZip.php
│   │   │   │       │   │   │   ├── MemorySerialized.php
│   │   │   │       │   │   │   ├── PHPTemp.php
│   │   │   │       │   │   │   ├── SQLite.php
│   │   │   │       │   │   │   ├── SQLite3.php
│   │   │   │       │   │   │   └── Wincache.php
│   │   │   │       │   │   ├── CachedObjectStorageFactory.php
│   │   │   │       │   │   ├── Calculation
│   │   │   │       │   │   │   ├── Database.php
│   │   │   │       │   │   │   ├── DateTime.php
│   │   │   │       │   │   │   ├── Engineering.php
│   │   │   │       │   │   │   ├── Exception.php
│   │   │   │       │   │   │   ├── ExceptionHandler.php
│   │   │   │       │   │   │   ├── Financial.php
│   │   │   │       │   │   │   ├── FormulaParser.php
│   │   │   │       │   │   │   ├── FormulaToken.php
│   │   │   │       │   │   │   ├── Function.php
│   │   │   │       │   │   │   ├── Functions.php
│   │   │   │       │   │   │   ├── Logical.php
│   │   │   │       │   │   │   ├── LookupRef.php
│   │   │   │       │   │   │   ├── MathTrig.php
│   │   │   │       │   │   │   ├── Statistical.php
│   │   │   │       │   │   │   ├── TextData.php
│   │   │   │       │   │   │   ├── Token
│   │   │   │       │   │   │   │   └── Stack.php
│   │   │   │       │   │   │   └── functionlist.txt
│   │   │   │       │   │   ├── Calculation.php
│   │   │   │       │   │   ├── Cell
│   │   │   │       │   │   │   ├── AdvancedValueBinder.php
│   │   │   │       │   │   │   ├── DataType.php
│   │   │   │       │   │   │   ├── DataValidation.php
│   │   │   │       │   │   │   ├── DefaultValueBinder.php
│   │   │   │       │   │   │   ├── Hyperlink.php
│   │   │   │       │   │   │   └── IValueBinder.php
│   │   │   │       │   │   ├── Cell.php
│   │   │   │       │   │   ├── Chart
│   │   │   │       │   │   │   ├── DataSeries.php
│   │   │   │       │   │   │   ├── DataSeriesValues.php
│   │   │   │       │   │   │   ├── Exception.php
│   │   │   │       │   │   │   ├── Layout.php
│   │   │   │       │   │   │   ├── Legend.php
│   │   │   │       │   │   │   ├── PlotArea.php
│   │   │   │       │   │   │   ├── Renderer
│   │   │   │       │   │   │   │   ├── PHP Charting Libraries.txt
│   │   │   │       │   │   │   │   └── jpgraph.php
│   │   │   │       │   │   │   └── Title.php
│   │   │   │       │   │   ├── Chart.php
│   │   │   │       │   │   ├── Comment.php
│   │   │   │       │   │   ├── DocumentProperties.php
│   │   │   │       │   │   ├── DocumentSecurity.php
│   │   │   │       │   │   ├── Exception.php
│   │   │   │       │   │   ├── HashTable.php
│   │   │   │       │   │   ├── IComparable.php
│   │   │   │       │   │   ├── IOFactory.php
│   │   │   │       │   │   ├── NamedRange.php
│   │   │   │       │   │   ├── Reader
│   │   │   │       │   │   │   ├── CSV.php
│   │   │   │       │   │   │   ├── DefaultReadFilter.php
│   │   │   │       │   │   │   ├── Excel2003XML.php
│   │   │   │       │   │   │   ├── Excel2007
│   │   │   │       │   │   │   │   ├── Chart.php
│   │   │   │       │   │   │   │   └── Theme.php
│   │   │   │       │   │   │   ├── Excel2007.php
│   │   │   │       │   │   │   ├── Excel5
│   │   │   │       │   │   │   │   └── Escher.php
│   │   │   │       │   │   │   ├── Excel5.php
│   │   │   │       │   │   │   ├── Gnumeric.php
│   │   │   │       │   │   │   ├── HTML.php
│   │   │   │       │   │   │   ├── IReadFilter.php
│   │   │   │       │   │   │   ├── IReader.php
│   │   │   │       │   │   │   ├── OOCalc.php
│   │   │   │       │   │   │   └── SYLK.php
│   │   │   │       │   │   ├── ReferenceHelper.php
│   │   │   │       │   │   ├── RichText
│   │   │   │       │   │   │   ├── ITextElement.php
│   │   │   │       │   │   │   ├── Run.php
│   │   │   │       │   │   │   └── TextElement.php
│   │   │   │       │   │   ├── RichText.php
│   │   │   │       │   │   ├── Settings.php
│   │   │   │       │   │   ├── Shared
│   │   │   │       │   │   │   ├── CodePage.php
│   │   │   │       │   │   │   ├── Date.php
│   │   │   │       │   │   │   ├── Drawing.php
│   │   │   │       │   │   │   ├── Escher
│   │   │   │       │   │   │   │   ├── DgContainer
│   │   │   │       │   │   │   │   │   ├── SpgrContainer
│   │   │   │       │   │   │   │   │   │   └── SpContainer.php
│   │   │   │       │   │   │   │   │   └── SpgrContainer.php
│   │   │   │       │   │   │   │   ├── DgContainer.php
│   │   │   │       │   │   │   │   ├── DggContainer
│   │   │   │       │   │   │   │   │   ├── BstoreContainer
│   │   │   │       │   │   │   │   │   │   ├── BSE
│   │   │   │       │   │   │   │   │   │   │   └── Blip.php
│   │   │   │       │   │   │   │   │   │   └── BSE.php
│   │   │   │       │   │   │   │   │   └── BstoreContainer.php
│   │   │   │       │   │   │   │   └── DggContainer.php
│   │   │   │       │   │   │   ├── Escher.php
│   │   │   │       │   │   │   ├── Excel5.php
│   │   │   │       │   │   │   ├── File.php
│   │   │   │       │   │   │   ├── Font.php
│   │   │   │       │   │   │   ├── JAMA
│   │   │   │       │   │   │   │   ├── CHANGELOG.TXT
│   │   │   │       │   │   │   │   ├── CholeskyDecomposition.php
│   │   │   │       │   │   │   │   ├── EigenvalueDecomposition.php
│   │   │   │       │   │   │   │   ├── LUDecomposition.php
│   │   │   │       │   │   │   │   ├── Matrix.php
│   │   │   │       │   │   │   │   ├── QRDecomposition.php
│   │   │   │       │   │   │   │   ├── SingularValueDecomposition.php
│   │   │   │       │   │   │   │   ├── examples
│   │   │   │       │   │   │   │   │   ├── LMQuadTest.php
│   │   │   │       │   │   │   │   │   ├── LagrangeInterpolation.php
│   │   │   │       │   │   │   │   │   ├── LagrangeInterpolation2.php
│   │   │   │       │   │   │   │   │   ├── LevenbergMarquardt.php
│   │   │   │       │   │   │   │   │   ├── MagicSquareExample.php
│   │   │   │       │   │   │   │   │   ├── Stats.php
│   │   │   │       │   │   │   │   │   ├── benchmark.php
│   │   │   │       │   │   │   │   │   ├── polyfit.php
│   │   │   │       │   │   │   │   │   └── tile.php
│   │   │   │       │   │   │   │   ├── tests
│   │   │   │       │   │   │   │   │   └── TestMatrix.php
│   │   │   │       │   │   │   │   └── utils
│   │   │   │       │   │   │   │       ├── Error.php
│   │   │   │       │   │   │   │       └── Maths.php
│   │   │   │       │   │   │   ├── OLE
│   │   │   │       │   │   │   │   ├── ChainedBlockStream.php
│   │   │   │       │   │   │   │   ├── PPS
│   │   │   │       │   │   │   │   │   ├── File.php
│   │   │   │       │   │   │   │   │   └── Root.php
│   │   │   │       │   │   │   │   └── PPS.php
│   │   │   │       │   │   │   ├── OLE.php
│   │   │   │       │   │   │   ├── OLERead.php
│   │   │   │       │   │   │   ├── PCLZip
│   │   │   │       │   │   │   │   ├── gnu-lgpl.txt
│   │   │   │       │   │   │   │   ├── pclzip.lib.php
│   │   │   │       │   │   │   │   └── readme.txt
│   │   │   │       │   │   │   ├── PasswordHasher.php
│   │   │   │       │   │   │   ├── String.php
│   │   │   │       │   │   │   ├── XMLWriter.php
│   │   │   │       │   │   │   ├── ZipArchive.php
│   │   │   │       │   │   │   ├── ZipStreamWrapper.php
│   │   │   │       │   │   │   └── trend
│   │   │   │       │   │   │       ├── bestFitClass.php
│   │   │   │       │   │   │       ├── exponentialBestFitClass.php
│   │   │   │       │   │   │       ├── linearBestFitClass.php
│   │   │   │       │   │   │       ├── logarithmicBestFitClass.php
│   │   │   │       │   │   │       ├── polynomialBestFitClass.php
│   │   │   │       │   │   │       ├── powerBestFitClass.php
│   │   │   │       │   │   │       └── trendClass.php
│   │   │   │       │   │   ├── Style
│   │   │   │       │   │   │   ├── Alignment.php
│   │   │   │       │   │   │   ├── Border.php
│   │   │   │       │   │   │   ├── Borders.php
│   │   │   │       │   │   │   ├── Color.php
│   │   │   │       │   │   │   ├── Conditional.php
│   │   │   │       │   │   │   ├── Fill.php
│   │   │   │       │   │   │   ├── Font.php
│   │   │   │       │   │   │   ├── NumberFormat.php
│   │   │   │       │   │   │   └── Protection.php
│   │   │   │       │   │   ├── Style.php
│   │   │   │       │   │   ├── Worksheet
│   │   │   │       │   │   │   ├── AutoFilter
│   │   │   │       │   │   │   │   ├── Column
│   │   │   │       │   │   │   │   │   └── Rule.php
│   │   │   │       │   │   │   │   └── Column.php
│   │   │   │       │   │   │   ├── AutoFilter.php
│   │   │   │       │   │   │   ├── BaseDrawing.php
│   │   │   │       │   │   │   ├── CellIterator.php
│   │   │   │       │   │   │   ├── ColumnDimension.php
│   │   │   │       │   │   │   ├── Drawing
│   │   │   │       │   │   │   │   └── Shadow.php
│   │   │   │       │   │   │   ├── Drawing.php
│   │   │   │       │   │   │   ├── HeaderFooter.php
│   │   │   │       │   │   │   ├── HeaderFooterDrawing.php
│   │   │   │       │   │   │   ├── MemoryDrawing.php
│   │   │   │       │   │   │   ├── PageMargins.php
│   │   │   │       │   │   │   ├── PageSetup.php
│   │   │   │       │   │   │   ├── Protection.php
│   │   │   │       │   │   │   ├── Row.php
│   │   │   │       │   │   │   ├── RowDimension.php
│   │   │   │       │   │   │   ├── RowIterator.php
│   │   │   │       │   │   │   └── SheetView.php
│   │   │   │       │   │   ├── Worksheet.php
│   │   │   │       │   │   ├── WorksheetIterator.php
│   │   │   │       │   │   ├── Writer
│   │   │   │       │   │   │   ├── CSV.php
│   │   │   │       │   │   │   ├── Excel2007
│   │   │   │       │   │   │   │   ├── Chart.php
│   │   │   │       │   │   │   │   ├── Comments.php
│   │   │   │       │   │   │   │   ├── ContentTypes.php
│   │   │   │       │   │   │   │   ├── DocProps.php
│   │   │   │       │   │   │   │   ├── Drawing.php
│   │   │   │       │   │   │   │   ├── Rels.php
│   │   │   │       │   │   │   │   ├── StringTable.php
│   │   │   │       │   │   │   │   ├── Style.php
│   │   │   │       │   │   │   │   ├── Theme.php
│   │   │   │       │   │   │   │   ├── Workbook.php
│   │   │   │       │   │   │   │   ├── Worksheet.php
│   │   │   │       │   │   │   │   └── WriterPart.php
│   │   │   │       │   │   │   ├── Excel2007.php
│   │   │   │       │   │   │   ├── Excel5
│   │   │   │       │   │   │   │   ├── BIFFwriter.php
│   │   │   │       │   │   │   │   ├── Escher.php
│   │   │   │       │   │   │   │   ├── Font.php
│   │   │   │       │   │   │   │   ├── Parser.php
│   │   │   │       │   │   │   │   ├── Workbook.php
│   │   │   │       │   │   │   │   ├── Worksheet.php
│   │   │   │       │   │   │   │   └── Xf.php
│   │   │   │       │   │   │   ├── Excel5.php
│   │   │   │       │   │   │   ├── HTML.php
│   │   │   │       │   │   │   ├── IWriter.php
│   │   │   │       │   │   │   ├── PDF
│   │   │   │       │   │   │   │   ├── Core.php
│   │   │   │       │   │   │   │   ├── DomPDF.php
│   │   │   │       │   │   │   │   ├── mPDF.php
│   │   │   │       │   │   │   │   └── tcPDF.php
│   │   │   │       │   │   │   └── PDF.php
│   │   │   │       │   │   └── locale
│   │   │   │       │   │       ├── cs
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── da
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── de
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── en
│   │   │   │       │   │       │   └── uk
│   │   │   │       │   │       │       └── config
│   │   │   │       │   │       ├── es
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── fi
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── fr
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── hu
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── it
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── nl
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── no
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── pl
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── pt
│   │   │   │       │   │       │   ├── br
│   │   │   │       │   │       │   │   ├── config
│   │   │   │       │   │       │   │   └── functions
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── ru
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       ├── sv
│   │   │   │       │   │       │   ├── config
│   │   │   │       │   │       │   └── functions
│   │   │   │       │   │       └── tr
│   │   │   │       │   │           ├── config
│   │   │   │       │   │           └── functions
│   │   │   │       │   └── PHPExcel.class.php
│   │   │   │       └── Util
│   │   │   │           └── Page.class.php
│   │   │   ├── Model
│   │   │   │   ├── AdvModel.class.php
│   │   │   │   ├── MongoModel.class.php
│   │   │   │   ├── RelationModel.class.php
│   │   │   │   └── ViewModel.class.php
│   │   │   └── README.txt
│   │   ├── LICENSE.txt
│   │   ├── Lang
│   │   │   ├── en-us.php
│   │   │   └── zh-cn.php
│   │   ├── Lib
│   │   │   ├── Behavior
│   │   │   │   ├── CheckRouteBehavior.class.php
│   │   │   │   ├── ContentReplaceBehavior.class.php
│   │   │   │   ├── LocationTemplateBehavior.class.php
│   │   │   │   ├── ParseTemplateBehavior.class.php
│   │   │   │   ├── ReadHtmlCacheBehavior.class.php
│   │   │   │   ├── ShowPageTraceBehavior.class.php
│   │   │   │   ├── ShowRuntimeBehavior.class.php
│   │   │   │   ├── TokenBuildBehavior.class.php
│   │   │   │   └── WriteHtmlCacheBehavior.class.php
│   │   │   ├── Core
│   │   │   │   ├── Action.class.php
│   │   │   │   ├── App.class.php
│   │   │   │   ├── Behavior.class.php
│   │   │   │   ├── Cache.class.php
│   │   │   │   ├── Db.class.php
│   │   │   │   ├── Dispatcher.class.php
│   │   │   │   ├── Log.class.php
│   │   │   │   ├── Model.class.php
│   │   │   │   ├── Think.class.php
│   │   │   │   ├── ThinkException.class.php
│   │   │   │   ├── View.class.php
│   │   │   │   └── Widget.class.php
│   │   │   ├── Driver
│   │   │   │   ├── Cache
│   │   │   │   │   └── CacheFile.class.php
│   │   │   │   ├── Db
│   │   │   │   │   ├── DbMysql.class.php
│   │   │   │   │   └── DbMysqli.class.php
│   │   │   │   └── TagLib
│   │   │   │       └── TagLibCx.class.php
│   │   │   └── Template
│   │   │       ├── TagLib.class.php
│   │   │       └── ThinkTemplate.class.php
│   │   ├── README.txt
│   │   ├── ThinkPHP.php
│   │   ├── Tpl
│   │   │   ├── default_index.tpl
│   │   │   ├── dispatch_jump.tpl
│   │   │   ├── page_trace.tpl
│   │   │   └── think_exception.tpl
│   │   └── logo.png
│   ├── Public
│   │   ├── Install
│   │   │   ├── css
│   │   │   │   └── install.css
│   │   │   ├── images
│   │   │   │   ├── bg.png
│   │   │   │   ├── btn.png
│   │   │   │   ├── complete.png
│   │   │   │   ├── header.png
│   │   │   │   ├── icon.png
│   │   │   │   ├── ignore.png
│   │   │   │   ├── install1.jpg
│   │   │   │   ├── install2.jpg
│   │   │   │   ├── install3.jpg
│   │   │   │   ├── install4.jpg
│   │   │   │   ├── install5.jpg
│   │   │   │   ├── loading.gif
│   │   │   │   ├── logo.png
│   │   │   │   ├── pop_loading.gif
│   │   │   │   ├── step.png
│   │   │   │   ├── step_01.png
│   │   │   │   ├── step_02.png
│   │   │   │   ├── step_03.png
│   │   │   │   ├── tab.png
│   │   │   │   └── tips_system.png
│   │   │   ├── index.php
│   │   │   ├── js
│   │   │   │   ├── ajaxForm.js
│   │   │   │   ├── jquery.js
│   │   │   │   └── validate.js
│   │   │   ├── templates
│   │   │   │   ├── config-template.php
│   │   │   │   ├── footer.php
│   │   │   │   ├── header.php
│   │   │   │   ├── lock.php
│   │   │   │   ├── s1.php
│   │   │   │   ├── s2.php
│   │   │   │   ├── s3.php
│   │   │   │   ├── s4.php
│   │   │   │   ├── s5.php
│   │   │   │   └── s6.php
│   │   │   └── wemall.sql
│   │   ├── css
│   │   │   ├── background.png
│   │   │   ├── bootstrap-ie6.min.css
│   │   │   ├── bootstrap-responsive.min.css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── default.png
│   │   │   ├── docs.css
│   │   │   ├── dynamic.css
│   │   │   ├── flat
│   │   │   │   ├── _all.css
│   │   │   │   ├── aero.css
│   │   │   │   ├── aero.png
│   │   │   │   ├── aero@2x.png
│   │   │   │   ├── blue.css
│   │   │   │   ├── blue.png
│   │   │   │   ├── blue@2x.png
│   │   │   │   ├── flat.css
│   │   │   │   ├── flat.png
│   │   │   │   ├── flat@2x.png
│   │   │   │   ├── green.css
│   │   │   │   ├── green.png
│   │   │   │   ├── green@2x.png
│   │   │   │   ├── grey.css
│   │   │   │   ├── grey.png
│   │   │   │   ├── grey@2x.png
│   │   │   │   ├── orange.css
│   │   │   │   ├── orange.png
│   │   │   │   ├── orange@2x.png
│   │   │   │   ├── pink.css
│   │   │   │   ├── pink.png
│   │   │   │   ├── pink@2x.png
│   │   │   │   ├── purple.css
│   │   │   │   ├── purple.png
│   │   │   │   ├── purple@2x.png
│   │   │   │   ├── red.css
│   │   │   │   ├── red.png
│   │   │   │   ├── red@2x.png
│   │   │   │   ├── yellow.css
│   │   │   │   ├── yellow.png
│   │   │   │   └── yellow@2x.png
│   │   │   ├── font
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   └── fontawesome-webfont.woff
│   │   │   ├── font-awesome-ie7.min.css
│   │   │   ├── font-awesome.min.css
│   │   │   ├── ie.css
│   │   │   ├── images
│   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   ├── ui-bg_glass_75_ffffff_1x400.png
│   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   ├── ui-bg_inset-soft_95_fef1ec_1x100.png
│   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   ├── ui-icons_cd0a0a_256x240.png
│   │   │   │   └── ui-icons_f6cf3b_256x240.png
│   │   │   ├── jquery-ui-1.10.0.custom.css
│   │   │   ├── jquery.e-calendar.css
│   │   │   ├── jquery.fileupload.css
│   │   │   ├── jquery.ui.1.10.0.ie.css
│   │   │   ├── kindeditor.css
│   │   │   ├── litebox.css
│   │   │   └── treeview
│   │   │       ├── images
│   │   │       │   ├── file.gif
│   │   │       │   ├── folder-closed.gif
│   │   │       │   ├── folder.gif
│   │   │       │   ├── treeview-default.gif
│   │   │       │   └── user_icon.gif
│   │   │       ├── jquery.treeview.css
│   │   │       └── screen.css
│   │   ├── excelmodel
│   │   │   ├── 5kcrm_business_model.xls
│   │   │   ├── 5kcrm_contacts_model.xls
│   │   │   ├── 5kcrm_customer_model.xls
│   │   │   ├── 5kcrm_knowledge_model.xls
│   │   │   ├── 5kcrm_leads_model.xls
│   │   │   ├── 5kcrm_product_model.xls
│   │   │   └── 5kcrm_product_model2.xls
│   │   ├── ico
│   │   │   ├── apple-touch-icon-114-precomposed.png
│   │   │   ├── apple-touch-icon-144-precomposed.png
│   │   │   ├── apple-touch-icon-57-precomposed.png
│   │   │   ├── apple-touch-icon-72-precomposed.png
│   │   │   ├── favicon.ico
│   │   │   └── favicon.png
│   │   ├── img
│   │   │   ├── admin_img.png
│   │   │   ├── analytics_icon.png
│   │   │   ├── announcement.jpg
│   │   │   ├── announcement.png
│   │   │   ├── arrow_down.png
│   │   │   ├── arrow_up.png
│   │   │   ├── avatar_default.png
│   │   │   ├── bs-docs-masthead-pattern.png
│   │   │   ├── btp_out.png
│   │   │   ├── business.jpg
│   │   │   ├── business.png
│   │   │   ├── by_owner.png
│   │   │   ├── by_status.png
│   │   │   ├── by_time.png
│   │   │   ├── caigou.png
│   │   │   ├── cangku.png
│   │   │   ├── cares_icon.png
│   │   │   ├── chart.png
│   │   │   ├── comment.png
│   │   │   ├── contacts_icon.png
│   │   │   ├── contacts_icon.png.png
│   │   │   ├── customer.png
│   │   │   ├── customer_icon.png
│   │   │   ├── customer_locking.png
│   │   │   ├── customer_source_icon.png
│   │   │   ├── customer_unlocking.png
│   │   │   ├── d_w.png
│   │   │   ├── default_img.png
│   │   │   ├── email.png
│   │   │   ├── event.png
│   │   │   ├── finance.jpg
│   │   │   ├── finance.png
│   │   │   ├── fukuandan.png
│   │   │   ├── head.jpg
│   │   │   ├── help.png
│   │   │   ├── help2.png
│   │   │   ├── help3.png
│   │   │   ├── help4.png
│   │   │   ├── hetong.png
│   │   │   ├── house.png
│   │   │   ├── index_notice.png
│   │   │   ├── knowledge.jpg
│   │   │   ├── knowledge.png
│   │   │   ├── kucun.png
│   │   │   ├── l_l.jpg
│   │   │   ├── leads.jpg
│   │   │   ├── leads.png
│   │   │   ├── left_arrow.png
│   │   │   ├── litebox-close.png
│   │   │   ├── litebox-next.png
│   │   │   ├── litebox-prev.png
│   │   │   ├── load.gif
│   │   │   ├── location.png
│   │   │   ├── logo.png
│   │   │   ├── logo_img.png
│   │   │   ├── logo_img1.png
│   │   │   ├── logomini.png
│   │   │   ├── logomini_36px.png
│   │   │   ├── mark_all.png
│   │   │   ├── mark_value.png
│   │   │   ├── menu
│   │   │   │   ├── department_img.png
│   │   │   │   ├── exit_img.png
│   │   │   │   ├── home_img.png
│   │   │   │   ├── log_img.png
│   │   │   │   ├── message_img.png
│   │   │   │   ├── permission_img.png
│   │   │   │   ├── setting_img.png
│   │   │   │   ├── update_img.png
│   │   │   │   └── user_img.png
│   │   │   ├── my_log.png
│   │   │   ├── new.gif
│   │   │   ├── notepad.png
│   │   │   ├── purchase.png
│   │   │   ├── question.png
│   │   │   ├── renwu.png
│   │   │   ├── sales.png
│   │   │   ├── sales_return.png
│   │   │   ├── seach.png
│   │   │   ├── search.png
│   │   │   ├── shangji.png
│   │   │   ├── shoukuandan.png
│   │   │   ├── sms.png
│   │   │   ├── stock.png
│   │   │   ├── task.jpg
│   │   │   ├── task.png
│   │   │   ├── task_alert.png
│   │   │   ├── task_checked.png
│   │   │   ├── task_checked2.png
│   │   │   ├── task_creator.png
│   │   │   ├── task_garbage.png
│   │   │   ├── task_ltime.png
│   │   │   ├── task_mtime.png
│   │   │   ├── task_owner.png
│   │   │   ├── time_annoce.png
│   │   │   ├── tongji.png
│   │   │   ├── tongji2.png
│   │   │   ├── top.gif
│   │   │   ├── tuihuo.png
│   │   │   ├── user.png
│   │   │   ├── user_img.png
│   │   │   ├── view.png
│   │   │   ├── warehouse.png
│   │   │   ├── working_platform.png
│   │   │   ├── xiaoshou.png
│   │   │   ├── yingfukuan.png
│   │   │   ├── yingshoukuan.png
│   │   │   └── youce.png
│   │   ├── js
│   │   │   ├── 5kcrm.js
│   │   │   ├── 5kcrm_zh-cn.js
│   │   │   ├── DateTimeMask.js
│   │   │   ├── PCASClass.js
│   │   │   ├── WdatePicker.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── calendar.js
│   │   │   ├── chart
│   │   │   │   ├── Chart.js
│   │   │   │   ├── adapters
│   │   │   │   │   ├── mootools-adapter.js
│   │   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   │   ├── prototype-adapter.js
│   │   │   │   │   └── prototype-adapter.src.js
│   │   │   │   ├── excanvas.js
│   │   │   │   ├── funnel.js
│   │   │   │   ├── highcharts-more.js
│   │   │   │   ├── highcharts-more.src.js
│   │   │   │   ├── highcharts.js
│   │   │   │   ├── highcharts.src.js
│   │   │   │   ├── highcharts_bak.js
│   │   │   │   ├── modules
│   │   │   │   │   ├── annotations.js
│   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   ├── canvas-tools.js
│   │   │   │   │   ├── canvas-tools.src.js
│   │   │   │   │   ├── data.js
│   │   │   │   │   ├── data.src.js
│   │   │   │   │   ├── exporting.js
│   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   ├── funnel.js
│   │   │   │   │   └── funnel.src.js
│   │   │   │   └── themes
│   │   │   │       ├── dark-blue.js
│   │   │   │       ├── dark-green.js
│   │   │   │       ├── gray.js
│   │   │   │       ├── grid.js
│   │   │   │       └── skies.js
│   │   │   ├── demo.js
│   │   │   ├── formValidator-4.0.1.min.js
│   │   │   ├── formValidatorRegex.js
│   │   │   ├── google-code-prettify
│   │   │   │   ├── prettify.css
│   │   │   │   └── prettify.js
│   │   │   ├── gototop.js
│   │   │   ├── icheck.min.js
│   │   │   ├── ie8-eventlistener.js
│   │   │   ├── images-loaded.min.js
│   │   │   ├── jquery-1.9.0.min.js
│   │   │   ├── jquery-ui-1.10.0.custom.min.js
│   │   │   ├── jquery.PrintArea.js
│   │   │   ├── jquery.e-calendar.js
│   │   │   ├── jquery.inputmask.js
│   │   │   ├── jquery_last.js
│   │   │   ├── jscolor
│   │   │   │   ├── arrow.gif
│   │   │   │   ├── cross.gif
│   │   │   │   ├── hs.png
│   │   │   │   ├── hv.png
│   │   │   │   └── jscolor.js
│   │   │   ├── kindeditor-all-min.js
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── litebox.min.js
│   │   │   ├── mychart
│   │   │   │   ├── echarts-plain.js
│   │   │   │   └── macarons.js
│   │   │   ├── php
│   │   │   │   ├── JSON.php
│   │   │   │   ├── code_char.php
│   │   │   │   └── file_manager_json.php
│   │   │   ├── plugins
│   │   │   │   ├── anchor
│   │   │   │   │   └── anchor.js
│   │   │   │   ├── autoheight
│   │   │   │   │   └── autoheight.js
│   │   │   │   ├── baidumap
│   │   │   │   │   ├── baidumap.js
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── map.html
│   │   │   │   ├── clearhtml
│   │   │   │   │   └── clearhtml.js
│   │   │   │   ├── code
│   │   │   │   │   ├── code.js
│   │   │   │   │   ├── prettify.css
│   │   │   │   │   └── prettify.js
│   │   │   │   ├── emoticons
│   │   │   │   │   ├── emoticons.js
│   │   │   │   │   └── images
│   │   │   │   │       ├── 0.gif
│   │   │   │   │       ├── 1.gif
│   │   │   │   │       ├── 10.gif
│   │   │   │   │       ├── 100.gif
│   │   │   │   │       ├── 101.gif
│   │   │   │   │       ├── 102.gif
│   │   │   │   │       ├── 103.gif
│   │   │   │   │       ├── 104.gif
│   │   │   │   │       ├── 105.gif
│   │   │   │   │       ├── 106.gif
│   │   │   │   │       ├── 107.gif
│   │   │   │   │       ├── 108.gif
│   │   │   │   │       ├── 109.gif
│   │   │   │   │       ├── 11.gif
│   │   │   │   │       ├── 110.gif
│   │   │   │   │       ├── 111.gif
│   │   │   │   │       ├── 112.gif
│   │   │   │   │       ├── 113.gif
│   │   │   │   │       ├── 114.gif
│   │   │   │   │       ├── 115.gif
│   │   │   │   │       ├── 116.gif
│   │   │   │   │       ├── 117.gif
│   │   │   │   │       ├── 118.gif
│   │   │   │   │       ├── 119.gif
│   │   │   │   │       ├── 12.gif
│   │   │   │   │       ├── 120.gif
│   │   │   │   │       ├── 121.gif
│   │   │   │   │       ├── 122.gif
│   │   │   │   │       ├── 123.gif
│   │   │   │   │       ├── 124.gif
│   │   │   │   │       ├── 125.gif
│   │   │   │   │       ├── 126.gif
│   │   │   │   │       ├── 127.gif
│   │   │   │   │       ├── 128.gif
│   │   │   │   │       ├── 129.gif
│   │   │   │   │       ├── 13.gif
│   │   │   │   │       ├── 130.gif
│   │   │   │   │       ├── 131.gif
│   │   │   │   │       ├── 132.gif
│   │   │   │   │       ├── 133.gif
│   │   │   │   │       ├── 134.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
│   │   │   │   │       ├── 72.gif
│   │   │   │   │       ├── 73.gif
│   │   │   │   │       ├── 74.gif
│   │   │   │   │       ├── 75.gif
│   │   │   │   │       ├── 76.gif
│   │   │   │   │       ├── 77.gif
│   │   │   │   │       ├── 78.gif
│   │   │   │   │       ├── 79.gif
│   │   │   │   │       ├── 8.gif
│   │   │   │   │       ├── 80.gif
│   │   │   │   │       ├── 81.gif
│   │   │   │   │       ├── 82.gif
│   │   │   │   │       ├── 83.gif
│   │   │   │   │       ├── 84.gif
│   │   │   │   │       ├── 85.gif
│   │   │   │   │       ├── 86.gif
│   │   │   │   │       ├── 87.gif
│   │   │   │   │       ├── 88.gif
│   │   │   │   │       ├── 89.gif
│   │   │   │   │       ├── 9.gif
│   │   │   │   │       ├── 90.gif
│   │   │   │   │       ├── 91.gif
│   │   │   │   │       ├── 92.gif
│   │   │   │   │       ├── 93.gif
│   │   │   │   │       ├── 94.gif
│   │   │   │   │       ├── 95.gif
│   │   │   │   │       ├── 96.gif
│   │   │   │   │       ├── 97.gif
│   │   │   │   │       ├── 98.gif
│   │   │   │   │       ├── 99.gif
│   │   │   │   │       └── static.gif
│   │   │   │   ├── filemanager
│   │   │   │   │   ├── filemanager.js
│   │   │   │   │   └── images
│   │   │   │   │       ├── file-16.gif
│   │   │   │   │       ├── file-64.gif
│   │   │   │   │       ├── folder-16.gif
│   │   │   │   │       ├── folder-64.gif
│   │   │   │   │       └── go-up.gif
│   │   │   │   ├── flash
│   │   │   │   │   └── flash.js
│   │   │   │   ├── image
│   │   │   │   │   ├── image.js
│   │   │   │   │   └── images
│   │   │   │   │       ├── align_left.gif
│   │   │   │   │       ├── align_right.gif
│   │   │   │   │       ├── align_top.gif
│   │   │   │   │       └── refresh.png
│   │   │   │   ├── insertfile
│   │   │   │   │   └── insertfile.js
│   │   │   │   ├── lineheight
│   │   │   │   │   └── lineheight.js
│   │   │   │   ├── link
│   │   │   │   │   └── link.js
│   │   │   │   ├── map
│   │   │   │   │   ├── map.html
│   │   │   │   │   └── map.js
│   │   │   │   ├── media
│   │   │   │   │   └── media.js
│   │   │   │   ├── multiimage
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── image.png
│   │   │   │   │   │   ├── select-files-en.png
│   │   │   │   │   │   ├── select-files-zh_CN.png
│   │   │   │   │   │   └── swfupload.swf
│   │   │   │   │   └── multiimage.js
│   │   │   │   ├── pagebreak
│   │   │   │   │   └── pagebreak.js
│   │   │   │   ├── plainpaste
│   │   │   │   │   └── plainpaste.js
│   │   │   │   ├── preview
│   │   │   │   │   └── preview.js
│   │   │   │   ├── quickformat
│   │   │   │   │   └── quickformat.js
│   │   │   │   ├── table
│   │   │   │   │   └── table.js
│   │   │   │   ├── template
│   │   │   │   │   ├── html
│   │   │   │   │   │   ├── 1.html
│   │   │   │   │   │   ├── 2.html
│   │   │   │   │   │   └── 3.html
│   │   │   │   │   └── template.js
│   │   │   │   └── wordpaste
│   │   │   │       └── wordpaste.js
│   │   │   ├── respond.min.js
│   │   │   ├── skin
│   │   │   │   ├── WdatePicker.css
│   │   │   │   ├── datePicker.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── twoer
│   │   │   │   │   ├── datepicker-dev.css
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   ├── img.gif
│   │   │   │   │   └── img.png
│   │   │   │   └── whyGreen
│   │   │   │       ├── bg.jpg
│   │   │   │       ├── datepicker.css
│   │   │   │       └── img.gif
│   │   │   ├── treeview
│   │   │   │   ├── jquery.cookie.js
│   │   │   │   ├── jquery.treeview.edit.js
│   │   │   │   └── jquery.treeview.js
│   │   │   ├── uploadPreview.js
│   │   │   └── zh_CN.js
│   │   ├── sound
│   │   │   ├── Global.wav
│   │   │   └── dididi.wav
│   │   └── sql
│   │       └── 5kcrm.sql
│   ├── Uploads
│   ├── index.php
│   ├── must_see_see.txt
│   ├── readme.txt
│   ├── sql
│   │   └── 5kcrm.sql
│   └── 升级说明.txt
└── php mysql 悟空CRM系统 客户管理平台系统_5KCRM0.5.1.rar

215 directories, 1202 files


实例下载地址

悟空CRM系统php+mysql

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警