【例子介绍】物业管理收费系统php源码
基于 ThinkPHP5 Bootstrap 倾力打造的多小区物业管理系统源码,操作简单,功能完善,用户体验良好
开发环境PHP7 mysql
安装步骤:
1.新建数据库estate,导入数据www.shuotupu.com.sql
2.修改配置文件:application/database.php
3.访问 域名/public/admin.php
默认用户名admin 密码:123456
至简物业管理系统功能模块说明
1. 统计分析
以小区为单位,统计如下数据:
小区总栋数
小区总户数
小区总人数
小区租户数量
小区每月收费金额统计
小区车位统计
小区车辆统计
小区宠物统计
小区报修统计
。。。。。。
【相关图片】
【源码结构】
.
├── estate-init
│ ├── LICENSE
│ ├── README.md
│ ├── addons
│ │ ├── alisms
│ │ │ ├── Alisms.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── library
│ │ │ │ └── Alisms.php
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── article
│ │ │ ├── Article.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── article
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── article
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ └── Article.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── community
│ │ │ ├── Community.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── community
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── community
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Community.php
│ │ │ │ └── CommunityAdmin.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── crontab
│ │ │ ├── Crontab.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── general
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── general
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ └── Crontab.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ ├── Autotask.php
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── database
│ │ │ ├── Database.php
│ │ │ ├── application
│ │ │ │ └── admin
│ │ │ │ ├── controller
│ │ │ │ │ └── general
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ └── view
│ │ │ │ └── general
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── device
│ │ │ ├── Device.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── device
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── device
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Device.php
│ │ │ │ └── DeviceMaintain.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── duty
│ │ │ ├── Duty.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── duty
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── duty
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ └── Duty.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── expenses
│ │ │ ├── Expenses.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── expenses
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── expenses
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Expenses.php
│ │ │ │ └── ExpensesProject.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── friendlylink
│ │ │ ├── Friendlylink.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── friendlylink
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── friendlylink
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ └── Friendlylink.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── frontendnav
│ │ │ ├── Frontendnav.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── frontendnav
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── frontendnav
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── FrontNav.php
│ │ │ │ └── FrontNavCate.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── house
│ │ │ ├── House.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── house
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── house
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Building.php
│ │ │ │ └── House.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── loginbg
│ │ │ ├── Loginbg.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ └── info.ini
│ │ ├── owners
│ │ │ ├── Owners.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── owners
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── owners
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Member.php
│ │ │ │ ├── Pet.php
│ │ │ │ └── Vehicle.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── page
│ │ │ ├── Page.php
│ │ │ ├── application
│ │ │ │ └── admin
│ │ │ │ ├── controller
│ │ │ │ │ └── Page.php
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ ├── model
│ │ │ │ │ └── Page.php
│ │ │ │ └── view
│ │ │ │ └── page
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── parking
│ │ │ ├── Parking.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── parking
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── parking
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── ParkingSpace.php
│ │ │ │ └── ParkingSpaceUse.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── qrcode
│ │ │ ├── Qrcode.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── service
│ │ │ ├── Service.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── service
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── service
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Activity.php
│ │ │ │ ├── Complain.php
│ │ │ │ ├── Mailbox.php
│ │ │ │ └── Repair.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ ├── slide
│ │ │ ├── Slide.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── slide
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── slide
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ ├── Slide.php
│ │ │ │ └── SlideCategory.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── summernote
│ │ │ ├── Summernote.php
│ │ │ ├── bootstrap.js
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ └── info.ini
│ │ ├── third
│ │ │ ├── Third.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── library
│ │ │ │ ├── Application.php
│ │ │ │ ├── Qq.php
│ │ │ │ ├── Service.php
│ │ │ │ ├── Wechat.php
│ │ │ │ └── Weibo.php
│ │ │ └── model
│ │ │ └── Third.php
│ │ ├── ucenter
│ │ │ ├── Ucenter.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── library
│ │ │ │ ├── Uc.php
│ │ │ │ ├── client
│ │ │ │ │ ├── Client.php
│ │ │ │ │ └── uc_client
│ │ │ │ │ ├── client.php
│ │ │ │ │ ├── control
│ │ │ │ │ ├── data
│ │ │ │ │ ├── index.htm
│ │ │ │ │ ├── lib
│ │ │ │ │ └── model
│ │ │ │ └── common
│ │ │ │ ├── Functions.php
│ │ │ │ └── XML.php
│ │ │ ├── model
│ │ │ │ └── User.php
│ │ │ └── uc.php
│ │ ├── upyun
│ │ │ ├── Upyun.php
│ │ │ ├── bootstrap.js
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ └── info.ini
│ │ ├── user
│ │ │ ├── User.php
│ │ │ ├── application
│ │ │ │ └── admin
│ │ │ │ ├── controller
│ │ │ │ │ └── User.php
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ ├── model
│ │ │ │ │ └── User.php
│ │ │ │ └── view
│ │ │ │ └── user
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ ├── lang
│ │ │ │ └── zh-cn.php
│ │ │ ├── library
│ │ │ │ └── Auth.php
│ │ │ ├── model
│ │ │ │ └── User.php
│ │ │ ├── public
│ │ │ │ └── assets
│ │ │ │ └── js
│ │ │ │ └── backend
│ │ │ └── view
│ │ │ ├── index
│ │ │ │ ├── changepwd.html
│ │ │ │ ├── index.html
│ │ │ │ ├── login.html
│ │ │ │ └── register.html
│ │ │ └── layout
│ │ │ └── common.html
│ │ ├── version
│ │ │ ├── Version.php
│ │ │ ├── application
│ │ │ │ ├── admin
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── Version.php
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ └── view
│ │ │ │ │ └── version
│ │ │ │ └── common
│ │ │ │ └── model
│ │ │ │ └── Version.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ └── Index.php
│ │ │ ├── info.ini
│ │ │ ├── install.sql
│ │ │ └── public
│ │ │ └── assets
│ │ │ └── js
│ │ │ └── backend
│ │ └── wechat
│ │ ├── Wechat.php
│ │ ├── application
│ │ │ ├── admin
│ │ │ │ ├── controller
│ │ │ │ │ └── wechat
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ └── view
│ │ │ │ └── wechat
│ │ │ └── common
│ │ │ └── model
│ │ │ ├── WechatAutoreply.php
│ │ │ ├── WechatConfig.php
│ │ │ ├── WechatContext.php
│ │ │ └── WechatResponse.php
│ │ ├── config.php
│ │ ├── controller
│ │ │ └── Index.php
│ │ ├── info.ini
│ │ ├── install.sql
│ │ ├── library
│ │ │ ├── Config.php
│ │ │ └── Wechat.php
│ │ └── public
│ │ └── assets
│ │ └── js
│ │ └── backend
│ ├── application
│ │ ├── admin
│ │ │ ├── behavior
│ │ │ │ └── AdminLog.php
│ │ │ ├── command
│ │ │ │ ├── Addon
│ │ │ │ │ └── stubs
│ │ │ │ │ ├── addon.stub
│ │ │ │ │ ├── config.stub
│ │ │ │ │ └── info.stub
│ │ │ │ ├── Addon.php
│ │ │ │ ├── Crud
│ │ │ │ │ └── stubs
│ │ │ │ │ ├── add.stub
│ │ │ │ │ ├── controller.stub
│ │ │ │ │ ├── controllerindex.stub
│ │ │ │ │ ├── edit.stub
│ │ │ │ │ ├── html
│ │ │ │ │ ├── index.stub
│ │ │ │ │ ├── javascript.stub
│ │ │ │ │ ├── lang.stub
│ │ │ │ │ ├── mixins
│ │ │ │ │ ├── model.stub
│ │ │ │ │ ├── relationmodel.stub
│ │ │ │ │ └── validate.stub
│ │ │ │ ├── Crud.php
│ │ │ │ ├── Install
│ │ │ │ │ ├── fastadmin.sql
│ │ │ │ │ └── install.lock
│ │ │ │ ├── Install.php
│ │ │ │ ├── Menu.php
│ │ │ │ ├── Min
│ │ │ │ │ ├── r.js
│ │ │ │ │ └── stubs
│ │ │ │ │ ├── css.stub
│ │ │ │ │ └── js.stub
│ │ │ │ └── Min.php
│ │ │ ├── common.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ ├── Addon.php
│ │ │ │ ├── Ajax.php
│ │ │ │ ├── Category.php
│ │ │ │ ├── Dashboard.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Index.php
│ │ │ │ ├── auth
│ │ │ │ │ ├── Admin.php
│ │ │ │ │ ├── Adminlog.php
│ │ │ │ │ ├── Group.php
│ │ │ │ │ └── Rule.php
│ │ │ │ ├── community
│ │ │ │ │ └── Index.php
│ │ │ │ ├── device
│ │ │ │ │ ├── History.php
│ │ │ │ │ └── Index.php
│ │ │ │ ├── duty
│ │ │ │ │ └── Index.php
│ │ │ │ ├── expenses
│ │ │ │ │ ├── Index.php
│ │ │ │ │ └── Project.php
│ │ │ │ ├── general
│ │ │ │ │ ├── Attachment.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── Crontab.php
│ │ │ │ │ └── Profile.php
│ │ │ │ ├── house
│ │ │ │ │ ├── Building.php
│ │ │ │ │ └── Index.php
│ │ │ │ ├── owners
│ │ │ │ │ ├── Index.php
│ │ │ │ │ ├── Pet.php
│ │ │ │ │ └── Vehicle.php
│ │ │ │ ├── parking
│ │ │ │ │ ├── Index.php
│ │ │ │ │ └── Usage.php
│ │ │ │ └── service
│ │ │ │ ├── Activity.php
│ │ │ │ ├── Complain.php
│ │ │ │ ├── Mailbox.php
│ │ │ │ └── Repair.php
│ │ │ ├── lang
│ │ │ │ ├── zh-cn
│ │ │ │ │ ├── addon.php
│ │ │ │ │ ├── auth
│ │ │ │ │ │ ├── admin.php
│ │ │ │ │ │ ├── group.php
│ │ │ │ │ │ └── rule.php
│ │ │ │ │ ├── category.php
│ │ │ │ │ ├── community
│ │ │ │ │ │ └── index.php
│ │ │ │ │ ├── config.php
│ │ │ │ │ ├── dashboard.php
│ │ │ │ │ ├── device
│ │ │ │ │ │ ├── history.php
│ │ │ │ │ │ └── index.php
│ │ │ │ │ ├── duty
│ │ │ │ │ │ └── index.php
│ │ │ │ │ ├── expenses
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ └── project.php
│ │ │ │ │ ├── general
│ │ │ │ │ │ ├── attachment.php
│ │ │ │ │ │ ├── config.php
│ │ │ │ │ │ ├── crontab.php
│ │ │ │ │ │ └── profile.php
│ │ │ │ │ ├── house
│ │ │ │ │ │ ├── building.php
│ │ │ │ │ │ └── index.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ ├── owners
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── pet.php
│ │ │ │ │ │ └── vehicle.php
│ │ │ │ │ ├── parking
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ └── usage.php
│ │ │ │ │ └── service
│ │ │ │ │ ├── activity.php
│ │ │ │ │ ├── complain.php
│ │ │ │ │ ├── mailbox.php
│ │ │ │ │ └── repair.php
│ │ │ │ └── zh-cn.php
│ │ │ ├── library
│ │ │ │ ├── Auth.php
│ │ │ │ └── traits
│ │ │ │ └── Backend.php
│ │ │ ├── model
│ │ │ │ ├── Admin.php
│ │ │ │ ├── AdminLog.php
│ │ │ │ ├── AuthGroup.php
│ │ │ │ ├── AuthGroupAccess.php
│ │ │ │ └── AuthRule.php
│ │ │ ├── tags.php
│ │ │ ├── validate
│ │ │ │ └── Category.php
│ │ │ └── view
│ │ │ ├── addon
│ │ │ │ ├── add.html
│ │ │ │ ├── config.html
│ │ │ │ └── index.html
│ │ │ ├── auth
│ │ │ │ ├── admin
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── common_search.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ └── index.html
│ │ │ │ ├── adminlog
│ │ │ │ │ ├── detail.html
│ │ │ │ │ └── index.html
│ │ │ │ ├── group
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ └── index.html
│ │ │ │ └── rule
│ │ │ │ ├── add.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── index.html
│ │ │ │ └── tpl.html
│ │ │ ├── category
│ │ │ │ ├── add.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── common
│ │ │ │ ├── control.html
│ │ │ │ ├── header.html
│ │ │ │ ├── menu.html
│ │ │ │ ├── meta.html
│ │ │ │ └── script.html
│ │ │ ├── community
│ │ │ │ └── index
│ │ │ │ ├── add.html
│ │ │ │ ├── detail.html
│ │ │ │ └── index.html
│ │ │ ├── dashboard
│ │ │ │ ├── activity.html
│ │ │ │ ├── common_search.html
│ │ │ │ ├── index.html
│ │ │ │ ├── one.html
│ │ │ │ ├── repair.html
│ │ │ │ └── two.html
│ │ │ ├── device
│ │ │ │ ├── history
│ │ │ │ │ ├── add.html
│ │ │ │ │ └── index.html
│ │ │ │ └── index
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ ├── detail.html
│ │ │ │ └── index.html
│ │ │ ├── duty
│ │ │ │ └── index
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ └── index.html
│ │ │ ├── expenses
│ │ │ │ ├── index
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── common_search.html
│ │ │ │ │ └── index.html
│ │ │ │ └── project
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ └── index.html
│ │ │ ├── general
│ │ │ │ ├── attachment
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── select.html
│ │ │ │ ├── config
│ │ │ │ │ └── index.html
│ │ │ │ ├── crontab
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ └── index.html
│ │ │ │ └── profile
│ │ │ │ └── index.html
│ │ │ ├── house
│ │ │ │ ├── building
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── common_search.html
│ │ │ │ │ └── index.html
│ │ │ │ └── index
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ └── index.html
│ │ │ ├── index
│ │ │ │ ├── index.html
│ │ │ │ └── login.html
│ │ │ ├── layout
│ │ │ │ └── default.html
│ │ │ ├── owners
│ │ │ │ ├── index
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── common_search.html
│ │ │ │ │ └── index.html
│ │ │ │ ├── pet
│ │ │ │ │ ├── add.html
│ │ │ │ │ └── index.html
│ │ │ │ └── vehicle
│ │ │ │ ├── add.html
│ │ │ │ └── index.html
│ │ │ ├── parking
│ │ │ │ ├── index
│ │ │ │ │ ├── add.html
│ │ │ │ │ ├── common_search.html
│ │ │ │ │ └── index.html
│ │ │ │ └── usage
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ └── index.html
│ │ │ └── service
│ │ │ ├── activity
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ ├── detail.html
│ │ │ │ └── index.html
│ │ │ ├── complain
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ ├── detail.html
│ │ │ │ └── index.html
│ │ │ ├── mailbox
│ │ │ │ ├── add.html
│ │ │ │ ├── common_search.html
│ │ │ │ ├── detail.html
│ │ │ │ └── index.html
│ │ │ └── repair
│ │ │ ├── add.html
│ │ │ ├── common_search.html
│ │ │ ├── detail.html
│ │ │ └── index.html
│ │ ├── api
│ │ │ ├── common.php
│ │ │ ├── config.php
│ │ │ ├── controller
│ │ │ │ ├── Error.php
│ │ │ │ └── general
│ │ │ │ ├── Article.php
│ │ │ │ ├── Category.php
│ │ │ │ ├── FriendlyLink.php
│ │ │ │ ├── FrontNav.php
│ │ │ │ └── Slide.php
│ │ │ └── library
│ │ │ └── ConstStatus.php
│ │ ├── build.php
│ │ ├── command.php
│ │ ├── common
│ │ │ ├── behavior
│ │ │ │ └── Common.php
│ │ │ ├── controller
│ │ │ │ ├── Api.php
│ │ │ │ ├── Backend.php
│ │ │ │ ├── BaseApi.php
│ │ │ │ └── Frontend.php
│ │ │ ├── library
│ │ │ │ ├── Email.php
│ │ │ │ └── Menu.php
│ │ │ ├── model
│ │ │ │ ├── Activity.php
│ │ │ │ ├── Attachment.php
│ │ │ │ ├── Building.php
│ │ │ │ ├── Category.php
│ │ │ │ ├── Community.php
│ │ │ │ ├── CommunityAdmin.php
│ │ │ │ ├── Complain.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Crontab.php
│ │ │ │ ├── Device.php
│ │ │ │ ├── DeviceMaintain.php
│ │ │ │ ├── Duty.php
│ │ │ │ ├── Expenses.php
│ │ │ │ ├── ExpensesProject.php
│ │ │ │ ├── House.php
│ │ │ │ ├── Mailbox.php
│ │ │ │ ├── Member.php
│ │ │ │ ├── ParkingSpace.php
│ │ │ │ ├── ParkingSpaceUse.php
│ │ │ │ ├── Pet.php
│ │ │ │ ├── Repair.php
│ │ │ │ └── Vehicle.php
│ │ │ └── view
│ │ │ └── tpl
│ │ │ ├── dispatch_jump.tpl
│ │ │ └── think_exception.tpl
│ │ ├── common.php
│ │ ├── config.php
│ │ ├── database.php
│ │ ├── extra
│ │ │ ├── addons.php
│ │ │ ├── site.php
│ │ │ └── upload.php
│ │ ├── index
│ │ │ ├── controller
│ │ │ │ ├── Ajax.php
│ │ │ │ └── Index.php
│ │ │ ├── lang
│ │ │ │ ├── zh-cn
│ │ │ │ │ └── index.php
│ │ │ │ └── zh-cn.php
│ │ │ └── view
│ │ │ └── index
│ │ │ └── index.html
│ │ ├── route.php
│ │ └── tags.php
│ ├── bower.json
│ ├── build.php
│ ├── composer.json
│ ├── extend
│ │ └── fast
│ │ ├── Auth.php
│ │ ├── Date.php
│ │ ├── Form.php
│ │ ├── Http.php
│ │ ├── Pinyin.php
│ │ ├── Random.php
│ │ ├── Rsa.php
│ │ ├── Tree.php
│ │ └── Version.php
│ ├── httpd.conf
│ ├── img
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ └── 7.jpg
│ ├── init_data.sql
│ ├── init_data_.sql
│ └── public
│ ├── admin.php
│ └── assets
│ ├── css
│ │ ├── backend.css
│ │ ├── backend.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── fastadmin.css
│ │ ├── fastadmin.min.css
│ │ ├── frontend.css
│ │ ├── frontend.min.css
│ │ ├── iconfont.css
│ │ ├── index.css
│ │ ├── lesshat.css
│ │ ├── skins
│ │ │ ├── _all-skins.css
│ │ │ ├── skin-black-light.css
│ │ │ ├── skin-black.css
│ │ │ ├── skin-blue-light.css
│ │ │ ├── skin-blue.css
│ │ │ ├── skin-green-light.css
│ │ │ ├── skin-green.css
│ │ │ ├── skin-purple-light.css
│ │ │ ├── skin-purple.css
│ │ │ ├── skin-red-light.css
│ │ │ ├── skin-red.css
│ │ │ ├── skin-yellow-light.css
│ │ │ └── skin-yellow.css
│ │ └── wechat
│ │ └── menu.css
│ ├── fonts
│ │ ├── Times New Roman.ttf
│ │ ├── captcha.ttf
│ │ ├── fzltxh.ttf
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── glyphicons-halflings-regular.woff2
│ │ ├── iconfont
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── lato
│ │ │ ├── lato-black.eot
│ │ │ ├── lato-black.svg
│ │ │ ├── lato-black.ttf
│ │ │ ├── lato-black.woff
│ │ │ ├── lato-bold.eot
│ │ │ ├── lato-bold.svg
│ │ │ ├── lato-bold.ttf
│ │ │ ├── lato-bold.woff
│ │ │ ├── lato-bolditalic.eot
│ │ │ ├── lato-bolditalic.svg
│ │ │ ├── lato-bolditalic.ttf
│ │ │ ├── lato-bolditalic.woff
│ │ │ ├── lato-italic.eot
│ │ │ ├── lato-italic.svg
│ │ │ ├── lato-italic.ttf
│ │ │ ├── lato-italic.woff
│ │ │ ├── lato-light.eot
│ │ │ ├── lato-light.svg
│ │ │ ├── lato-light.ttf
│ │ │ ├── lato-light.woff
│ │ │ ├── lato-regular.eot
│ │ │ ├── lato-regular.svg
│ │ │ ├── lato-regular.ttf
│ │ │ └── lato-regular.woff
│ │ └── verdana.ttf
│ ├── img
│ │ ├── 32px.png
│ │ ├── 40px.png
│ │ ├── avatar.png
│ │ ├── bg-middle.jpg
│ │ ├── bg-pattern.png
│ │ ├── blank.gif
│ │ ├── circle.png
│ │ ├── cross.png
│ │ ├── error.svg
│ │ ├── favicon.ico
│ │ ├── info.svg
│ │ ├── loading.gif
│ │ ├── loginbg.jpg
│ │ ├── loginbg1.jpg
│ │ ├── loginbg10.jpg
│ │ ├── loginbg2.jpg
│ │ ├── loginbg3.jpg
│ │ ├── loginbg4.jpg
│ │ ├── loginbg5.jpg
│ │ ├── loginbg6.jpg
│ │ ├── loginbg7.jpg
│ │ ├── loginbg8.jpg
│ │ ├── loginbg9.jpg
│ │ ├── logo.png
│ │ ├── logo.psd
│ │ ├── logo.svg
│ │ ├── mask.png
│ │ ├── qrcode.png
│ │ ├── success.svg
│ │ ├── throbber.gif
│ │ ├── weixin_icon.png
│ │ ├── wx_mobile_footer_bg.png
│ │ ├── wx_mobile_header_bg.png
│ │ └── wx_mobile_index.png
│ ├── index.html
│ ├── js
│ │ ├── addons.js
│ │ ├── adminlte.js
│ │ ├── backend
│ │ │ ├── addon.js
│ │ │ ├── auth
│ │ │ │ ├── admin.js
│ │ │ │ ├── adminlog.js
│ │ │ │ ├── group.js
│ │ │ │ └── rule.js
│ │ │ ├── category.js
│ │ │ ├── community
│ │ │ │ └── index.js
│ │ │ ├── dashboard.js
│ │ │ ├── device
│ │ │ │ ├── history.js
│ │ │ │ └── index.js
│ │ │ ├── duty
│ │ │ │ └── index.js
│ │ │ ├── expenses
│ │ │ │ ├── index.js
│ │ │ │ └── project.js
│ │ │ ├── general
│ │ │ │ ├── attachment.js
│ │ │ │ ├── config.js
│ │ │ │ ├── crontab.js
│ │ │ │ └── profile.js
│ │ │ ├── house
│ │ │ │ ├── building.js
│ │ │ │ └── index.js
│ │ │ ├── index.js
│ │ │ ├── owners
│ │ │ │ ├── index.js
│ │ │ │ ├── pet.js
│ │ │ │ └── vehicle.js
│ │ │ ├── parking
│ │ │ │ ├── index.js
│ │ │ │ └── usage.js
│ │ │ └── service
│ │ │ ├── activity.js
│ │ │ ├── complain.js
│ │ │ ├── mailbox.js
│ │ │ └── repair.js
│ │ ├── backend.js
│ │ ├── bootstrap-table-commonsearch.js
│ │ ├── bootstrap-table-template.js
│ │ ├── echarts-theme.js
│ │ ├── echarts.min.js
│ │ ├── fast.js
│ │ ├── frontend.js
│ │ ├── html5shiv.js
│ │ ├── jquery.drag.min.js
│ │ ├── jquery.drop.min.js
│ │ ├── require-backend.js
│ │ ├── require-backend.min.js
│ │ ├── require-css.min.js
│ │ ├── require-form.js
│ │ ├── require-frontend.js
│ │ ├── require-frontend.min.js
│ │ ├── require-table.js
│ │ ├── require-upload.js
│ │ ├── require-validator.js
│ │ ├── require.js
│ │ └── respond.min.js
│ ├── less
│ │ ├── backend.less
│ │ ├── bootstrap
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── bootstrap-less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── mixins.less
│ │ │ └── variables.less
│ │ ├── bootstrap.less
│ │ ├── fastadmin
│ │ │ ├── 404_500_errors.less
│ │ │ ├── alerts.less
│ │ │ ├── bootstrap-social.less
│ │ │ ├── boxes.less
│ │ │ ├── buttons.less
│ │ │ ├── callout.less
│ │ │ ├── carousel.less
│ │ │ ├── control-sidebar.less
│ │ │ ├── core.less
│ │ │ ├── direct-chat.less
│ │ │ ├── dropdown.less
│ │ │ ├── forms.less
│ │ │ ├── fullcalendar.less
│ │ │ ├── header.less
│ │ │ ├── info-box.less
│ │ │ ├── invoice.less
│ │ │ ├── labels.less
│ │ │ ├── lockscreen.less
│ │ │ ├── login_and_register.less
│ │ │ ├── mailbox.less
│ │ │ ├── miscellaneous.less
│ │ │ ├── mixins.less
│ │ │ ├── modal.less
│ │ │ ├── navs.less
│ │ │ ├── print.less
│ │ │ ├── products.less
│ │ │ ├── profile.less
│ │ │ ├── progress-bars.less
│ │ │ ├── select2.less
│ │ │ ├── sidebar-mini.less
│ │ │ ├── sidebar.less
│ │ │ ├── small-box.less
│ │ │ ├── social-widgets.less
│ │ │ ├── table.less
│ │ │ ├── timeline.less
│ │ │ ├── users-list.less
│ │ │ └── variables.less
│ │ ├── fastadmin.less
│ │ ├── frontend.less
│ │ ├── lesshat.less
│ │ └── skins
│ │ ├── _all-skins.less
│ │ ├── skin-black-light.less
│ │ ├── skin-black.less
│ │ ├── skin-blue-light.less
│ │ ├── skin-blue.less
│ │ ├── skin-green-light.less
│ │ ├── skin-green.less
│ │ ├── skin-purple-light.less
│ │ ├── skin-purple.less
│ │ ├── skin-red-light.less
│ │ ├── skin-red.less
│ │ ├── skin-yellow-light.less
│ │ └── skin-yellow.less
│ └── libs
│ ├── Sortable
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── ISSUE_TEMPLATE.md
│ │ ├── README.md
│ │ ├── Sortable.js
│ │ ├── Sortable.min.js
│ │ ├── bower.json
│ │ ├── component.json
│ │ ├── index.html
│ │ ├── jquery.binding.js
│ │ ├── package.json
│ │ └── st
│ │ ├── app.css
│ │ ├── app.js
│ │ ├── face-01.jpg
│ │ ├── face-02.jpg
│ │ ├── face-03.jpg
│ │ ├── face-04.jpg
│ │ ├── face-05.jpg
│ │ ├── face-06.jpg
│ │ ├── face-07.jpg
│ │ ├── face-08.jpg
│ │ ├── face-09.jpg
│ │ ├── iframe
│ │ ├── logo.png
│ │ └── og-image.png
│ ├── art-template
│ │ ├── Gruntfile.js
│ │ ├── README.md
│ │ ├── demo
│ │ │ ├── basic.html
│ │ │ ├── compile.html
│ │ │ ├── debug-syntax.html
│ │ │ ├── debug.html
│ │ │ ├── helper.html
│ │ │ ├── include.html
│ │ │ ├── index.html
│ │ │ ├── no-escape.html
│ │ │ ├── node-template
│ │ │ ├── node-template-express.js
│ │ │ ├── node-template.js
│ │ │ ├── print.html
│ │ │ └── template-native
│ │ ├── dist
│ │ │ ├── template-debug.js
│ │ │ ├── template-native-debug.js
│ │ │ ├── template-native.js
│ │ │ └── template.js
│ │ ├── doc
│ │ │ ├── syntax-native.md
│ │ │ └── syntax-simple.md
│ │ ├── loader
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ └── runtime.js
│ │ ├── node
│ │ │ ├── _node.js
│ │ │ ├── template-native.js
│ │ │ └── template.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── cache.js
│ │ │ ├── compile.js
│ │ │ ├── config.js
│ │ │ ├── get.js
│ │ │ ├── helper.js
│ │ │ ├── intro.js
│ │ │ ├── onerror.js
│ │ │ ├── outro.js
│ │ │ ├── render.js
│ │ │ ├── renderFile.js
│ │ │ ├── syntax.js
│ │ │ ├── template.js
│ │ │ └── utils.js
│ │ └── test
│ │ ├── js
│ │ ├── test-helper.html
│ │ ├── test-native.html
│ │ ├── test-node.js
│ │ ├── test-speed.html
│ │ ├── test-xss.html
│ │ ├── test.html
│ │ └── tpl
│ ├── bootstrap
│ │ ├── CHANGELOG.md
│ │ ├── Gemfile
│ │ ├── Gemfile.lock
│ │ ├── Gruntfile.js
│ │ ├── ISSUE_TEMPLATE.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── css
│ │ │ ├── fonts
│ │ │ └── js
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── grunt
│ │ │ ├── bs-commonjs-generator.js
│ │ │ ├── bs-glyphicons-data-generator.js
│ │ │ ├── bs-lessdoc-parser.js
│ │ │ ├── bs-raw-files-generator.js
│ │ │ ├── change-version.js
│ │ │ ├── configBridge.json
│ │ │ ├── npm-shrinkwrap.json
│ │ │ └── sauce_browsers.yml
│ │ ├── js
│ │ │ ├── affix.js
│ │ │ ├── alert.js
│ │ │ ├── button.js
│ │ │ ├── carousel.js
│ │ │ ├── collapse.js
│ │ │ ├── dropdown.js
│ │ │ ├── modal.js
│ │ │ ├── popover.js
│ │ │ ├── scrollspy.js
│ │ │ ├── tab.js
│ │ │ ├── tooltip.js
│ │ │ └── transition.js
│ │ ├── less
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── nuget
│ │ │ ├── MyGet.ps1
│ │ │ ├── bootstrap.less.nuspec
│ │ │ └── bootstrap.nuspec
│ │ ├── package.js
│ │ └── package.json
│ ├── bootstrap-select
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── css
│ │ │ └── js
│ │ ├── docs
│ │ │ ├── custom_theme
│ │ │ ├── docs
│ │ │ └── mkdocs.yml
│ │ ├── js
│ │ │ ├── bootstrap-select.js
│ │ │ └── i18n
│ │ ├── less
│ │ │ ├── bootstrap-select.less
│ │ │ └── variables.less
│ │ ├── nuget
│ │ │ ├── MyGet.ps1
│ │ │ └── bootstrap-select.nuspec
│ │ └── sass
│ │ ├── bootstrap-select.scss
│ │ └── variables.scss
│ ├── bootstrap-table
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── DONATORS.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── _config.yml
│ │ ├── bootstrap-table.jquery.json
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── bootstrap-table-locale-all.js
│ │ │ ├── bootstrap-table-locale-all.min.js
│ │ │ ├── bootstrap-table.css
│ │ │ ├── bootstrap-table.js
│ │ │ ├── bootstrap-table.min.css
│ │ │ ├── bootstrap-table.min.js
│ │ │ ├── extensions
│ │ │ └── locale
│ │ ├── package.json
│ │ └── src
│ │ ├── bootstrap-table.css
│ │ ├── bootstrap-table.js
│ │ ├── extensions
│ │ └── locale
│ ├── city-picker
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── css
│ │ │ ├── images
│ │ │ └── js
│ │ ├── gulpfile.js
│ │ ├── package.json
│ │ └── src
│ │ ├── city-picker.data.js
│ │ ├── city-picker.js
│ │ ├── css
│ │ └── images
│ ├── devbridge-autocomplete
│ │ ├── bower.json
│ │ ├── devbridge-autocomplete.jquery.json
│ │ ├── dist
│ │ │ ├── jquery.autocomplete.js
│ │ │ ├── jquery.autocomplete.min.js
│ │ │ └── license.txt
│ │ ├── gruntfile.js
│ │ ├── index.htm
│ │ ├── license.txt
│ │ ├── package.json
│ │ ├── readme.md
│ │ ├── src
│ │ │ └── jquery.autocomplete.js
│ │ └── typings
│ │ ├── jquery
│ │ └── jquery-autocomplete
│ ├── draggable
│ │ ├── Gruntfile.coffee
│ │ ├── Gruntfile.js
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── demos
│ │ │ ├── __common
│ │ │ ├── basic
│ │ │ ├── bounded
│ │ │ ├── boundedcustom
│ │ │ ├── grid
│ │ │ └── handle
│ │ ├── dist
│ │ │ └── draggable.min.js
│ │ ├── package.json
│ │ └── src
│ │ └── draggable.js
│ ├── dragsort
│ │ ├── bower.json
│ │ ├── jquery.dragsort.js
│ │ └── readme.md
│ ├── eonasdan-bootstrap-datetimepicker
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── build
│ │ │ ├── css
│ │ │ └── js
│ │ ├── component.json
│ │ ├── composer.json
│ │ ├── docs
│ │ │ ├── ChangeLog.md
│ │ │ ├── ContributorsGuide.md
│ │ │ ├── Events.md
│ │ │ ├── Extras.md
│ │ │ ├── FAQ.md
│ │ │ ├── Functions.md
│ │ │ ├── Installing.md
│ │ │ ├── Options.md
│ │ │ ├── Version 4 Changelog.md
│ │ │ ├── Version 4 Contributors guide.md
│ │ │ ├── index.md
│ │ │ └── theme
│ │ ├── mkdocs.yml
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── js
│ │ │ ├── less
│ │ │ ├── nuget
│ │ │ └── sass
│ │ └── tasks
│ │ └── bump_version.js
│ ├── file-saver
│ │ ├── FileSaver.js
│ │ ├── FileSaver.min.js
│ │ ├── LICENSE.md
│ │ └── bower.json
│ ├── font-awesome
│ │ ├── HELP-US-OUT.txt
│ │ ├── bower.json
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ ├── font-awesome.css.map
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── less
│ │ │ ├── animated.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── screen-reader.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ └── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── fullcalendar
│ │ ├── fullcalendar.min.css
│ │ ├── fullcalendar.min.js
│ │ ├── fullcalendar.print.min.css
│ │ ├── locale
│ │ │ ├── af.js
│ │ │ ├── ar-dz.js
│ │ │ ├── ar-kw.js
│ │ │ ├── ar-ly.js
│ │ │ ├── ar-ma.js
│ │ │ ├── ar-sa.js
│ │ │ ├── ar-tn.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── da.js
│ │ │ ├── de-at.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en-ie.js
│ │ │ ├── en-nz.js
│ │ │ ├── es-do.js
│ │ │ ├── es-us.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr-ch.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── kk.js
│ │ │ ├── ko.js
│ │ │ ├── lb.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── ms-my.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl-be.js
│ │ │ ├── nl.js
│ │ │ ├── nn.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-cyrl.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ └── moment.min.js
│ ├── html2canvas
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── bower.json
│ │ ├── build
│ │ │ ├── html2canvas.js
│ │ │ └── html2canvas.min.js
│ │ ├── examples
│ │ │ ├── demo.html
│ │ │ └── demo2.html
│ │ ├── package.json
│ │ ├── readme.md
│ │ └── src
│ │ ├── Core.js
│ │ ├── Font.js
│ │ ├── Generate.js
│ │ ├── Parse.js
│ │ ├── Preload.js
│ │ ├── Queue.js
│ │ ├── Renderer.js
│ │ ├── Support.js
│ │ ├── Util.js
│ │ └── renderers
│ ├── jcrop
│ │ ├── Gruntfile.js
│ │ ├── MIT-LICENSE.txt
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── css
│ │ │ ├── Jcrop.css
│ │ │ ├── Jcrop.gif
│ │ │ └── Jcrop.min.css
│ │ ├── demos
│ │ │ ├── basic.html
│ │ │ ├── box-sizing.html
│ │ │ ├── circle.html
│ │ │ ├── coords.html
│ │ │ ├── crop.php
│ │ │ ├── demo_files
│ │ │ ├── index.html
│ │ │ ├── non-image.html
│ │ │ ├── panel.html
│ │ │ └── thumbnail.html
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── Jcrop.js
│ │ │ ├── Jcrop.min.js
│ │ │ ├── jquery.color.js
│ │ │ └── jquery.min.js
│ │ ├── package.json
│ │ └── src
│ │ ├── README.md
│ │ ├── api.js
│ │ ├── component
│ │ ├── constructor.js
│ │ ├── css
│ │ ├── defaults.js
│ │ ├── filter
│ │ ├── intro.js
│ │ ├── modernizr.js
│ │ ├── outro.js
│ │ ├── plugin.js
│ │ ├── stage
│ │ └── static.js
│ ├── jquery
│ │ ├── AUTHORS.txt
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ └── jquery.min.map
│ │ ├── external
│ │ │ └── sizzle
│ │ └── src
│ │ ├── ajax
│ │ ├── ajax.js
│ │ ├── attributes
│ │ ├── attributes.js
│ │ ├── callbacks.js
│ │ ├── core
│ │ ├── core.js
│ │ ├── css
│ │ ├── css.js
│ │ ├── data
│ │ ├── data.js
│ │ ├── deferred.js
│ │ ├── deprecated.js
│ │ ├── dimensions.js
│ │ ├── effects
│ │ ├── effects.js
│ │ ├── event
│ │ ├── event.js
│ │ ├── exports
│ │ ├── intro.js
│ │ ├── jquery.js
│ │ ├── manipulation
│ │ ├── manipulation.js
│ │ ├── offset.js
│ │ ├── outro.js
│ │ ├── queue
│ │ ├── queue.js
│ │ ├── selector-native.js
│ │ ├── selector-sizzle.js
│ │ ├── selector.js
│ │ ├── serialize.js
│ │ ├── traversing
│ │ ├── traversing.js
│ │ ├── var
│ │ └── wrap.js
│ ├── jquery-addtabs
│ │ ├── README.md
│ │ └── jquery.addtabs.js
│ ├── jquery-cxselect
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── cityData.json
│ │ │ ├── cityData.min.json
│ │ │ ├── globalData.json
│ │ │ ├── globalData.min.json
│ │ │ ├── jquery.cxselect.js
│ │ │ └── jquery.cxselect.min.js
│ │ └── package.json
│ ├── jquery-pjax
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ └── jquery.pjax.js
│ ├── jquery-qrcode
│ │ ├── MIT-LICENSE.txt
│ │ ├── README.md
│ │ ├── bower.json
│ │ └── jquery.qrcode.min.js
│ ├── jquery-slimscroll
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── examples
│ │ │ ├── allow-page-scroll.html
│ │ │ ├── chaining.html
│ │ │ ├── disable-fade-out.html
│ │ │ ├── dynamic-content.html
│ │ │ ├── height-width.html
│ │ │ ├── index.html
│ │ │ ├── libs
│ │ │ ├── mouse-wheel.html
│ │ │ ├── multiple-elements.html
│ │ │ ├── navigation.html
│ │ │ ├── nested.html
│ │ │ ├── programmatic-scrolling.html
│ │ │ ├── rail.html
│ │ │ ├── scroll-events.html
│ │ │ ├── scrollbar.html
│ │ │ ├── start-position.html
│ │ │ └── style.css
│ │ ├── jquery.slimscroll.js
│ │ ├── jquery.slimscroll.min.js
│ │ └── package.json
│ ├── jquery-ui
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── component.json
│ │ ├── composer.json
│ │ ├── jquery-ui.js
│ │ ├── jquery-ui.min.js
│ │ ├── package.json
│ │ ├── themes
│ │ │ ├── base
│ │ │ ├── black-tie
│ │ │ ├── blitzer
│ │ │ ├── cupertino
│ │ │ ├── dark-hive
│ │ │ ├── dot-luv
│ │ │ ├── eggplant
│ │ │ ├── excite-bike
│ │ │ ├── flick
│ │ │ ├── hot-sneaks
│ │ │ ├── humanity
│ │ │ ├── le-frog
│ │ │ ├── mint-choc
│ │ │ ├── overcast
│ │ │ ├── pepper-grinder
│ │ │ ├── redmond
│ │ │ ├── smoothness
│ │ │ ├── south-street
│ │ │ ├── start
│ │ │ ├── sunny
│ │ │ ├── swanky-purse
│ │ │ ├── trontastic
│ │ │ ├── ui-darkness
│ │ │ ├── ui-lightness
│ │ │ └── vader
│ │ └── ui
│ │ ├── core.js
│ │ ├── data.js
│ │ ├── disable-selection.js
│ │ ├── effect.js
│ │ ├── effects
│ │ ├── escape-selector.js
│ │ ├── focusable.js
│ │ ├── form-reset-mixin.js
│ │ ├── form.js
│ │ ├── i18n
│ │ ├── ie.js
│ │ ├── jquery-1-7.js
│ │ ├── keycode.js
│ │ ├── labels.js
│ │ ├── minified
│ │ ├── plugin.js
│ │ ├── position.js
│ │ ├── safe-active-element.js
│ │ ├── safe-blur.js
│ │ ├── scroll-parent.js
│ │ ├── tabbable.js
│ │ ├── unique-id.js
│ │ ├── version.js
│ │ ├── widget.js
│ │ └── widgets
│ ├── jquery.cookie
│ │ ├── bower.json
│ │ └── jquery.cookie.js
│ ├── jspdf
│ │ ├── ISSUE_TEMPLATE.md
│ │ ├── MIT-LICENSE.txt
│ │ ├── README.md
│ │ ├── RELEASE.md
│ │ ├── SUMMARY.md
│ │ ├── bower.json
│ │ ├── build.js
│ │ ├── dist
│ │ │ ├── jspdf.debug.js
│ │ │ └── jspdf.min.js
│ │ ├── doc
│ │ │ ├── files.html
│ │ │ ├── index.html
│ │ │ ├── plugins
│ │ │ └── symbols
│ │ ├── docs
│ │ │ └── getting_started.md
│ │ ├── examples
│ │ │ ├── annotation
│ │ │ ├── basic.html
│ │ │ ├── bootstrap
│ │ │ ├── canvg_context2d
│ │ │ ├── context2d
│ │ │ ├── css
│ │ │ ├── downloadify.html
│ │ │ ├── html2pdf
│ │ │ ├── images
│ │ │ ├── images.html
│ │ │ ├── jaxer.html
│ │ │ ├── js
│ │ │ ├── null-logo-trans.png
│ │ │ ├── octocat.jpg
│ │ │ ├── octocat.png
│ │ │ ├── outline
│ │ │ ├── runner.html
│ │ │ ├── test_from_html.html
│ │ │ ├── test_from_html_css_page_breaks.html
│ │ │ ├── test_insert_page.html
│ │ │ └── thinking-monkey.jpg
│ │ ├── index.html
│ │ ├── main.js
│ │ ├── npm-shrinkwrap.json
│ │ └── package.json
│ ├── jspdf-autotable
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── STORY.md
│ │ ├── bower.json
│ │ ├── build.js
│ │ ├── dist
│ │ │ ├── jspdf.plugin.autotable.js
│ │ │ └── jspdf.plugin.autotable.src.js
│ │ ├── examples
│ │ │ ├── examples.html
│ │ │ ├── examples.js
│ │ │ ├── libs
│ │ │ └── simple.html
│ │ ├── package.json
│ │ ├── samples.png
│ │ └── src
│ │ └── main.js
│ ├── jstree
│ │ ├── LICENSE-MIT
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── jstree.js
│ │ │ ├── jstree.min.js
│ │ │ └── themes
│ │ └── src
│ │ ├── intro.js
│ │ ├── jstree.changed.js
│ │ ├── jstree.checkbox.js
│ │ ├── jstree.conditionalselect.js
│ │ ├── jstree.contextmenu.js
│ │ ├── jstree.dnd.js
│ │ ├── jstree.js
│ │ ├── jstree.massload.js
│ │ ├── jstree.search.js
│ │ ├── jstree.sort.js
│ │ ├── jstree.state.js
│ │ ├── jstree.types.js
│ │ ├── jstree.unique.js
│ │ ├── jstree.wholerow.js
│ │ ├── misc.js
│ │ ├── outro.js
│ │ ├── sample.js
│ │ ├── themes
│ │ └── vakata-jstree.js
│ ├── layer
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── build
│ │ │ ├── layer.js
│ │ │ ├── mobile
│ │ │ └── skin
│ │ ├── gulpfile.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── README.md
│ │ │ ├── layer.js
│ │ │ ├── mobile
│ │ │ └── skin
│ │ └── test
│ │ └── demo.html
│ ├── less
│ │ ├── bower.json
│ │ ├── browser.js
│ │ ├── dist
│ │ │ ├── less.js
│ │ │ └── less.min.js
│ │ └── index.js
│ ├── moment
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── locale
│ │ │ ├── af.js
│ │ │ ├── ar-dz.js
│ │ │ ├── ar-kw.js
│ │ │ ├── ar-ly.js
│ │ │ ├── ar-ma.js
│ │ │ ├── ar-sa.js
│ │ │ ├── ar-tn.js
│ │ │ ├── ar.js
│ │ │ ├── az.js
│ │ │ ├── be.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bo.js
│ │ │ ├── br.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cv.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-at.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── dv.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en-ie.js
│ │ │ ├── en-nz.js
│ │ │ ├── eo.js
│ │ │ ├── es-do.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr-ch.js
│ │ │ ├── fr.js
│ │ │ ├── fy.js
│ │ │ ├── gd.js
│ │ │ ├── gl.js
│ │ │ ├── gom-latn.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── hy-am.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── jv.js
│ │ │ ├── ka.js
│ │ │ ├── kk.js
│ │ │ ├── km.js
│ │ │ ├── kn.js
│ │ │ ├── ko.js
│ │ │ ├── ky.js
│ │ │ ├── lb.js
│ │ │ ├── lo.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── me.js
│ │ │ ├── mi.js
│ │ │ ├── mk.js
│ │ │ ├── ml.js
│ │ │ ├── mr.js
│ │ │ ├── ms-my.js
│ │ │ ├── ms.js
│ │ │ ├── my.js
│ │ │ ├── nb.js
│ │ │ ├── ne.js
│ │ │ ├── nl-be.js
│ │ │ ├── nl.js
│ │ │ ├── nn.js
│ │ │ ├── pa-in.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── sd.js
│ │ │ ├── se.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-cyrl.js
│ │ │ ├── sr.js
│ │ │ ├── ss.js
│ │ │ ├── sv.js
│ │ │ ├── sw.js
│ │ │ ├── ta.js
│ │ │ ├── te.js
│ │ │ ├── tet.js
│ │ │ ├── th.js
│ │ │ ├── tl-ph.js
│ │ │ ├── tlh.js
│ │ │ ├── tr.js
│ │ │ ├── tzl.js
│ │ │ ├── tzm-latn.js
│ │ │ ├── tzm.js
│ │ │ ├── uk.js
│ │ │ ├── ur.js
│ │ │ ├── uz-latn.js
│ │ │ ├── uz.js
│ │ │ ├── vi.js
│ │ │ ├── x-pseudo.js
│ │ │ ├── yo.js
│ │ │ ├── zh-cn.js
│ │ │ ├── zh-hk.js
│ │ │ └── zh-tw.js
│ │ ├── min
│ │ │ ├── locales.js
│ │ │ ├── locales.min.js
│ │ │ ├── moment-with-locales.js
│ │ │ ├── moment-with-locales.min.js
│ │ │ ├── moment.min.js
│ │ │ └── tests.js
│ │ ├── moment.d.ts
│ │ ├── moment.js
│ │ ├── src
│ │ │ ├── lib
│ │ │ ├── locale
│ │ │ └── moment.js
│ │ └── templates
│ │ ├── default.js
│ │ ├── locale-header.js
│ │ └── test-header.js
│ ├── nice-validator
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── demo
│ │ │ ├── demo.css
│ │ │ ├── full-example.html
│ │ │ ├── load-by-requirejs.html
│ │ │ ├── load-in-global.html
│ │ │ ├── option-display.html
│ │ │ ├── option-target.html
│ │ │ ├── option-theme.html
│ │ │ ├── option-timely.html
│ │ │ ├── required-by-condition.html
│ │ │ ├── required-from-group.html
│ │ │ ├── use-contenteditable.html
│ │ │ ├── use-with-bootstrap.html
│ │ │ └── use-with-jquery-form-plugin.html
│ │ └── dist
│ │ ├── images
│ │ ├── jquery.validator.css
│ │ ├── jquery.validator.js
│ │ ├── jquery.validator.min.js
│ │ └── local
│ ├── plupload
│ │ ├── bower.json
│ │ ├── js
│ │ │ ├── Moxie.swf
│ │ │ ├── Moxie.xap
│ │ │ ├── i18n
│ │ │ ├── jquery.plupload.queue
│ │ │ ├── jquery.ui.plupload
│ │ │ ├── moxie.js
│ │ │ ├── moxie.min.js
│ │ │ ├── plupload.dev.js
│ │ │ ├── plupload.full.min.js
│ │ │ └── plupload.min.js
│ │ ├── license.txt
│ │ └── readme.md
│ ├── require-css
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── compatibility-test.sh
│ │ ├── css-builder.js
│ │ ├── css.js
│ │ ├── css.min.js
│ │ ├── normalize.js
│ │ └── package.json
│ ├── requirejs-plugins
│ │ ├── README.mdown
│ │ ├── bower.json
│ │ ├── examples
│ │ │ ├── async.html
│ │ │ ├── data
│ │ │ ├── font.html
│ │ │ ├── goog.html
│ │ │ ├── image.html
│ │ │ ├── img
│ │ │ ├── js
│ │ │ ├── json.html
│ │ │ ├── mdown.html
│ │ │ └── noext.html
│ │ ├── lib
│ │ │ ├── Markdown.Converter.js
│ │ │ ├── require.js
│ │ │ └── text.js
│ │ └── src
│ │ ├── async.js
│ │ ├── depend.js
│ │ ├── font.js
│ │ ├── goog.js
│ │ ├── image.js
│ │ ├── json.js
│ │ ├── mdown.js
│ │ ├── noext.js
│ │ └── propertyParser.js
│ ├── selectpage
│ │ ├── README.md
│ │ ├── selectpage.css
│ │ ├── selectpage.js
│ │ └── selectpage.min.js
│ └── summernote
│ ├── LICENSE
│ ├── README.md
│ ├── bower.json
│ ├── composer.json
│ ├── dist
│ │ ├── font
│ │ ├── lang
│ │ ├── plugin
│ │ ├── summernote.css
│ │ ├── summernote.js
│ │ └── summernote.min.js
│ ├── examples
│ │ ├── airmode.html
│ │ ├── bs3fa4.html
│ │ ├── codemirror.html
│ │ ├── external-api.html
│ │ ├── get-button.html
│ │ ├── hint-emoji.html
│ │ ├── hint-symbols_mathematical-symbols_Greek-letters.html
│ │ ├── hint-userdefine.html
│ │ ├── jquery-custom-event.html
│ │ ├── jquery18lt.html
│ │ ├── lang.html
│ │ ├── link-blank.html
│ │ ├── nativestyle.html
│ │ ├── ondialog-multitab.html
│ │ ├── ondialog.html
│ │ ├── plugin-hello.html
│ │ ├── rtl.html
│ │ ├── symbols_mathematical-symbols_Greek-letters.json
│ │ └── textarea.html
│ ├── ie8.html
│ ├── index.html
│ ├── issue_template.md
│ ├── lang
│ │ ├── summernote-ar-AR.js
│ │ ├── summernote-bg-BG.js
│ │ ├── summernote-ca-ES.js
│ │ ├── summernote-cs-CZ.js
│ │ ├── summernote-da-DK.js
│ │ ├── summernote-de-DE.js
│ │ ├── summernote-el-GR.js
│ │ ├── summernote-es-ES.js
│ │ ├── summernote-es-EU.js
│ │ ├── summernote-fa-IR.js
│ │ ├── summernote-fi-FI.js
│ │ ├── summernote-fr-FR.js
│ │ ├── summernote-gl-ES.js
│ │ ├── summernote-he-IL.js
│ │ ├── summernote-hr-HR.js
│ │ ├── summernote-hu-HU.js
│ │ ├── summernote-id-ID.js
│ │ ├── summernote-it-IT.js
│ │ ├── summernote-ja-JP.js
│ │ ├── summernote-ko-KR.js
│ │ ├── summernote-lt-LT.js
│ │ ├── summernote-lt-LV.js
│ │ ├── summernote-mn-MN.js
│ │ ├── summernote-nb-NO.js
│ │ ├── summernote-nl-NL.js
│ │ ├── summernote-pl-PL.js
│ │ ├── summernote-pt-BR.js
│ │ ├── summernote-pt-PT.js
│ │ ├── summernote-ro-RO.js
│ │ ├── summernote-ru-RU.js
│ │ ├── summernote-sk-SK.js
│ │ ├── summernote-sl-SI.js
│ │ ├── summernote-sr-RS-Latin.js
│ │ ├── summernote-sr-RS.js
│ │ ├── summernote-sv-SE.js
│ │ ├── summernote-ta-IN.js
│ │ ├── summernote-th-TH.js
│ │ ├── summernote-tr-TR.js
│ │ ├── summernote-uk-UA.js
│ │ ├── summernote-vi-VN.js
│ │ ├── summernote-zh-CN.js
│ │ └── summernote-zh-TW.js
│ ├── lite.html
│ ├── meteor
│ │ ├── README.md
│ │ ├── package-standalone.js
│ │ ├── package.js
│ │ ├── publish.sh
│ │ ├── runtests.sh
│ │ └── test.js
│ ├── nuget-build.cmd
│ ├── package.json
│ ├── plugin
│ │ ├── databasic
│ │ ├── hello
│ │ └── specialchars
│ ├── pull_request_template.md
│ └── src
│ ├── icons
│ └── js
└── 5t6t网_物业管理系统php.zip
702 directories, 1615 files
评论