├── thinkphp
├── .htaccess
├── .gitignore
├── logo.png
├── library
│ ├── think
│ │ ├── console
│ │ │ ├── bin
│ │ │ │ ├── hiddeninput.exe
│ │ │ │ └── README.md
│ │ │ ├── command
│ │ │ │ ├── make
│ │ │ │ │ ├── stubs
│ │ │ │ │ │ ├── model.stub
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ └── controller.stub
│ │ │ │ │ ├── Model.php
│ │ │ │ │ └── Controller.php
│ │ │ │ ├── Clear.php
│ │ │ │ ├── Build.php
│ │ │ │ ├── Help.php
│ │ │ │ └── Lists.php
│ │ │ ├── LICENSE
│ │ │ └── output
│ │ │ │ ├── driver
│ │ │ │ ├── Nothing.php
│ │ │ │ └── Buffer.php
│ │ │ │ └── question
│ │ │ │ └── Confirmation.php
│ │ ├── exception
│ │ │ ├── RouteNotFoundException.php
│ │ │ ├── HttpResponseException.php
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── TemplateNotFoundException.php
│ │ │ ├── ValidateException.php
│ │ │ ├── HttpException.php
│ │ │ ├── DbException.php
│ │ │ ├── PDOException.php
│ │ │ ├── ThrowableError.php
│ │ │ └── ErrorException.php
│ │ ├── config
│ │ │ └── driver
│ │ │ │ ├── Ini.php
│ │ │ │ ├── Json.php
│ │ │ │ └── Xml.php
│ │ ├── log
│ │ │ └── driver
│ │ │ │ └── Test.php
│ │ ├── Env.php
│ │ ├── model
│ │ │ └── Pivot.php
│ │ ├── db
│ │ │ ├── exception
│ │ │ │ ├── BindParamException.php
│ │ │ │ ├── ModelNotFoundException.php
│ │ │ │ └── DataNotFoundException.php
│ │ │ └── builder
│ │ │ │ ├── Mysql.php
│ │ │ │ ├── Sqlite.php
│ │ │ │ └── Pgsql.php
│ │ ├── controller
│ │ │ └── Yar.php
│ │ ├── Exception.php
│ │ ├── process
│ │ │ ├── exception
│ │ │ │ ├── Faild.php
│ │ │ │ └── Timeout.php
│ │ │ ├── Utils.php
│ │ │ └── pipes
│ │ │ │ └── Pipes.php
│ │ ├── response
│ │ │ ├── Json.php
│ │ │ └── Jsonp.php
│ │ ├── template
│ │ │ └── driver
│ │ │ │ └── File.php
│ │ └── paginator
│ │ │ └── Collection.php
│ └── traits
│ │ └── think
│ │ └── Instance.php
├── codecov.yml
├── start.php
├── console.php
├── tpl
│ ├── default_index.tpl
│ └── dispatch_jump.tpl
├── composer.json
├── phpunit.xml
├── .travis.yml
└── LICENSE.txt
├── application
├── .htaccess
├── admin
│ ├── common.php
│ ├── config.php
│ ├── view
│ │ ├── index
│ │ │ └── .DS_Store
│ │ ├── public
│ │ │ ├── .DS_Store
│ │ │ ├── footer.html
│ │ │ └── header.html
│ │ ├── bis
│ │ │ ├── dellist.html
│ │ │ ├── index.html
│ │ │ └── apply.html
│ │ ├── category
│ │ │ ├── add.html
│ │ │ ├── edit.html
│ │ │ └── index.html
│ │ └── featured
│ │ │ └── index.html
│ ├── validate
│ │ └── Category.php
│ └── controller
│ │ ├── Index.php
│ │ ├── Base.php
│ │ ├── Featured.php
│ │ └── Bis.php
├── bis
│ ├── common.php
│ ├── config.php
│ ├── .DS_Store
│ ├── view
│ │ ├── .DS_Store
│ │ ├── register
│ │ │ └── waiting.html
│ │ ├── public
│ │ │ ├── footer.html
│ │ │ ├── menu.html
│ │ │ └── header.html
│ │ ├── location
│ │ │ └── index.html
│ │ └── login
│ │ │ └── index.html
│ └── controller
│ │ ├── Index.php
│ │ ├── Base.php
│ │ ├── Login.php
│ │ └── Deal.php
├── common
│ ├── common.php
│ ├── config.php
│ ├── model
│ │ ├── Admin.php
│ │ ├── Coupons.php
│ │ ├── BisAccount.php
│ │ ├── BaseModel.php
│ │ ├── Bis.php
│ │ ├── Featured.php
│ │ ├── BisLocation.php
│ │ ├── User.php
│ │ ├── City.php
│ │ ├── Order.php
│ │ └── Deal.php
│ ├── validate
│ │ └── Bis.php
│ └── controller
│ │ └── Index.php
├── .DS_Store
├── api
│ ├── config.php
│ ├── common.php
│ └── controller
│ │ ├── Image.php
│ │ ├── City.php
│ │ ├── Order.php
│ │ ├── Category.php
│ │ └── Index.php
├── extra
│ ├── featured.php
│ ├── email.php
│ └── map.php
├── index
│ ├── controller
│ │ ├── Map.php
│ │ ├── Index.php
│ │ ├── Test.php
│ │ ├── Detail.php
│ │ ├── Order.php
│ │ ├── Pay.php
│ │ ├── Lists.php
│ │ └── Base.php
│ └── view
│ │ ├── pay
│ │ └── paysuccess.html
│ │ ├── public
│ │ ├── nav.html
│ │ └── head.html
│ │ └── user
│ │ └── register.html
├── command.php
├── route.php
├── tags.php
├── build.php
└── database.php
├── extend
└── .gitignore
├── vendor
└── .gitignore
├── public
├── static
│ └── .gitignore
├── robots.txt
├── .DS_Store
├── favicon.ico
├── upload
│ ├── 20170115
│ │ ├── .DS_Store
│ │ ├── 2ce878768a40805c0a520f0cc6a6be32.png
│ │ └── 86c3c46ae746dda1a4af393466e4c07b.png
│ ├── 20170122
│ │ ├── .DS_Store
│ │ ├── 0abbc2d97c52e0883bac9522d27f0244.png
│ │ ├── 0e48c3472bc79c2232a64b086b798182.png
│ │ ├── 28141ad57dbe4191f948bf3211b96b43.png
│ │ ├── 4dd8bbfc7cd3b94cb1a7103191b76662.png
│ │ ├── 6b472e073d3d9113841520ded129e599.png
│ │ ├── 7b250f7b0af5a4a3c25fa050594fa518.png
│ │ ├── 92954b81303a22bd63edce3146c40e19.png
│ │ ├── b041ef62b92d17ca842713d136628005.png
│ │ └── e65aa253ca066b4c0c6deebe3287f453.png
│ ├── 20170205
│ │ ├── .DS_Store
│ │ ├── 971ed11d347241e2077693ae178873b7.png
│ │ ├── c157f7cbe8da9ff151781bc5930c64a2.png
│ │ ├── e1f72f9ee1ab70c051db24d6e7c2e597.png
│ │ └── eeb5d7e8ead52b94efe7fcb1fe04f25d.png
│ ├── 20170206
│ │ ├── .DS_Store
│ │ ├── 762564e8e90163d6e1a53a52f2fee5a8.png
│ │ ├── 93aa915c68bf91d3c946bfab4c00491a.png
│ │ ├── ca530a984bd4960fe6fa5633b4ca549e.png
│ │ └── e0bf629155825b66375b1f4911544dc8.png
│ ├── 20170219
│ │ ├── d1.jpg
│ │ ├── .DS_Store
│ │ ├── ads.jpg
│ │ ├── datu.jpg
│ │ ├── 0c419b2425c8935b4222354c0442f0dd.jpg
│ │ ├── 1574822f08a76532a74047670f44015e.jpg
│ │ ├── 3e35576eb4c321bf517f8d8ac2c95acf.jpg
│ │ ├── 3fbf62aa64e2c197be655c010adfe0f3.jpg
│ │ ├── 64fad76c6cb6084ba466b43810fe4d25.jpg
│ │ ├── 8af01775f874b7ebf3583eb2fdf3e9ed.jpg
│ │ ├── a89a8c417e7e5ff3079e4e2b6129d785.jpg
│ │ ├── bc3356e2d1959ad830ca992e4606167e.jpg
│ │ ├── d2f4a90b29ff6f9751456f0fe44d09f2.jpg
│ │ ├── de895022acce2a7c94e1dd255a7565f9.jpg
│ │ ├── ed6baf2b9686ffe4c17f9052b1c041aa.jpg
│ │ └── f35c26b5069e96402d2f25a20f5e6faf.jpg
│ ├── 20170309
│ │ └── .DS_Store
│ ├── 20170311
│ │ ├── .DS_Store
│ │ ├── 3461f6bc5de101e15d3dd5c059c6964f.png
│ │ ├── 8f84f9e9d8ebc3a226c008bf842703ee.jpg
│ │ └── f2c008ee590cffb3128f2e57e2e25945.jpg
│ ├── 20170313
│ │ ├── .DS_Store
│ │ ├── 2d8b03615df9193b551c62bd632c0956.jpg
│ │ └── b041bc1a39e8a673680e4bdb41ac2683.jpg
│ └── .DS_Store
├── weixin
│ ├── .DS_Store
│ ├── doc
│ │ ├── README
│ │ └── README.doc
│ ├── image
│ │ ├── bk.png
│ │ ├── image001.jpg
│ │ └── image002.png
│ ├── lib
│ │ ├── .DS_Store
│ │ ├── WxPay.Exception.php
│ │ ├── WxPay.Config.php
│ │ └── WxPay.Notify.php
│ ├── example
│ │ ├── qrcode.php
│ │ ├── WxPay.NativePay.php
│ │ ├── notify.php
│ │ ├── download.php
│ │ ├── orderquery.php
│ │ ├── native.php
│ │ ├── micropay.php
│ │ └── native_notify.php
│ ├── cert
│ │ ├── apiclient_cert.pem
│ │ └── apiclient_key.pem
│ └── index.php
├── ueditor
│ └── php
│ │ └── upload
│ │ └── image
│ │ ├── 20170114
│ │ └── 1484380249415690.png
│ │ ├── 20170115
│ │ └── 1484473712156060.png
│ │ ├── 20170311
│ │ └── 1489227732945077.jpg
│ │ └── 20170313
│ │ ├── 1489403977273966.jpg
│ │ └── 1489405649126829.jpg
├── .htaccess
├── nohup.out
├── index.php
└── router.php
├── runtime
├── log
│ └── 201709
│ │ └── 07_error.log
└── temp
│ └── 50386a63f26ecd5d0b88b2316bbc34b5.php
├── .idea
├── modules.xml
└── tp5.iml
├── composer.json
├── think
└── LICENSE.txt
/thinkphp/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/application/admin/common.php:
--------------------------------------------------------------------------------
1 | 'json',
5 | ];
--------------------------------------------------------------------------------
/public/upload/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/.DS_Store
--------------------------------------------------------------------------------
/public/weixin/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/.DS_Store
--------------------------------------------------------------------------------
/public/weixin/doc/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/doc/README
--------------------------------------------------------------------------------
/application/bis/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/application/bis/.DS_Store
--------------------------------------------------------------------------------
/public/weixin/image/bk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/image/bk.png
--------------------------------------------------------------------------------
/public/weixin/lib/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/lib/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170219/d1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170219/d1.jpg
--------------------------------------------------------------------------------
/public/weixin/doc/README.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/doc/README.doc
--------------------------------------------------------------------------------
/application/bis/view/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/application/bis/view/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170115/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170115/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170122/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170122/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170205/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170205/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170206/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170206/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170219/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170219/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170219/ads.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170219/ads.jpg
--------------------------------------------------------------------------------
/public/upload/20170219/datu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170219/datu.jpg
--------------------------------------------------------------------------------
/public/upload/20170309/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170309/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170311/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170311/.DS_Store
--------------------------------------------------------------------------------
/public/upload/20170313/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/upload/20170313/.DS_Store
--------------------------------------------------------------------------------
/public/weixin/image/image001.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/image/image001.jpg
--------------------------------------------------------------------------------
/public/weixin/image/image002.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/public/weixin/image/image002.png
--------------------------------------------------------------------------------
/runtime/log/201709/07_error.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/runtime/log/201709/07_error.log
--------------------------------------------------------------------------------
/application/admin/view/index/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/application/admin/view/index/.DS_Store
--------------------------------------------------------------------------------
/application/admin/view/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ljhhhhhh/imooc_o2o/HEAD/application/admin/view/public/.DS_Store
--------------------------------------------------------------------------------
/application/common/model/Admin.php:
--------------------------------------------------------------------------------
1 | intval($status),
5 | 'message' => $message,
6 | 'data' => $data,
7 | ];
8 | }
--------------------------------------------------------------------------------
/application/extra/featured.php:
--------------------------------------------------------------------------------
1 | [
8 | 0 => '首页大图推荐位',
9 | 1 => '首页右侧广告位',
10 | // todo
11 | ],
12 | ];
--------------------------------------------------------------------------------
/thinkphp/library/think/console/command/make/stubs/controller.plain.stub:
--------------------------------------------------------------------------------
1 | fetch();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/application/extra/email.php:
--------------------------------------------------------------------------------
1 | 'smtp.126.com',
7 | 'port' => 25,
8 | 'username' => 'singwa3@126.com',
9 | 'password' => 'you password o hah',
10 |
11 | ];
12 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |