gitextract_8h9hwlxr/ ├── .gitignore ├── .htaccess ├── 404.html ├── LICENSE ├── README.md ├── SECURITY.md ├── app/ │ ├── admin/ │ │ ├── c/ │ │ │ ├── AdminController.php │ │ │ ├── ArticleController.php │ │ │ ├── ClasstypeController.php │ │ │ ├── CollectController.php │ │ │ ├── CommentController.php │ │ │ ├── CommonController.php │ │ │ ├── ErrorController.php │ │ │ ├── ExtmoldsController.php │ │ │ ├── FieldsController.php │ │ │ ├── IndexController.php │ │ │ ├── JzattrController.php │ │ │ ├── JzchainController.php │ │ │ ├── LinksController.php │ │ │ ├── LoginController.php │ │ │ ├── MemberController.php │ │ │ ├── MessageController.php │ │ │ ├── MoldsController.php │ │ │ ├── OrderController.php │ │ │ ├── PluginsController.php │ │ │ ├── ProductController.php │ │ │ ├── RecycleController.php │ │ │ ├── RulersController.php │ │ │ ├── SysController.php │ │ │ ├── TemplateController.php │ │ │ ├── UploadsController.php │ │ │ └── WechatController.php │ │ ├── exts/ │ │ │ ├── .gitkeep │ │ │ └── jizhicmsupdate/ │ │ │ ├── PluginsController.php │ │ │ ├── config.php │ │ │ ├── file/ │ │ │ │ ├── conf/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── mysql/ │ │ │ │ ├── admin/ │ │ │ │ │ ├── c/ │ │ │ │ │ │ └── back/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── tpl/ │ │ │ │ │ └── back/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── frphp/ │ │ │ │ │ ├── back/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── common/ │ │ │ │ │ │ └── back/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── extend/ │ │ │ │ │ │ └── back/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── lib/ │ │ │ │ │ └── back/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── home/ │ │ │ │ │ └── back/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── static/ │ │ │ │ └── .gitkeep │ │ │ └── tpl/ │ │ │ ├── plugins-body.html │ │ │ └── plugins-description.html │ │ ├── lang/ │ │ │ ├── back.php │ │ │ ├── cht.php │ │ │ ├── common.php │ │ │ ├── en.php │ │ │ └── zh.php │ │ ├── plugins/ │ │ │ └── IndexController.php │ │ └── t/ │ │ └── tpl/ │ │ ├── addcache.html │ │ ├── addmenu.html │ │ ├── admin-add.html │ │ ├── admin-edit.html │ │ ├── admin-list.html │ │ ├── admin.html │ │ ├── article-add.html │ │ ├── article-edit.html │ │ ├── article-list.html │ │ ├── attr-list.html │ │ ├── beifen.html │ │ ├── cache.html │ │ ├── chain-list.html │ │ ├── chongzhi-add.html │ │ ├── chongzhi-list.html │ │ ├── classtype-add.html │ │ ├── classtype-addmany.html │ │ ├── classtype-edit.html │ │ ├── classtype-list.html │ │ ├── collect-add.html │ │ ├── collect-edit.html │ │ ├── collect-list.html │ │ ├── collecttype-add.html │ │ ├── collecttype-edit.html │ │ ├── collecttype-list.html │ │ ├── comment-add.html │ │ ├── comment-details.html │ │ ├── comment-list.html │ │ ├── common/ │ │ │ ├── content.html │ │ │ ├── edit.html │ │ │ ├── fields.html │ │ │ ├── footer.html │ │ │ ├── style.html │ │ │ └── uediter.php │ │ ├── ctype.html │ │ ├── datacache.html │ │ ├── desktop-add.html │ │ ├── desktop-edit.html │ │ ├── desktop.html │ │ ├── editcache.html │ │ ├── editmenu.html │ │ ├── extmolds-add.html │ │ ├── extmolds-edit.html │ │ ├── extmolds-list.html │ │ ├── fields-add.html │ │ ├── fields-edit.html │ │ ├── fields-list-show.html │ │ ├── fields-list.html │ │ ├── getchildren.html │ │ ├── group-add.html │ │ ├── group-edit.html │ │ ├── group-list.html │ │ ├── index.html │ │ ├── links-add.html │ │ ├── links-edit.html │ │ ├── links-list.html │ │ ├── linktype-add.html │ │ ├── linktype-edit.html │ │ ├── linktype-list.html │ │ ├── login.html │ │ ├── loginlog.html │ │ ├── member-add.html │ │ ├── member-edit.html │ │ ├── member-list.html │ │ ├── membergroup-add.html │ │ ├── membergroup-edit.html │ │ ├── membergroup-list.html │ │ ├── menu.html │ │ ├── message-details.html │ │ ├── message-list.html │ │ ├── molds-add.html │ │ ├── molds-edit.html │ │ ├── molds-list.html │ │ ├── order-details.html │ │ ├── order-list.html │ │ ├── pictures.html │ │ ├── plugins-list.html │ │ ├── plugins-update.html │ │ ├── power-add.html │ │ ├── power-edit.html │ │ ├── power-list.html │ │ ├── power-tree.html │ │ ├── product-add.html │ │ ├── product-edit.html │ │ ├── product-list.html │ │ ├── recycle-list.html │ │ ├── restrucfields.html │ │ ├── ruler-add.html │ │ ├── ruler-edit.html │ │ ├── ruler-list.html │ │ ├── showlabel.html │ │ ├── sitemap.html │ │ ├── style/ │ │ │ ├── css/ │ │ │ │ ├── font.css │ │ │ │ ├── iconfont.css │ │ │ │ ├── style.css │ │ │ │ └── xadmin.css │ │ │ ├── fonts/ │ │ │ │ ├── demo.css │ │ │ │ ├── iconfont.css │ │ │ │ ├── iconfont.js │ │ │ │ └── iconfont.json │ │ │ ├── js/ │ │ │ │ ├── target_page.js │ │ │ │ ├── target_window.js │ │ │ │ ├── xadmin.js │ │ │ │ └── xm-select.js │ │ │ └── tags/ │ │ │ ├── jquery.tagsinput.css │ │ │ └── jquery.tagsinput.js │ │ ├── sys.html │ │ ├── systype.html │ │ ├── template-list.html │ │ ├── template-update.html │ │ ├── tohtml.html │ │ ├── unicode.html │ │ ├── wechat-caidan.html │ │ ├── wechat-sucai.html │ │ └── welcome.html │ └── home/ │ ├── c/ │ │ ├── CommentController.php │ │ ├── CommonController.php │ │ ├── ErrorController.php │ │ ├── HomeController.php │ │ ├── JzpayController.php │ │ ├── LoginController.php │ │ ├── MessageController.php │ │ ├── MypayController.php │ │ ├── OrderController.php │ │ ├── ScreenController.php │ │ ├── TagsController.php │ │ ├── UploadsController.php │ │ ├── UserController.php │ │ └── WechatController.php │ ├── lang/ │ │ ├── back.php │ │ ├── cht.php │ │ ├── common.php │ │ └── zh.php │ ├── plugins/ │ │ └── .gitkeep │ └── template/ │ └── .gitkeep ├── backup/ │ └── .gitkeep ├── conf/ │ ├── Functions.php │ ├── FunctionsExt.php │ ├── config.php │ └── route.php ├── frphp/ │ ├── common/ │ │ ├── Config.php │ │ ├── Error.php │ │ └── Functions.php │ ├── db/ │ │ └── DBholder.php │ ├── extend/ │ │ ├── ArrayPage.php │ │ ├── DB_API.php │ │ ├── DatabaseTool.php │ │ ├── FrSession.php │ │ ├── PHPMailer/ │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── VERSION │ │ │ ├── class.phpmailer.php │ │ │ ├── class.phpmaileroauth.php │ │ │ ├── class.phpmaileroauthgoogle.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── extras/ │ │ │ │ ├── EasyPeasyICS.php │ │ │ │ ├── README.md │ │ │ │ ├── htmlfilter.php │ │ │ │ └── ntlm_sasl_client.php │ │ │ ├── get_oauth_token.php │ │ │ └── testmail.php │ │ ├── Page.php │ │ ├── SessionRedis.php │ │ ├── Uploader.class.php │ │ ├── Vercode.php │ │ ├── compressimage.php │ │ ├── pay/ │ │ │ ├── alipay/ │ │ │ │ ├── AlipayService.php │ │ │ │ └── AlipayServiceCheck.php │ │ │ └── wechat/ │ │ │ ├── WxpayCheckOrder.php │ │ │ ├── WxpayH5Service.php │ │ │ ├── WxpayScan.php │ │ │ ├── WxpayService.php │ │ │ └── WxpayServiceCheck.php │ │ ├── phpqrcode/ │ │ │ └── phpqrcode.php │ │ └── pinyin.php │ ├── fr.php │ └── lib/ │ ├── Controller.php │ ├── Model.php │ └── View.php ├── index.php ├── install/ │ ├── db.php │ ├── index.php │ ├── test.php │ └── tpl/ │ ├── css/ │ │ └── ui.progress-bar.css │ ├── footer.tpl │ ├── header.tpl │ ├── index.jizhi │ ├── js/ │ │ └── common.js │ ├── layer/ │ │ ├── mobile/ │ │ │ ├── layer.js │ │ │ └── need/ │ │ │ └── layer.css │ │ └── theme/ │ │ └── default/ │ │ └── layer.css │ ├── step1.jizhi │ ├── step2.jizhi │ ├── step3.jizhi │ ├── step4.jizhi │ └── step5.jizhi ├── readme.txt ├── robots.txt ├── static/ │ ├── cms/ │ │ ├── 404.html │ │ ├── article/ │ │ │ ├── article-details.html │ │ │ ├── article-list.html │ │ │ └── faq.html │ │ ├── backup/ │ │ │ └── .gitkeep │ │ ├── comment.html │ │ ├── faq.html │ │ ├── footer.html │ │ ├── func/ │ │ │ └── functions.php │ │ ├── header.html │ │ ├── index.html │ │ ├── info.php │ │ ├── install/ │ │ │ └── TemplateController.php │ │ ├── js.html │ │ ├── latestpost.html │ │ ├── message/ │ │ │ └── contact-us.html │ │ ├── page/ │ │ │ ├── about-us.html │ │ │ └── page.html │ │ ├── paytpl/ │ │ │ ├── alipay_in_weixin.html │ │ │ ├── dmf.html │ │ │ ├── overpay.html │ │ │ ├── pay_form.html │ │ │ ├── wechat_h5_pay.html │ │ │ ├── wechat_pay.html │ │ │ └── wechat_scan.html │ │ ├── product/ │ │ │ ├── details.html │ │ │ └── list.html │ │ ├── search.html │ │ ├── searchall.html │ │ ├── searchform.html │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ ├── aos.css │ │ │ │ ├── gordita-fonts.css │ │ │ │ └── style.css │ │ │ └── js/ │ │ │ ├── ajax.mail.js │ │ │ ├── aos.js │ │ │ └── main.js │ │ ├── style.html │ │ ├── tags-details.html │ │ └── user/ │ │ ├── article-add.html │ │ ├── article.html │ │ ├── buy-list.html │ │ ├── buy-view.html │ │ ├── buy.html │ │ ├── cart.html │ │ ├── collect.html │ │ ├── comment.html │ │ ├── fans.html │ │ ├── follow.html │ │ ├── footer.html │ │ ├── forget.html │ │ ├── index.html │ │ ├── left_nav.html │ │ ├── likes.html │ │ ├── login.html │ │ ├── nologin.html │ │ ├── notify.html │ │ ├── order.html │ │ ├── orderdetails.html │ │ ├── password.html │ │ ├── payment.html │ │ ├── people.html │ │ ├── prople.html │ │ ├── register.html │ │ ├── reset_password.html │ │ ├── setmsg.html │ │ ├── style.html │ │ ├── tips.html │ │ ├── top.html │ │ ├── userinfo.html │ │ └── wallet.html │ ├── common/ │ │ ├── clipboard.js │ │ ├── close.html │ │ ├── layui/ │ │ │ ├── css/ │ │ │ │ ├── layui.css │ │ │ │ └── modules/ │ │ │ │ ├── code.css │ │ │ │ ├── laydate/ │ │ │ │ │ └── default/ │ │ │ │ │ └── laydate.css │ │ │ │ └── layer/ │ │ │ │ └── default/ │ │ │ │ └── layer.css │ │ │ └── layui.js │ │ ├── md5.js │ │ ├── uediter.php │ │ ├── user/ │ │ │ ├── css/ │ │ │ │ ├── font_1546140_sw4m5ivcrg9.css │ │ │ │ ├── reset.css │ │ │ │ └── user.css │ │ │ ├── js/ │ │ │ │ ├── jquery.min-1.10.2.js │ │ │ │ └── user.js │ │ │ └── uedit/ │ │ │ ├── dialogs/ │ │ │ │ ├── anchor/ │ │ │ │ │ └── anchor.html │ │ │ │ ├── attachment/ │ │ │ │ │ ├── attachment.css │ │ │ │ │ ├── attachment.html │ │ │ │ │ └── attachment.js │ │ │ │ ├── background/ │ │ │ │ │ ├── background.css │ │ │ │ │ ├── background.html │ │ │ │ │ └── background.js │ │ │ │ ├── charts/ │ │ │ │ │ ├── chart.config.js │ │ │ │ │ ├── charts.css │ │ │ │ │ ├── charts.html │ │ │ │ │ └── charts.js │ │ │ │ ├── emotion/ │ │ │ │ │ ├── emotion.css │ │ │ │ │ ├── emotion.html │ │ │ │ │ └── emotion.js │ │ │ │ ├── gmap/ │ │ │ │ │ └── gmap.html │ │ │ │ ├── help/ │ │ │ │ │ ├── help.css │ │ │ │ │ ├── help.html │ │ │ │ │ └── help.js │ │ │ │ ├── image/ │ │ │ │ │ ├── image.css │ │ │ │ │ ├── image.html │ │ │ │ │ └── image.js │ │ │ │ ├── insertframe/ │ │ │ │ │ └── insertframe.html │ │ │ │ ├── internal.js │ │ │ │ ├── link/ │ │ │ │ │ └── link.html │ │ │ │ ├── map/ │ │ │ │ │ ├── map.html │ │ │ │ │ └── show.html │ │ │ │ ├── music/ │ │ │ │ │ ├── music.css │ │ │ │ │ ├── music.html │ │ │ │ │ └── music.js │ │ │ │ ├── preview/ │ │ │ │ │ └── preview.html │ │ │ │ ├── scrawl/ │ │ │ │ │ ├── scrawl.css │ │ │ │ │ ├── scrawl.html │ │ │ │ │ └── scrawl.js │ │ │ │ ├── searchreplace/ │ │ │ │ │ ├── searchreplace.html │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── snapscreen/ │ │ │ │ │ └── snapscreen.html │ │ │ │ ├── spechars/ │ │ │ │ │ ├── spechars.html │ │ │ │ │ └── spechars.js │ │ │ │ ├── table/ │ │ │ │ │ ├── edittable.css │ │ │ │ │ ├── edittable.html │ │ │ │ │ ├── edittable.js │ │ │ │ │ ├── edittd.html │ │ │ │ │ └── edittip.html │ │ │ │ ├── template/ │ │ │ │ │ ├── config.js │ │ │ │ │ ├── template.css │ │ │ │ │ ├── template.html │ │ │ │ │ └── template.js │ │ │ │ ├── video/ │ │ │ │ │ ├── video.css │ │ │ │ │ ├── video.html │ │ │ │ │ └── video.js │ │ │ │ ├── webapp/ │ │ │ │ │ └── webapp.html │ │ │ │ └── wordimage/ │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ │ ├── lang/ │ │ │ │ ├── en/ │ │ │ │ │ └── en.js │ │ │ │ └── zh-cn/ │ │ │ │ └── zh-cn.js │ │ │ ├── themes/ │ │ │ │ ├── default/ │ │ │ │ │ ├── _css/ │ │ │ │ │ │ ├── autotypesetpicker.css │ │ │ │ │ │ ├── button.css │ │ │ │ │ │ ├── buttonicon.css │ │ │ │ │ │ ├── cellalignpicker.css │ │ │ │ │ │ ├── colorbutton.css │ │ │ │ │ │ ├── colorpicker.css │ │ │ │ │ │ ├── combox.css │ │ │ │ │ │ ├── contextmenu.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── menu.css │ │ │ │ │ │ ├── menubutton.css │ │ │ │ │ │ ├── message.css │ │ │ │ │ │ ├── multiMenu.css │ │ │ │ │ │ ├── paragraphpicker.css │ │ │ │ │ │ ├── pastepicker.css │ │ │ │ │ │ ├── popup.css │ │ │ │ │ │ ├── separtor.css │ │ │ │ │ │ ├── shortcutmenu.css │ │ │ │ │ │ ├── splitbutton.css │ │ │ │ │ │ ├── tablepicker.css │ │ │ │ │ │ ├── toolbar.css │ │ │ │ │ │ ├── ueditor.css │ │ │ │ │ │ └── uibase.css │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── ueditor.css │ │ │ │ │ └── dialogbase.css │ │ │ │ └── iframe.css │ │ │ ├── third-party/ │ │ │ │ ├── SyntaxHighlighter/ │ │ │ │ │ ├── shCore.js │ │ │ │ │ └── shCoreDefault.css │ │ │ │ ├── codemirror/ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── highcharts/ │ │ │ │ │ ├── adapters/ │ │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highcharts-more.src.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── highcharts.src.js │ │ │ │ │ ├── modules/ │ │ │ │ │ │ ├── annotations.js │ │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── data.src.js │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ │ ├── exporting.js │ │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── map.src.js │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ │ └── themes/ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── video-js/ │ │ │ │ │ ├── video-js.css │ │ │ │ │ ├── video-js.swf │ │ │ │ │ ├── video.dev.js │ │ │ │ │ └── video.js │ │ │ │ ├── webuploader/ │ │ │ │ │ ├── Uploader.swf │ │ │ │ │ ├── webuploader.css │ │ │ │ │ ├── webuploader.custom.js │ │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ │ ├── webuploader.html5only.js │ │ │ │ │ ├── webuploader.js │ │ │ │ │ └── webuploader.withoutimage.js │ │ │ │ └── zeroclipboard/ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ └── ZeroClipboard.swf │ │ │ ├── ueditor.all.js │ │ │ ├── ueditor.config.js │ │ │ └── ueditor.parse.js │ │ └── wangeditor/ │ │ └── wangeditor.css │ └── default/ │ └── assets/ │ ├── css/ │ │ ├── Projects-Horizontal.css │ │ ├── css.css │ │ └── smoothproducts.css │ └── js/ │ └── theme.js └── web.config