├── .gitignore ├── App ├── API │ ├── GET │ │ ├── Index.php │ │ └── Ticket.php │ ├── POST │ │ ├── Member.php │ │ └── Ticket.php │ └── index.html ├── Form │ ├── GET │ │ ├── Attachment.php │ │ ├── Category.php │ │ ├── Fqa.php │ │ ├── Index.php │ │ ├── Login.php │ │ ├── Member.php │ │ └── View.php │ ├── POST │ │ ├── Login.php │ │ ├── Submit.php │ │ └── Upload.php │ └── PUT │ │ ├── Member.php │ │ └── Ticket.php ├── Ticket │ ├── DELETE │ │ ├── Attachment.php │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Model.php │ │ ├── Send.php │ │ ├── Ticket.php │ │ └── User.php │ ├── GET │ │ ├── Application.php │ │ ├── Bulletin.php │ │ ├── Category.php │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Fqa.php │ │ ├── HelpDocument.php │ │ ├── Index.php │ │ ├── Log.php │ │ ├── Login.php │ │ ├── Member.php │ │ ├── Menu.php │ │ ├── Model.php │ │ ├── Node.php │ │ ├── Phrase.php │ │ ├── Setting.php │ │ ├── Theme.php │ │ ├── Ticket.php │ │ ├── Ticket_form.php │ │ ├── Ticket_model.php │ │ ├── User.php │ │ └── User_group.php │ ├── POST │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Fqa.php │ │ ├── Login.php │ │ ├── Model.php │ │ ├── Ticket.php │ │ ├── Ticket_model.php │ │ └── User_group.php │ ├── PUT │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Member.php │ │ ├── Model.php │ │ ├── Send.php │ │ ├── Setting.php │ │ ├── Theme.php │ │ ├── Ticket.php │ │ ├── User.php │ │ └── User_group.php │ └── index.html └── index.html ├── Config ├── Config │ └── index.html ├── Route.php ├── Route │ └── index.html ├── RouteUrl │ └── index.html ├── config_same.php └── index.html ├── Core ├── Abnormal │ ├── Abnormal.php │ ├── Error.php │ └── index.html ├── App.php ├── Controller │ ├── Controller.php │ └── index.html ├── Db │ ├── Mysql.php │ ├── README.md │ └── index.html ├── Func │ ├── CoreFunc.php │ └── index.html ├── Model │ └── Model.php ├── Plugin │ ├── Plugin.php │ ├── PluginController.php │ ├── PluginCrontab.php │ └── PluginImplements.php ├── Route │ ├── Route.php │ └── index.html ├── Slice │ ├── InitSlice.php │ ├── Slice.php │ ├── index.html │ └── interfaceSlice.php ├── Theme │ ├── 404.php │ ├── error.php │ ├── index.html │ └── jump.php ├── index.html └── index.php ├── Expand ├── Cli │ ├── Core.php │ ├── SendNotice.php │ ├── Ticket │ │ └── index.html │ └── index.html ├── CreatePath.php ├── FileCache.php ├── Font │ └── RobotoSlab-Regular.ttf ├── Form │ ├── Form.json │ ├── Form.php │ └── theme │ │ ├── category.php │ │ ├── checkbox.php │ │ ├── china_regions.php │ │ ├── color.php │ │ ├── date.php │ │ ├── editor.php │ │ ├── file.php │ │ ├── icon.php │ │ ├── img.php │ │ ├── multiple.php │ │ ├── option.php │ │ ├── radio.php │ │ ├── select.php │ │ ├── text.php │ │ ├── textarea.php │ │ ├── thumb.php │ │ ├── ticket.php │ │ └── video.php ├── Install.php ├── Label.php ├── Log.php ├── Notice │ ├── Exception.php │ ├── Mail.php │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ ├── SMTP.php │ ├── mailTemplate.html │ └── phpmailer.lang-zh_cn.php ├── OpenSSL.php ├── OtherNotice.php ├── Page.php ├── PageCommon.php ├── SMS │ ├── SMSInterface.php │ ├── SMSMain.php │ ├── aliyunSMS.php │ └── ihuyiSMS.php ├── UBB.php ├── UEupload │ ├── UEController.php │ ├── Uploader.php │ ├── action_crawler.php │ ├── action_list.php │ ├── action_upload.php │ ├── config.json │ └── index.html ├── Verify.php ├── cURL.php ├── dingtalk.php ├── index.html ├── weixin.php ├── weixinWork.php ├── wxapp.php └── zip.php ├── LICENSE ├── Model ├── API │ ├── Member.php │ └── Ticket.php ├── Auth.php ├── Behavior.php ├── CSnotice.php ├── Category.php ├── Content.php ├── Extra.php ├── Field.php ├── Fqa.php ├── MailTemplate.php ├── Member.php ├── Menu.php ├── ModelManage.php ├── Node.php ├── Notice.php ├── Option.php ├── SendLimit.php ├── SendLimitWrapper.php ├── Theme.php ├── Ticket.php ├── TicketChat.php ├── TicketForm.php ├── TicketModel.php ├── User.php └── index.html ├── Plugin └── index.html ├── PluginDevelop.php ├── Public ├── .htaccess ├── Install │ ├── .htaccess │ ├── App │ │ ├── Install │ │ │ ├── Common.php │ │ │ ├── GET │ │ │ │ ├── Index.php │ │ │ │ └── index.html │ │ │ ├── POST │ │ │ │ └── Index.php │ │ │ └── index.html │ │ └── index.html │ ├── Config │ │ ├── config.php │ │ ├── config_array.php │ │ ├── config_same.php │ │ └── index.html │ ├── InstallDb │ │ ├── index.html │ │ └── install.sql │ ├── Theme │ │ └── Install │ │ │ └── Default │ │ │ ├── Index │ │ │ ├── Index_check.php │ │ │ ├── Index_config.php │ │ │ ├── Index_doinstall.php │ │ │ ├── Index_index.php │ │ │ └── Index_option.php │ │ │ ├── index.html │ │ │ └── layout.php │ ├── Write │ │ └── index.php │ ├── index.php │ └── version ├── Plugin │ └── index.html ├── Theme │ ├── API │ │ ├── 73f76bfa519938841c752d44b10e81a7 │ │ ├── Default │ │ │ └── index.html │ │ └── index.html │ ├── Form │ │ ├── Default │ │ │ ├── 404.php │ │ │ ├── Category │ │ │ │ ├── Category_index.php │ │ │ │ ├── Category_layout.php │ │ │ │ ├── Category_ticket.php │ │ │ │ ├── Ticket_fqa.php │ │ │ │ └── create_js.js │ │ │ ├── Default.png │ │ │ ├── Fqa │ │ │ │ ├── Fqa_list.php │ │ │ │ ├── Fqa_search.php │ │ │ │ └── Fqa_view.php │ │ │ ├── Index │ │ │ │ ├── Index_fqa.php │ │ │ │ ├── Index_index.php │ │ │ │ └── Index_ticket.php │ │ │ ├── Login │ │ │ │ ├── Login_activate.php │ │ │ │ ├── Login_findpw.php │ │ │ │ ├── Login_index.php │ │ │ │ ├── Login_layout.php │ │ │ │ ├── Login_phone.php │ │ │ │ ├── Login_resetpw.php │ │ │ │ ├── Login_signup.php │ │ │ │ ├── Login_weixin.php │ │ │ │ ├── Login_weixinAgree.php │ │ │ │ └── Login_weixinScanLogin.php │ │ │ ├── Member │ │ │ │ ├── Member_index.php │ │ │ │ └── Member_ticket.php │ │ │ ├── Topbar.php │ │ │ ├── View │ │ │ │ ├── View_chat.php │ │ │ │ ├── View_printer.php │ │ │ │ └── View_ticket.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── index.json │ │ │ ├── indexField.php │ │ │ ├── info.ini │ │ │ ├── jump.php │ │ │ └── layout.php │ │ └── index.html │ ├── Ticket │ │ ├── Common │ │ │ ├── Ticket_chat_list.php │ │ │ ├── Ticket_score.php │ │ │ ├── Ticket_vew_chat_tips.php │ │ │ └── Ticket_view_package.php │ │ └── Default │ │ │ ├── Application │ │ │ ├── Application_local.php │ │ │ └── Application_shop.php │ │ │ ├── Attachment │ │ │ └── Attachment_index.php │ │ │ ├── Bulletin │ │ │ ├── Bulletin_listing.php │ │ │ └── Bulletin_view.php │ │ │ ├── Category │ │ │ ├── Category_action.php │ │ │ └── Category_index.php │ │ │ ├── Content │ │ │ ├── Content_action_footer.php │ │ │ ├── Content_action_form.php │ │ │ ├── Content_action_header.php │ │ │ ├── Content_action_hidden.php │ │ │ ├── Content_index_footer.php │ │ │ ├── Content_index_header.php │ │ │ ├── Content_index_list.php │ │ │ ├── Content_index_operate.php │ │ │ ├── Content_index_tool.php │ │ │ ├── Content_value_theme.php │ │ │ └── index.html │ │ │ ├── Content_action.php │ │ │ ├── Content_index.php │ │ │ ├── Field │ │ │ ├── Field_action.php │ │ │ ├── Field_index.php │ │ │ └── Field_index_operate.php │ │ │ ├── Fqa │ │ │ ├── Fqa_action.php │ │ │ ├── Fqa_doc.php │ │ │ ├── Fqa_index.php │ │ │ ├── Fqa_index_operate.php │ │ │ ├── Fqa_index_tool.php │ │ │ └── fqa_doc_path.php │ │ │ ├── HelpDocument │ │ │ └── HelpDocument_ticket_model_table.php │ │ │ ├── Index │ │ │ ├── Index_abar.php │ │ │ ├── Index_driver.php │ │ │ └── Index_index.php │ │ │ ├── Log │ │ │ ├── Log_index.php │ │ │ └── Log_view.php │ │ │ ├── Login │ │ │ └── Login_index.php │ │ │ ├── Mail_template │ │ │ └── Mail_template_action.php │ │ │ ├── Member │ │ │ ├── Member_action.php │ │ │ ├── Member_index_tool.php │ │ │ └── Member_issue.php │ │ │ ├── Menu │ │ │ ├── Menu_action.php │ │ │ └── Menu_index.php │ │ │ ├── Model │ │ │ ├── Model_action.php │ │ │ ├── Model_export.php │ │ │ ├── Model_import.php │ │ │ ├── Model_index.php │ │ │ └── Model_index_operate.php │ │ │ ├── Node │ │ │ ├── Node_action.php │ │ │ └── Node_index.php │ │ │ ├── Send │ │ │ ├── Send_index.php │ │ │ ├── Send_index_operate.php │ │ │ └── Send_index_tool.php │ │ │ ├── Setting │ │ │ ├── Setting_action.php │ │ │ ├── Setting_upgrade.php │ │ │ ├── Setting_upgrade_confirm.php │ │ │ ├── Setting_upgrade_info.php │ │ │ └── action │ │ │ │ ├── base.php │ │ │ │ ├── cs.php │ │ │ │ ├── cs_text.php │ │ │ │ ├── dingtalk.php │ │ │ │ ├── doc_system.php │ │ │ │ ├── email.php │ │ │ │ ├── member.php │ │ │ │ ├── notice.php │ │ │ │ ├── site.php │ │ │ │ ├── sms.php │ │ │ │ ├── ticket.php │ │ │ │ ├── weixin.php │ │ │ │ └── wxapp.php │ │ │ ├── Theme │ │ │ ├── Theme_index.php │ │ │ ├── Theme_setting.php │ │ │ └── Theme_shop.php │ │ │ ├── Ticket │ │ │ ├── Ticket_chat_list.php │ │ │ ├── Ticket_complain.php │ │ │ ├── Ticket_complain_search_form.php │ │ │ ├── Ticket_complain_table.php │ │ │ ├── Ticket_getMyTicketNotice.php │ │ │ ├── Ticket_handle.php │ │ │ ├── Ticket_index.php │ │ │ ├── Ticket_index_operate.php │ │ │ ├── Ticket_index_search_form.php │ │ │ └── Ticket_index_table.php │ │ │ ├── Ticket_form │ │ │ ├── Ticket_form_action.php │ │ │ └── Ticket_form_index.php │ │ │ ├── Ticket_model │ │ │ ├── Ticket_model_action.php │ │ │ ├── Ticket_model_action_driver.php │ │ │ ├── Ticket_model_index.php │ │ │ ├── Ticket_model_index_button.php │ │ │ ├── Ticket_model_index_driver.php │ │ │ ├── Ticket_model_index_operate.php │ │ │ └── Ticket_model_index_tool.php │ │ │ ├── Topbar.php │ │ │ ├── User │ │ │ ├── User_action.php │ │ │ ├── User_index.php │ │ │ ├── User_notice.php │ │ │ └── User_setting.php │ │ │ ├── User_group │ │ │ ├── User_group_action.php │ │ │ ├── User_group_index.php │ │ │ ├── User_group_index_operate.php │ │ │ └── User_group_setting.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── jump.php │ │ │ └── layout.php │ ├── assets │ │ ├── css │ │ │ ├── amazeui.css │ │ │ ├── amazeui.datetimepicker.css │ │ │ ├── amazeui.flat.css │ │ │ ├── amazeui.flat.min.css │ │ │ ├── amazeui.min.css │ │ │ ├── app.css │ │ │ ├── app.min.css │ │ │ ├── cs.min.css │ │ │ ├── driver.css │ │ │ ├── index.css │ │ │ ├── index.min.css │ │ │ ├── jquery.fancybox.min.css │ │ │ ├── jquery.raty.css │ │ │ ├── less │ │ │ │ ├── app.less │ │ │ │ ├── common.less │ │ │ │ ├── index.less │ │ │ │ ├── ticket.less │ │ │ │ └── webuploader.less │ │ │ ├── spectrum.css │ │ │ ├── spectrum.min.css │ │ │ ├── ticket.css │ │ │ ├── ticket.min.css │ │ │ ├── ui-dialog.css │ │ │ ├── ui-dialog.min.css │ │ │ ├── webuploader.css │ │ │ └── webuploader.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── raty.eot │ │ │ ├── raty.svg │ │ │ ├── raty.ttf │ │ │ └── raty.woff │ │ ├── i │ │ │ ├── 162284main_image_feature_693_ys_full.jpg │ │ │ ├── app-icon72x72@2x.png │ │ │ ├── custom.ico │ │ │ ├── favicon.png │ │ │ ├── icon_list.png │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── lattice.png │ │ │ ├── logo.png │ │ │ ├── miniprogram.jpg │ │ │ ├── picture.png │ │ │ ├── service.ico │ │ │ ├── star-half.png │ │ │ ├── star-off.png │ │ │ ├── star-on.png │ │ │ └── startup-640x1096.png │ │ ├── js │ │ │ ├── AMUIwebuploader.js │ │ │ ├── AMUIwebuploader.min.js │ │ │ ├── amazeui.datetimepicker.min.js │ │ │ ├── amazeui.ie8polyfill.js │ │ │ ├── amazeui.ie8polyfill.min.js │ │ │ ├── amazeui.js │ │ │ ├── amazeui.min.js │ │ │ ├── amazeui.widgets.helper.js │ │ │ ├── amazeui.widgets.helper.min.js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── cs.min.js │ │ │ ├── dialog-min.js │ │ │ ├── dialog-plus-min.js │ │ │ ├── driver.js │ │ │ ├── handlebars.min.js │ │ │ ├── jquery.dragsort-0.5.2.min.js │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.raty.js │ │ │ ├── pt-base.js │ │ │ ├── pt-base.min.js │ │ │ ├── qrcode.min.js │ │ │ ├── regions │ │ │ │ ├── areas.json │ │ │ │ ├── cities.json │ │ │ │ ├── provinces.json │ │ │ │ └── streets.json │ │ │ ├── spectrum.js │ │ │ ├── spectrum.min.js │ │ │ ├── ticket.js │ │ │ ├── ticket.min.js │ │ │ ├── webuploader.js │ │ │ └── webuploader.min.js │ │ └── ueditor │ │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ │ ├── index.html │ │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-cn.min.js │ │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ │ ├── ueditor.all.js │ │ │ ├── ueditor.all.min.js │ │ │ ├── ueditor.config.js │ │ │ ├── ueditor.config.min.js │ │ │ ├── ueditor.parse.js │ │ │ ├── ueditor.parse.min.js │ │ │ ├── ueditor_ticket.config.js │ │ │ └── ueditor_ticket.config.min.js │ └── index.html ├── favicon.ico └── index.php ├── README.md ├── Slice ├── API │ └── Status.php ├── Common │ ├── ApplicationGlobalEvent.php │ ├── ApplicationPlugin.php │ ├── Option.php │ ├── TicketStatus.php │ └── UpdateRoute.php ├── Form │ ├── CrossDomain.php │ ├── Login.php │ ├── Menu.php │ └── ThemeSetting.php ├── Ticket │ ├── AdminLimit.php │ ├── ApplicationInit.php │ ├── Auth.php │ ├── HandleForm │ │ ├── HandleBulletin.php │ │ ├── HandleMail_template.php │ │ ├── HandleMember.php │ │ ├── HandleModelTicket_form.php │ │ ├── HandleNode.php │ │ ├── HandlePhrase.php │ │ ├── HandleRoute.php │ │ ├── HandleSetting.php │ │ ├── HandleTicketChatTips.php │ │ ├── HandleTicket_model.php │ │ ├── HandleUser.php │ │ └── introduce.php │ ├── Login.php │ ├── Menu.php │ └── UpdateField │ │ ├── UpdateMemberOrganizeField.php │ │ ├── UpdateNodeParentField.php │ │ └── UpdateUserGroupField.php ├── index.html └── registerSlice.php ├── Upgrade ├── action.ini ├── index.html └── sql │ ├── 1.3.18.sql │ ├── 1.3.19.sql │ ├── 1.3.21.sql │ ├── 1.3.23.sql │ ├── 1.3.24.sql │ ├── 1.3.25.sql │ ├── 1.3.26.sql │ ├── 1.3.28.sql │ └── index.html ├── bs-config.js ├── check-proxy.js ├── composer.json ├── compress-css.js ├── cron.sh ├── crontab.json ├── index.html ├── minify.js ├── nodemon.json ├── package.json ├── plugin.json ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── duncan3dc │ └── sessions │ │ ├── .coveralls.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Cookie.php │ │ ├── Session.php │ │ ├── SessionInstance.php │ │ ├── SessionInterface.php │ │ ├── SessionNamespace.php │ │ └── SessionTrait.php ├── godruoyi │ └── php-snowflake │ │ ├── .editorconfig │ │ ├── .styleci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README-zh_CN.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── LaravelSequenceResolver.php │ │ ├── RandomSequenceResolver.php │ │ ├── RedisSequenceResolver.php │ │ ├── SequenceResolver.php │ │ ├── Snowflake.php │ │ ├── Sonyflake.php │ │ └── SwooleSequenceResolver.php ├── kosinix │ └── grafika │ │ ├── composer.json │ │ ├── fonts │ │ └── LiberationSans-Regular.ttf │ │ ├── license.txt │ │ └── src │ │ ├── Grafika │ │ ├── Color.php │ │ ├── DrawingObject │ │ │ ├── CubicBezier.php │ │ │ ├── Ellipse.php │ │ │ ├── Line.php │ │ │ ├── Polygon.php │ │ │ ├── QuadraticBezier.php │ │ │ └── Rectangle.php │ │ ├── DrawingObjectInterface.php │ │ ├── EditorInterface.php │ │ ├── FilterInterface.php │ │ ├── Gd │ │ │ ├── DrawingObject │ │ │ │ ├── CubicBezier.php │ │ │ │ ├── Ellipse.php │ │ │ │ ├── Line.php │ │ │ │ ├── Polygon.php │ │ │ │ ├── QuadraticBezier.php │ │ │ │ └── Rectangle.php │ │ │ ├── Editor.php │ │ │ ├── Filter │ │ │ │ ├── Blur.php │ │ │ │ ├── Brightness.php │ │ │ │ ├── Colorize.php │ │ │ │ ├── Contrast.php │ │ │ │ ├── Dither.php │ │ │ │ ├── Gamma.php │ │ │ │ ├── Grayscale.php │ │ │ │ ├── Invert.php │ │ │ │ ├── Pixelate.php │ │ │ │ ├── Sharpen.php │ │ │ │ └── Sobel.php │ │ │ ├── Helper │ │ │ │ ├── GifByteStream.php │ │ │ │ └── GifHelper.php │ │ │ ├── Image.php │ │ │ └── ImageHash │ │ │ │ ├── AverageHash.php │ │ │ │ └── DifferenceHash.php │ │ ├── Grafika.php │ │ ├── ImageInterface.php │ │ ├── ImageType.php │ │ ├── Imagick │ │ │ ├── DrawingObject │ │ │ │ ├── CubicBezier.php │ │ │ │ ├── Ellipse.php │ │ │ │ ├── Line.php │ │ │ │ ├── Polygon.php │ │ │ │ ├── QuadraticBezier.php │ │ │ │ └── Rectangle.php │ │ │ ├── Editor.php │ │ │ ├── Filter │ │ │ │ ├── Blur.php │ │ │ │ ├── Brightness.php │ │ │ │ ├── Colorize.php │ │ │ │ ├── Contrast.php │ │ │ │ ├── Dither.php │ │ │ │ ├── Gamma.php │ │ │ │ ├── Grayscale.php │ │ │ │ ├── Invert.php │ │ │ │ ├── Pixelate.php │ │ │ │ ├── Sharpen.php │ │ │ │ └── Sobel.php │ │ │ ├── Image.php │ │ │ └── ImageHash │ │ │ │ ├── AverageHash.php │ │ │ │ └── DifferenceHash.php │ │ └── Position.php │ │ └── autoloader.php ├── symfony │ ├── polyfill-iconv │ │ ├── Iconv.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── charset │ │ │ │ ├── from.big5.php │ │ │ │ ├── from.cp037.php │ │ │ │ ├── from.cp1006.php │ │ │ │ ├── from.cp1026.php │ │ │ │ ├── from.cp424.php │ │ │ │ ├── from.cp437.php │ │ │ │ ├── from.cp500.php │ │ │ │ ├── from.cp737.php │ │ │ │ ├── from.cp775.php │ │ │ │ ├── from.cp850.php │ │ │ │ ├── from.cp852.php │ │ │ │ ├── from.cp855.php │ │ │ │ ├── from.cp856.php │ │ │ │ ├── from.cp857.php │ │ │ │ ├── from.cp860.php │ │ │ │ ├── from.cp861.php │ │ │ │ ├── from.cp862.php │ │ │ │ ├── from.cp863.php │ │ │ │ ├── from.cp864.php │ │ │ │ ├── from.cp865.php │ │ │ │ ├── from.cp866.php │ │ │ │ ├── from.cp869.php │ │ │ │ ├── from.cp874.php │ │ │ │ ├── from.cp875.php │ │ │ │ ├── from.cp932.php │ │ │ │ ├── from.cp936.php │ │ │ │ ├── from.cp949.php │ │ │ │ ├── from.cp950.php │ │ │ │ ├── from.iso-8859-1.php │ │ │ │ ├── from.iso-8859-10.php │ │ │ │ ├── from.iso-8859-11.php │ │ │ │ ├── from.iso-8859-13.php │ │ │ │ ├── from.iso-8859-14.php │ │ │ │ ├── from.iso-8859-15.php │ │ │ │ ├── from.iso-8859-16.php │ │ │ │ ├── from.iso-8859-2.php │ │ │ │ ├── from.iso-8859-3.php │ │ │ │ ├── from.iso-8859-4.php │ │ │ │ ├── from.iso-8859-5.php │ │ │ │ ├── from.iso-8859-6.php │ │ │ │ ├── from.iso-8859-7.php │ │ │ │ ├── from.iso-8859-8.php │ │ │ │ ├── from.iso-8859-9.php │ │ │ │ ├── from.koi8-r.php │ │ │ │ ├── from.koi8-u.php │ │ │ │ ├── from.us-ascii.php │ │ │ │ ├── from.windows-1250.php │ │ │ │ ├── from.windows-1251.php │ │ │ │ ├── from.windows-1252.php │ │ │ │ ├── from.windows-1253.php │ │ │ │ ├── from.windows-1254.php │ │ │ │ ├── from.windows-1255.php │ │ │ │ ├── from.windows-1256.php │ │ │ │ ├── from.windows-1257.php │ │ │ │ ├── from.windows-1258.php │ │ │ │ └── translit.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── mb_convert_variables.php8 │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ └── composer.json │ └── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json └── voku │ ├── anti-xss │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── voku │ │ └── helper │ │ ├── AntiXSS.php │ │ └── data │ │ └── entities_fallback.php │ ├── portable-ascii │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── src │ │ └── voku │ │ └── helper │ │ ├── ASCII.php │ │ └── data │ │ ├── ascii_by_languages.php │ │ ├── ascii_extras_by_languages.php │ │ ├── ascii_language_max_key.php │ │ ├── ascii_ord.php │ │ ├── x000.php │ │ ├── x001.php │ │ ├── x002.php │ │ ├── x003.php │ │ ├── x004.php │ │ ├── x005.php │ │ ├── x006.php │ │ ├── x007.php │ │ ├── x009.php │ │ ├── x00a.php │ │ ├── x00b.php │ │ ├── x00c.php │ │ ├── x00d.php │ │ ├── x00e.php │ │ ├── x00f.php │ │ ├── x010.php │ │ ├── x011.php │ │ ├── x012.php │ │ ├── x013.php │ │ ├── x014.php │ │ ├── x015.php │ │ ├── x016.php │ │ ├── x017.php │ │ ├── x018.php │ │ ├── x01d.php │ │ ├── x01e.php │ │ ├── x01f.php │ │ ├── x020.php │ │ ├── x021.php │ │ ├── x022.php │ │ ├── x023.php │ │ ├── x024.php │ │ ├── x025.php │ │ ├── x026.php │ │ ├── x027.php │ │ ├── x028.php │ │ ├── x029.php │ │ ├── x02a.php │ │ ├── x02c.php │ │ ├── x02e.php │ │ ├── x02f.php │ │ ├── x030.php │ │ ├── x031.php │ │ ├── x032.php │ │ ├── x033.php │ │ ├── x04d.php │ │ ├── x04e.php │ │ ├── x04f.php │ │ ├── x050.php │ │ ├── x051.php │ │ ├── x052.php │ │ ├── x053.php │ │ ├── x054.php │ │ ├── x055.php │ │ ├── x056.php │ │ ├── x057.php │ │ ├── x058.php │ │ ├── x059.php │ │ ├── x05a.php │ │ ├── x05b.php │ │ ├── x05c.php │ │ ├── x05d.php │ │ ├── x05e.php │ │ ├── x05f.php │ │ ├── x060.php │ │ ├── x061.php │ │ ├── x062.php │ │ ├── x063.php │ │ ├── x064.php │ │ ├── x065.php │ │ ├── x066.php │ │ ├── x067.php │ │ ├── x068.php │ │ ├── x069.php │ │ ├── x06a.php │ │ ├── x06b.php │ │ ├── x06c.php │ │ ├── x06d.php │ │ ├── x06e.php │ │ ├── x06f.php │ │ ├── x070.php │ │ ├── x071.php │ │ ├── x072.php │ │ ├── x073.php │ │ ├── x074.php │ │ ├── x075.php │ │ ├── x076.php │ │ ├── x077.php │ │ ├── x078.php │ │ ├── x079.php │ │ ├── x07a.php │ │ ├── x07b.php │ │ ├── x07c.php │ │ ├── x07d.php │ │ ├── x07e.php │ │ ├── x07f.php │ │ ├── x080.php │ │ ├── x081.php │ │ ├── x082.php │ │ ├── x083.php │ │ ├── x084.php │ │ ├── x085.php │ │ ├── x086.php │ │ ├── x087.php │ │ ├── x088.php │ │ ├── x089.php │ │ ├── x08a.php │ │ ├── x08b.php │ │ ├── x08c.php │ │ ├── x08d.php │ │ ├── x08e.php │ │ ├── x08f.php │ │ ├── x090.php │ │ ├── x091.php │ │ ├── x092.php │ │ ├── x093.php │ │ ├── x094.php │ │ ├── x095.php │ │ ├── x096.php │ │ ├── x097.php │ │ ├── x098.php │ │ ├── x099.php │ │ ├── x09a.php │ │ ├── x09b.php │ │ ├── x09c.php │ │ ├── x09d.php │ │ ├── x09e.php │ │ ├── x09f.php │ │ ├── x0a0.php │ │ ├── x0a1.php │ │ ├── x0a2.php │ │ ├── x0a3.php │ │ ├── x0a4.php │ │ ├── x0ac.php │ │ ├── x0ad.php │ │ ├── x0ae.php │ │ ├── x0af.php │ │ ├── x0b0.php │ │ ├── x0b1.php │ │ ├── x0b2.php │ │ ├── x0b3.php │ │ ├── x0b4.php │ │ ├── x0b5.php │ │ ├── x0b6.php │ │ ├── x0b7.php │ │ ├── x0b8.php │ │ ├── x0b9.php │ │ ├── x0ba.php │ │ ├── x0bb.php │ │ ├── x0bc.php │ │ ├── x0bd.php │ │ ├── x0be.php │ │ ├── x0bf.php │ │ ├── x0c0.php │ │ ├── x0c1.php │ │ ├── x0c2.php │ │ ├── x0c3.php │ │ ├── x0c4.php │ │ ├── x0c5.php │ │ ├── x0c6.php │ │ ├── x0c7.php │ │ ├── x0c8.php │ │ ├── x0c9.php │ │ ├── x0ca.php │ │ ├── x0cb.php │ │ ├── x0cc.php │ │ ├── x0cd.php │ │ ├── x0ce.php │ │ ├── x0cf.php │ │ ├── x0d0.php │ │ ├── x0d1.php │ │ ├── x0d2.php │ │ ├── x0d3.php │ │ ├── x0d4.php │ │ ├── x0d5.php │ │ ├── x0d6.php │ │ ├── x0d7.php │ │ ├── x0f9.php │ │ ├── x0fa.php │ │ ├── x0fb.php │ │ ├── x0fc.php │ │ ├── x0fd.php │ │ ├── x0fe.php │ │ ├── x0ff.php │ │ ├── x1d4.php │ │ ├── x1d5.php │ │ ├── x1d6.php │ │ ├── x1d7.php │ │ └── x1f1.php │ └── portable-utf8 │ ├── CHANGELOG.md │ ├── LICENSE-APACHE │ ├── LICENSE-GPL │ ├── README.md │ ├── SECURITY.md │ ├── SUMMARY.md │ ├── bootstrap.php │ ├── composer.json │ └── src │ └── voku │ └── helper │ ├── Bootup.php │ ├── UTF8.php │ └── data │ ├── caseFolding_full.php │ ├── chr.php │ ├── emoji.php │ ├── encodings.php │ ├── ord.php │ ├── transliterator_list.php │ ├── utf8_fix.php │ └── win1252_to_utf8.php ├── wxapp ├── .gitignore ├── miniprogram_npm │ └── @vant │ │ └── weapp │ │ ├── action-sheet │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── area │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── button │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── calendar │ │ ├── calendar.wxml │ │ ├── components │ │ │ ├── header │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── month │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ ├── index.wxs │ │ │ │ └── index.wxss │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── utils.js │ │ └── utils.wxs │ │ ├── card │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── cell-group │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── cell │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── checkbox-group │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── checkbox │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── circle │ │ ├── canvas.js │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── col │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── collapse-item │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── collapse │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── common │ │ ├── color.js │ │ ├── component.js │ │ ├── index.wxss │ │ ├── style │ │ │ ├── clearfix.wxss │ │ │ ├── ellipsis.wxss │ │ │ ├── hairline.wxss │ │ │ ├── mixins │ │ │ │ ├── clearfix.wxss │ │ │ │ ├── ellipsis.wxss │ │ │ │ └── hairline.wxss │ │ │ ├── theme.wxss │ │ │ └── var.wxss │ │ ├── utils.js │ │ └── version.js │ │ ├── count-down │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── utils.js │ │ ├── datetime-picker │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── definitions │ │ ├── index.js │ │ └── weapp.js │ │ ├── dialog │ │ ├── dialog.js │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── divider │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── dropdown-item │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── dropdown-menu │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── empty │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── field │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ └── props.js │ │ ├── goods-action-button │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── goods-action-icon │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── goods-action │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── grid-item │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── grid │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── icon │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── image │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── index-anchor │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── index-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── info │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── loading │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── mixins │ │ ├── basic.js │ │ ├── button.js │ │ ├── link.js │ │ ├── open-type.js │ │ ├── page-scroll.js │ │ ├── touch.js │ │ └── transition.js │ │ ├── nav-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── notice-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── notify │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── notify.js │ │ ├── overlay │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── panel │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── picker-column │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── picker │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── shared.js │ │ └── toolbar.wxml │ │ ├── popup │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── progress │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── radio-group │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── radio │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── rate │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── row │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── search │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── share-sheet │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── options.js │ │ ├── options.json │ │ ├── options.wxml │ │ ├── options.wxs │ │ └── options.wxss │ │ ├── sidebar-item │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── sidebar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── skeleton │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── slider │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── stepper │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── steps │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── sticky │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── submit-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── swipe-cell │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── switch │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tab │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabbar-item │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabbar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabs │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── tag │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── toast │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── toast.js │ │ ├── transition │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tree-select │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── uploader │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── shared.js │ │ └── utils.js │ │ └── wxs │ │ ├── add-unit.wxs │ │ ├── array.wxs │ │ ├── bem.wxs │ │ ├── memoize.wxs │ │ ├── object.wxs │ │ └── utils.wxs └── sitemap.json └── wxapp_sourcecode ├── app.js ├── app.json ├── app.wxss ├── package.json ├── pages ├── common │ ├── footer.js │ ├── footer.json │ ├── footer.wxml │ ├── footer.wxss │ ├── form.js │ ├── form.json │ ├── form.wxml │ ├── form.wxss │ └── header.wxml ├── form │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── member │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── ticket │ ├── detail.js │ ├── detail.json │ ├── detail.wxml │ ├── detail.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── project.config.json └── utils └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject 2 | /upload 3 | /Temp 4 | /log 5 | /Install/Temp 6 | .DS_Store 7 | .idea 8 | /Public/upload 9 | /Public/Install/index.html 10 | /Public/Install/install.txt 11 | /node_modules 12 | -------------------------------------------------------------------------------- /App/API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/App/API/index.html -------------------------------------------------------------------------------- /App/Ticket/DELETE/Send.php: -------------------------------------------------------------------------------- 1 | checkToken(); 17 | $this->db()->query("TRUNCATE {$this->prefix}send"); 18 | $this->success('发送列表已清空'); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /App/Ticket/DELETE/User.php: -------------------------------------------------------------------------------- 1 | error('天呐,您竟然想删除超级管理员账户!'); 15 | } 16 | parent::delete(); 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /App/Ticket/GET/Category.php: -------------------------------------------------------------------------------- 1 | assign('title', $this->model['model_title']); 9 | \Model\Category::$filterStatus = false; 10 | $this->assign('list', \Model\Category::recursion()); 11 | $this->layout(); 12 | } 13 | 14 | public function action($display = false) { 15 | parent::action($display); 16 | 17 | $this->assign('select', \Model\Category::recursion(true)); 18 | $this->layout(); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /App/Ticket/GET/Node.php: -------------------------------------------------------------------------------- 1 | assign('title', $this->model['model_title']); 16 | $this->assign('node', \Model\Node::nodeList()); 17 | $this->layout(); 18 | } 19 | 20 | 21 | } -------------------------------------------------------------------------------- /App/Ticket/GET/Phrase.php: -------------------------------------------------------------------------------- 1 | condition .= ' AND phrase_user_id = :user_id'; 17 | $this->param['user_id'] = $this->session()->get('ticket')['user_id']; 18 | parent::index($display); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /App/Ticket/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/App/Ticket/index.html -------------------------------------------------------------------------------- /App/index.html: -------------------------------------------------------------------------------- 1 | 11, 13, 16, 17, 26 | 03,09 2 | 01, 13, 16, 24, 35 | 03,08 3 | 02, 05, 12, 27, 28 | 09,12 4 | 05, 06, 10, 26, 32 | 07,09 5 | 04, 06, 08, 16, 23 | 04,06 -------------------------------------------------------------------------------- /Config/Config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Config/Config/index.html -------------------------------------------------------------------------------- /Config/Route.php: -------------------------------------------------------------------------------- 1 | " > 2 | 3 | $value): ?> 4 | 5 | 6 | -------------------------------------------------------------------------------- /Expand/Form/theme/color.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /Expand/Form/theme/date.php: -------------------------------------------------------------------------------- 1 | readonly /> -------------------------------------------------------------------------------- /Expand/Form/theme/editor.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Expand/Form/theme/file.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Form/theme/icon.php: -------------------------------------------------------------------------------- 1 | 获取图标 style="width: 80%" /> -------------------------------------------------------------------------------- /Expand/Form/theme/img.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Form/theme/multiple.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /Expand/Form/theme/select.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/text.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /Expand/Form/theme/textarea.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/thumb.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Form/theme/ticket.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/video.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/SMS/SMSInterface.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 6 | -------------------------------------------------------------------------------- /Public/Install/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 6 | -------------------------------------------------------------------------------- /Public/Install/App/Install/GET/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/App/Install/GET/index.html -------------------------------------------------------------------------------- /Public/Install/App/Install/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/App/Install/index.html -------------------------------------------------------------------------------- /Public/Install/App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/App/index.html -------------------------------------------------------------------------------- /Public/Install/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Install', //项目分组设定 4 | 'DEFAULT_GROUP' => 'Install', //默认分组 5 | 'SESSION_ID' => 'PESTKSESSION', 6 | 'LOG_PATH' => '/log', 7 | 'DB_PREFIX' => 'pes_', 8 | 'USER_KEY' => 'PTINSTALL' 9 | ); -------------------------------------------------------------------------------- /Public/Install/Config/config_array.php: -------------------------------------------------------------------------------- 1 | '/Core/Theme/error.php', 4 | 'APP_GROUP_LIST' => 'Form,Ticket,API', 5 | 'DEFAULT_GROUP' => 'Form', 6 | 'FILE_CACHE_PATH' => '/Temp', 7 | 'FILE_CACHE_TIME' => '1800', 8 | 'LOG_PATH' => '/log', 9 | 'LOG_DELETE' => '7', 10 | 'UPLOAD_PATH' => '/upload', 11 | 'SESSION_ID' => 'PESTKSESSION', 12 | ); -------------------------------------------------------------------------------- /Public/Install/Config/config_same.php: -------------------------------------------------------------------------------- 1 | 'Install', //项目分组设定 5 | 'DEFAULT_GROUP' => 'Install', //默认分组 6 | 'SESSION_ID' => 'PESTKSESSION', 7 | 'LOG_PATH' => '/log', 8 | ); 9 | -------------------------------------------------------------------------------- /Public/Install/Config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/Config/index.html -------------------------------------------------------------------------------- /Public/Install/InstallDb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/InstallDb/index.html -------------------------------------------------------------------------------- /Public/Install/Theme/Install/Default/Index/Index_index.php: -------------------------------------------------------------------------------- 1 |
2 |

正在拉取用户协议...

3 |
-------------------------------------------------------------------------------- /Public/Install/Theme/Install/Default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Install/Theme/Install/Default/index.html -------------------------------------------------------------------------------- /Public/Install/Write/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |
7 |

404. Not Found

8 |

9 |
10 |
11 | 12 |
13 |
14 | 15 | -------------------------------------------------------------------------------- /Public/Theme/Form/Default/Category/Ticket_fqa.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Public/Theme/Form/Default/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/Form/Default/Default.png -------------------------------------------------------------------------------- /Public/Theme/Form/Default/Login/Login_activate.php: -------------------------------------------------------------------------------- 1 |
2 |

您的账号还没完成激活,请登录「get('toBeActivated') ?>」邮箱进行激活。

3 |

4 | 若长时间没有收到邮件,请点击重新发送。 5 |

6 |
7 | 8 |
9 | 10 |
11 | 返回账号密码登录 12 |
-------------------------------------------------------------------------------- /Public/Theme/Form/Default/Login/Login_weixinAgree.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Public/Theme/Form/Default/View/View_chat.php: -------------------------------------------------------------------------------- 1 | [ 8 | 'search_placeholder' => [ 9 | 'field_name' => "search_placeholder", 10 | 'field_display_name' => "输入框提示文字", 11 | 'field_type' => "text", 12 | 'field_option' => [], 13 | 'field_explain' => "", 14 | 'field_default' => "", 15 | 'field_required' => 0, 16 | ], 17 | ], 18 | ]; -------------------------------------------------------------------------------- /Public/Theme/Form/Default/info.ini: -------------------------------------------------------------------------------- 1 | [Theme] 2 | ;模板作者 3 | author = PESCMS 4 | 5 | ;模板官网 6 | website = https://www.pescms.com 7 | 8 | ;模板预览图 9 | img = Default.png 10 | 11 | ;模板版本 12 | version = 1.0 13 | 14 | ;模板名称 15 | name = 默认模板 16 | 17 | ;模板英文名称 18 | enname = Default 19 | 20 | ;模板设置中禁用的预设选项。如果您开发的主题不支持这些功能,可以在这里填写要禁用的字段 21 | disableThemeSetting = 22 | 23 | ;模板描述 24 | content = PESCMS Ticket默认主题模板。 -------------------------------------------------------------------------------- /Public/Theme/Form/Default/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 | -------------------------------------------------------------------------------- /Public/Theme/Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/Form/index.html -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Content/Content_action_hidden.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | token() ?> -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Content/Content_index_footer.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/Ticket/Default/Content/index.html -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Content_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Content_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Field/Field_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Fqa/Fqa_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Fqa/fqa_doc_path.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Member/Member_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Model/Model_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Send/Send_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/Ticket/Ticket_chat_list.php: -------------------------------------------------------------------------------- 1 | 2 |
  • 暂无新消息
  • 3 | 4 | 5 | $value): ?> 6 |
  • getFieldOptionToMatch(255, $value['csnotice_type'])) ?>
  • 7 | 8 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/User/User_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/User_group/User_group_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Public/Theme/Ticket/Default/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/raty.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/raty.eot -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/raty.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/raty.ttf -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/raty.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/fonts/raty.woff -------------------------------------------------------------------------------- /Public/Theme/assets/i/162284main_image_feature_693_ys_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/162284main_image_feature_693_ys_full.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/i/app-icon72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/app-icon72x72@2x.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/custom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/custom.ico -------------------------------------------------------------------------------- /Public/Theme/assets/i/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/favicon.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/icon_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/icon_list.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/lattice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/lattice.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/logo.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/miniprogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/miniprogram.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/i/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/picture.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/service.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/service.ico -------------------------------------------------------------------------------- /Public/Theme/assets/i/star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/star-half.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/star-off.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/star-on.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/startup-640x1096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/i/startup-640x1096.png -------------------------------------------------------------------------------- /Public/Theme/assets/js/ticket.min.js: -------------------------------------------------------------------------------- 1 | $(function(){$(document).on("click",".option-plus-square",function(){var n=$(this).parents(".pes-option-line").clone();$(this).parents(".pes-option-line").after(n),$(n.find("input")).each(function(){$(this).val("")})}),$(document).on("click",".option-minus-square",function(){$(this).parents(".pes-option-line").remove()}),$("#mobile-new-tips-button").on("click",function(){$("#ticket-topbar-collapse").removeClass("am-in")}),$("#mobile-menu-button").on("click",function(){$("#mobile-new-tips").removeClass("am-in")})}); -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/index.html -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Public/Theme/assets/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:djump('/'); 20 | } 21 | 22 | } 23 | 24 | public function after() { 25 | } 26 | 27 | 28 | } -------------------------------------------------------------------------------- /Slice/Common/ApplicationGlobalEvent.php: -------------------------------------------------------------------------------- 1 | event('beforeEvent', NULL); 14 | } 15 | 16 | public function after() { 17 | (new \Core\Plugin\Plugin())->event('afterEvent', NULL); 18 | } 19 | 20 | } -------------------------------------------------------------------------------- /Slice/Form/Menu.php: -------------------------------------------------------------------------------- 1 | db('form_menu')->where('form_menu_status = 1')->order('form_menu_listsort ASC, form_menu_id DESC ')->select(); 18 | $this->assign('menu', $list); 19 | 20 | } 21 | 22 | public function after() { 23 | } 24 | 25 | 26 | } -------------------------------------------------------------------------------- /Slice/Form/ThemeSetting.php: -------------------------------------------------------------------------------- 1 | assign('indexSetting', $indexSetting); 18 | } 19 | 20 | public function after() { 21 | // TODO: Implement after() method. 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /Slice/Ticket/AdminLimit.php: -------------------------------------------------------------------------------- 1 | session()->get('ticket')['user_id'] != 1){ 21 | $this->error('您没有权限进行本次操作.'); 22 | } 23 | } 24 | 25 | public function after() { 26 | 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Ticket/Auth.php: -------------------------------------------------------------------------------- 1 | error($auth); 23 | } 24 | } 25 | 26 | public function after() { 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Ticket/HandleForm/HandleBulletin.php: -------------------------------------------------------------------------------- 1 | assign('menu', \Model\Menu::menu($this->session()->get('ticket')['user_group_id'])); 22 | } 23 | 24 | public function after() { 25 | } 26 | 27 | 28 | } -------------------------------------------------------------------------------- /Slice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Slice/index.html -------------------------------------------------------------------------------- /Upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Upgrade/index.html -------------------------------------------------------------------------------- /Upgrade/sql/1.3.25.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `pes_option` (`id`, `option_name`, `name`, `value`, `option_range`) VALUES (NULL, 'anonymous_upload', '是否开启匿名上传', '0', 'upload'); 2 | 3 | INSERT INTO `pes_option` (`id`, `option_name`, `name`, `value`, `option_range`) VALUES (NULL, 'service_login_timeout', '后台通知链接失效时间(小时)', '24', 'login'); 4 | -------------------------------------------------------------------------------- /Upgrade/sql/1.3.26.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `pes_user` ADD `user_cs_panel` INT NOT NULL COMMENT '是否启用新工单处理面板'; 2 | ALTER TABLE `pes_user` ADD `user_open_search` INT NOT NULL COMMENT '是否默认展开工单列表搜索栏'; 3 | -------------------------------------------------------------------------------- /Upgrade/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/Upgrade/sql/index.html -------------------------------------------------------------------------------- /bs-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | proxy: "", // 你的 PHP 开发服务器地址 3 | files: [ 4 | "./**/*.php", // 使用相对路径 5 | "./**/*.js", 6 | "./**/*.css" 7 | ], 8 | notify: false, 9 | open: false, 10 | watchOptions: { 11 | ignored: ['**/node_modules/**', '**/dist/**'] 12 | }, 13 | // https: { //如果您的proxy地址带有https,请取消注释此部分,然后本地证书直接用mkcert生成:localhost 14 | // key: './localhost-key.pem', // 指定密钥路径 15 | // cert: './localhost.pem' // 指定证书路径 16 | // } 17 | }; 18 | -------------------------------------------------------------------------------- /check-proxy.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // 读取bs-config.js文件 5 | const bsConfigPath = path.join(__dirname, 'bs-config.js'); 6 | const config = require(bsConfigPath); 7 | 8 | // 检查proxy是否为空 9 | if (!config.proxy) { 10 | console.log('\x1b[33m%s\x1b[0m', '警告: 要运行前端调试,请在 bs-config.js中设置proxy的PHP服务器地址!'); 11 | process.exit(1); // 退出进程并返回错误代码 12 | } else { 13 | console.log('proxy 地址已配置:', config.proxy); 14 | } -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "duncan3dc/sessions": "^1.4", 4 | "godruoyi/php-snowflake": "^1.1.1", 5 | "kosinix/grafika": "^2.0", 6 | "voku/anti-xss": "^4.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /crontab.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": ["Public/Theme/assets/css/ticket.css", "Public/Theme/assets/css/index.css", "Public/Theme/assets/css/app.css", "Public/Theme/assets/js/app.js"], 3 | "ext": "js css", 4 | "ignore": ["Public/Theme/assets/css/*.min.css"], 5 | "exec": "node compress-css.js && node minify.js -c app" 6 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "clean-css": "^4.2.3", 4 | "uglify-js": "^3.13.10", 5 | "concurrently": "^9.1.1", 6 | "nodemon": "^3.1.9" 7 | }, 8 | "dependencies": { 9 | "browser-sync": "^3.0.3", 10 | "commander": "^8.0.0", 11 | "less": "^4.1.3" 12 | }, 13 | "scripts": { 14 | "start": "node check-proxy.js && concurrently -n \"Nodemon, BrowserSync\" \"nodemon\" \"browser-sync start --config bs-config.js\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | 'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * This source file is subject to the MIT license that is bundled. 9 | */ 10 | 11 | namespace Godruoyi\Snowflake; 12 | 13 | interface SequenceResolver 14 | { 15 | /** 16 | * The snowflake. 17 | * 18 | * @param int|string $currentTime current request ms 19 | * 20 | * @return int 21 | */ 22 | public function sequence(int $currentTime); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/kosinix/grafika/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kosinix/grafika", 3 | "description": "An image manipulation library for PHP.", 4 | "keywords": ["grafika"], 5 | "homepage": "http://kosinix.github.io/grafika", 6 | "type": "library", 7 | "license": [ 8 | "MIT", 9 | "GPL-2.0+" 10 | ], 11 | "authors": [ 12 | { 13 | "name": "Nico Amarilla", 14 | "homepage": "https://www.kosinix.com" 15 | } 16 | ], 17 | "require": { 18 | "php": ">=5.3" 19 | }, 20 | "autoload": { 21 | "psr-4": { 22 | "Grafika\\": "src/Grafika" 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/fonts/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/vendor/kosinix/grafika/fonts/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/DrawingObjectInterface.php: -------------------------------------------------------------------------------- 1 | getCore(), IMG_FILTER_GRAYSCALE); 20 | return $image; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Invert.php: -------------------------------------------------------------------------------- 1 | getCore(), IMG_FILTER_NEGATE); 21 | return $image; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/ImageType.php: -------------------------------------------------------------------------------- 1 | getCore()->modulateImage(100, 0, 100); 20 | return $image; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Invert.php: -------------------------------------------------------------------------------- 1 | getCore()->negateImage(false); 21 | return $image; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/autoloader.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/area/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/components/header/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../../../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | title: { 7 | type: String, 8 | value: '日期选择', 9 | }, 10 | subtitle: String, 11 | showTitle: Boolean, 12 | showSubtitle: Boolean, 13 | }, 14 | data: { 15 | weekdays: ['日', '一', '二', '三', '四', '五', '六'], 16 | }, 17 | methods: {}, 18 | }); 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/components/header/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} 5 | 6 | 7 | 8 | {{ subtitle }} 9 | 10 | 11 | 12 | 13 | {{ item }} 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/components/month/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "header": "./components/header/index", 5 | "month": "./components/month/index", 6 | "van-button": "../button/index", 7 | "van-popup": "../popup/index", 8 | "van-toast": "../toast/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/calendar/utils.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function getMonthEndDay(year, month) { 3 | return 32 - getDate(year, month - 1, 32).getDate(); 4 | } 5 | 6 | function compareMonth(date1, date2) { 7 | date1 = getDate(date1); 8 | date2 = getDate(date2); 9 | 10 | var year1 = date1.getFullYear(); 11 | var year2 = date2.getFullYear(); 12 | var month1 = date1.getMonth(); 13 | var month2 = date2.getMonth(); 14 | 15 | if (year1 === year2) { 16 | return month1 === month2 ? 0 : month1 > month2 ? 1 : -1; 17 | } 18 | 19 | return year1 > year2 ? 1 : -1; 20 | } 21 | 22 | module.exports = { 23 | getMonthEndDay: getMonthEndDay, 24 | compareMonth: compareMonth 25 | }; 26 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tag": "../tag/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/cell-group/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | title: String, 7 | border: { 8 | type: Boolean, 9 | value: true, 10 | }, 11 | }, 12 | }); 13 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/cell-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-cell-group__title{padding:16px 16px 8px;padding:var(--cell-group-title-padding,16px 16px 8px);font-size:14px;font-size:var(--cell-group-title-font-size,14px);line-height:16px;line-height:var(--cell-group-title-line-height,16px);color:#969799;color:var(--cell-group-title-color,#969799)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/checkbox-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/checkbox-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/checkbox/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var utils = require('../wxs/utils.wxs'); 3 | 4 | function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) { 5 | var styles = [['font-size', utils.addUnit(iconSize)]]; 6 | if (checkedColor && value && !disabled && !parentDisabled) { 7 | styles.push(['border-color', checkedColor]); 8 | styles.push(['background-color', checkedColor]); 9 | } 10 | 11 | return styles 12 | .map(function(item) { 13 | return item.join(':'); 14 | }) 15 | .join(';'); 16 | } 17 | 18 | module.exports = { 19 | iconStyle: iconStyle 20 | }; 21 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/circle/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{ text }} 9 | 10 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/circle/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-circle{position:relative;display:inline-block;text-align:center}.van-circle__text{position:absolute;top:50%;left:0;width:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#323233;color:var(--circle-text-color,#323233)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/collapse/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/color.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | exports.GRAY_DARK = exports.GRAY = exports.ORANGE = exports.GREEN = exports.WHITE = exports.BLUE = exports.RED = void 0; 4 | exports.RED = '#ee0a24'; 5 | exports.BLUE = '#1989fa'; 6 | exports.WHITE = '#fff'; 7 | exports.GREEN = '#07c160'; 8 | exports.ORANGE = '#ff976a'; 9 | exports.GRAY = '#323233'; 10 | exports.GRAY_DARK = '#969799'; 11 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss: -------------------------------------------------------------------------------- 1 | .van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/wxapp/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/theme.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/wxapp/miniprogram_npm/@vant/weapp/common/style/theme.wxss -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/common/style/var.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-Ticket/0916fe803c2cb19567c5b84338bd798458d2fa8f/wxapp/miniprogram_npm/@vant/weapp/common/style/var.wxss -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/count-down/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ formattedTime }} 4 | 5 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/count-down/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-count-down{color:#323233;color:var(--count-down-text-color,#323233);font-size:14px;font-size:var(--count-down-font-size,14px);line-height:20px;line-height:var(--count-down-line-height,20px)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/definitions/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/definitions/weapp.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-button": "../button/index", 6 | "van-goods-action": "../goods-action//index", 7 | "van-goods-action-button": "../goods-action-button/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/divider/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/dropdown-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-cell": "../cell/index", 6 | "van-icon": "../icon/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-dropdown-item{position:fixed;right:0;left:0;overflow:hidden}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:#1989fa;color:var(--dropdown-menu-option-active-color,#1989fa)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function displayTitle(item) { 3 | if (item.title) { 4 | return item.title; 5 | } 6 | 7 | var match = item.options.filter(function(option) { 8 | return option.value === item.value; 9 | }); 10 | var displayTitle = match.length ? match[0].text : ''; 11 | return displayTitle; 12 | } 13 | 14 | module.exports = { 15 | displayTitle: displayTitle 16 | }; 17 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/empty/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/empty/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | {{ description }} 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/empty/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-empty{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:32px 0}.van-empty__image{width:160px;height:160px}.van-empty__image:empty{display:none}.van-empty__image__img{width:100%;height:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{margin-top:16px;padding:0 60px;color:#969799;font-size:14px;line-height:20px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/field/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var utils = require('../wxs/utils.wxs'); 3 | 4 | function inputStyle(autosize) { 5 | if (autosize && autosize.constructor === 'Object') { 6 | var style = ''; 7 | if (autosize.minHeight) { 8 | style += 'min-height:' + utils.addUnit(autosize.minHeight) + ';'; 9 | } 10 | if (autosize.maxHeight) { 11 | style += 'max-height:' + utils.addUnit(autosize.maxHeight) + ';'; 12 | } 13 | return style; 14 | } 15 | 16 | return ''; 17 | } 18 | 19 | module.exports = { 20 | inputStyle: inputStyle 21 | }; 22 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action-icon/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action-icon{border:none!important;width:50px!important;width:var(--goods-action-icon-height,50px)!important}.van-goods-action-icon__content{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;height:100%;line-height:1;font-size:10px;font-size:var(--goods-action-icon-font-size,10px);color:#646566;color:var(--goods-action-icon-text-color,#646566)}.van-goods-action-icon__icon{margin-bottom:4px} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/goods-action/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;background-color:#fff;background-color:var(--goods-action-background-color,#fff)}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/grid-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/grid/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/grid/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/icon/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-anchor/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-anchor/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | 11 | {{ index }} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-anchor/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-background-color,#fff)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-bar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 19 | {{ item }} 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/index-bar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{position:fixed;top:50%;right:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-weight:500;padding:0 4px 0 16px;padding:0 var(--padding-base,4px) 0 var(--padding-md,16px);font-size:10px;font-size:var(--index-bar-index-font-size,10px);line-height:14px;line-height:var(--index-bar-index-line-height,14px)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/info/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | dot: Boolean, 7 | info: null, 8 | customStyle: String, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/info/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ dot ? '' : info }} 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/loading/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | color: String, 7 | vertical: Boolean, 8 | type: { 9 | type: String, 10 | value: 'circular', 11 | }, 12 | size: String, 13 | textSize: String, 14 | }, 15 | data: { 16 | array12: Array.from({ length: 12 }), 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/loading/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/mixins/button.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | exports.button = void 0; 4 | exports.button = Behavior({ 5 | externalClasses: ['hover-class'], 6 | properties: { 7 | id: String, 8 | lang: String, 9 | businessId: Number, 10 | sessionFrom: String, 11 | sendMessageTitle: String, 12 | sendMessagePath: String, 13 | sendMessageImg: String, 14 | showMessageCard: Boolean, 15 | appParameter: String, 16 | ariaLabel: String, 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/mixins/link.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | exports.link = void 0; 4 | exports.link = Behavior({ 5 | properties: { 6 | url: String, 7 | linkType: { 8 | type: String, 9 | value: 'navigateTo', 10 | }, 11 | }, 12 | methods: { 13 | jumpLink: function (urlKey) { 14 | if (urlKey === void 0) { 15 | urlKey = 'url'; 16 | } 17 | var url = this.data[urlKey]; 18 | if (url) { 19 | wx[this.data.linkType]({ url: url }); 20 | } 21 | }, 22 | }, 23 | }); 24 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/notify/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 14 | 18 | {{ message }} 19 | 20 | 21 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/overlay/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | show: Boolean, 7 | customStyle: String, 8 | duration: { 9 | type: null, 10 | value: 300, 11 | }, 12 | zIndex: { 13 | type: Number, 14 | value: 1, 15 | }, 16 | }, 17 | methods: { 18 | onClick: function () { 19 | this.$emit('click'); 20 | }, 21 | // for prevent touchmove 22 | noop: function () {}, 23 | }, 24 | }); 25 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/overlay/index.wxml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/overlay/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/panel/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | classes: ['header-class', 'footer-class'], 6 | props: { 7 | desc: String, 8 | title: String, 9 | status: String, 10 | useFooterSlot: Boolean, 11 | }, 12 | }); 13 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/panel/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/panel/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-panel{background:#fff;background:var(--panel-background-color,#fff)}.van-panel__header-value{color:#ee0a24;color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:8px 16px;padding:var(--panel-footer-padding,8px 16px)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/picker-column/index.wxs: -------------------------------------------------------------------------------- 1 | function isObj(x) { 2 | var type = typeof x; 3 | return x !== null && (type === 'object' || type === 'function'); 4 | } 5 | 6 | module.exports = function (option, valueKey) { 7 | return isObj(option) && option[valueKey] != null ? option[valueKey] : option; 8 | } 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/picker-column/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-picker-column{overflow:hidden;text-align:center;color:#000;color:var(--picker-option-text-color,#000);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--picker-option-selected-text-color,#323233)}.van-picker-column__item--disabled{opacity:.3;opacity:var(--picker-option-disabled-opacity,.3)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/picker/shared.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | exports.pickerProps = void 0; 4 | exports.pickerProps = { 5 | title: String, 6 | loading: Boolean, 7 | showToolbar: Boolean, 8 | cancelButtonText: { 9 | type: String, 10 | value: '取消', 11 | }, 12 | confirmButtonText: { 13 | type: String, 14 | value: '确认', 15 | }, 16 | visibleItemCount: { 17 | type: Number, 18 | value: 6, 19 | }, 20 | itemHeight: { 21 | type: Number, 22 | value: 44, 23 | }, 24 | }; 25 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-overlay": "../overlay/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/progress/index.wxs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | text: function(pivotText, percentage) { 3 | return pivotText || percentage + '%'; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/radio-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/radio-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/rate/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-rate{display:-webkit-inline-flex;display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;padding:0 2px;padding:0 var(--rate-horizontal-padding,2px)}.van-rate__icon{display:block;height:1em;font-size:20px;font-size:var(--rate-icon-size,20px)}.van-rate__icon--half{position:absolute;top:0;width:.5em;overflow:hidden;left:2px;left:var(--rate-horizontal-padding,2px)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-field": "../field/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "options": "./options" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/share-sheet/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function isMulti(options) { 3 | if (options == null || options[0] == null) { 4 | return false; 5 | } 6 | 7 | return "Array" === options.constructor && "Array" === options[0].constructor; 8 | } 9 | 10 | module.exports = { 11 | isMulti: isMulti 12 | }; 13 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/share-sheet/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/share-sheet/options.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster']; 3 | 4 | function getIconURL(icon) { 5 | if (PRESET_ICONS.indexOf(icon) !== -1) { 6 | return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png'; 7 | } 8 | 9 | return icon; 10 | } 11 | 12 | module.exports = { 13 | getIconURL: getIconURL, 14 | }; 15 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sidebar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sidebar-item/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | {{ title }} 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sidebar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sidebar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sidebar{width:85px;width:var(--sidebar-width,85px)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/slider/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var utils = require('../wxs/utils.wxs'); 3 | 4 | function barStyle(barHeight, activeColor) { 5 | var styles = [['height', utils.addUnit(barHeight)]]; 6 | 7 | if (activeColor) { 8 | styles.push(['background', activeColor]); 9 | } 10 | 11 | return styles 12 | .map(function (item) { 13 | return item.join(':'); 14 | }) 15 | .join(';'); 16 | } 17 | 18 | module.exports = { 19 | barStyle: barStyle, 20 | }; 21 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sticky/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left:0} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/swipe-cell/index.wxml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/swipe-cell/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-loading": "../loading/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/switch/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tabbar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tabbar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;box-sizing:initial;width:100%;height:50px;height:var(--tabbar-height,50px);background-color:#fff;background-color:var(--tabbar-background-color,#fff)}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)} -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index", 5 | "van-sticky": "../sticky/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tag/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | component_1.VantComponent({ 5 | props: { 6 | size: String, 7 | mark: Boolean, 8 | color: String, 9 | plain: Boolean, 10 | round: Boolean, 11 | textColor: String, 12 | type: { 13 | type: String, 14 | value: 'default', 15 | }, 16 | closeable: Boolean, 17 | }, 18 | methods: { 19 | onClose: function () { 20 | this.$emit('close'); 21 | }, 22 | }, 23 | }); 24 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tag/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 14 | 15 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index", 6 | "van-overlay": "../overlay/index", 7 | "van-transition": "../transition/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/transition/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | var component_1 = require('../common/component'); 4 | var transition_1 = require('../mixins/transition'); 5 | component_1.VantComponent({ 6 | classes: [ 7 | 'enter-class', 8 | 'enter-active-class', 9 | 'enter-to-class', 10 | 'leave-class', 11 | 'leave-active-class', 12 | 'leave-to-class', 13 | ], 14 | mixins: [transition_1.transition(true)], 15 | }); 16 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/transition/index.wxml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-sidebar": "../sidebar/index", 6 | "van-sidebar-item": "../sidebar-item/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/tree-select/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var array = require('../wxs/array.wxs'); 3 | 4 | function isActive (activeList, itemId) { 5 | if (array.isArray(activeList)) { 6 | return activeList.indexOf(itemId) > -1; 7 | } 8 | 9 | return activeList === itemId; 10 | } 11 | 12 | module.exports.isActive = isActive; 13 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/wxs/add-unit.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var REGEXP = getRegExp('^\d+(\.\d+)?$'); 3 | 4 | function addUnit(value) { 5 | if (value == null) { 6 | return undefined; 7 | } 8 | 9 | return REGEXP.test('' + value) ? value + 'px' : value; 10 | } 11 | 12 | module.exports = { 13 | addUnit: addUnit 14 | }; 15 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/wxs/array.wxs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | module.exports.isArray = isArray; 6 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/wxs/object.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var REGEXP = getRegExp('{|}|"', 'g'); 3 | 4 | function keys(obj) { 5 | return JSON.stringify(obj) 6 | .replace(REGEXP, '') 7 | .split(',') 8 | .map(function(item) { 9 | return item.split(':')[0]; 10 | }); 11 | } 12 | 13 | module.exports.keys = keys; 14 | -------------------------------------------------------------------------------- /wxapp/miniprogram_npm/@vant/weapp/wxs/utils.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var bem = require('./bem.wxs').bem; 3 | var memoize = require('./memoize.wxs').memoize; 4 | var addUnit = require('./add-unit.wxs').addUnit; 5 | 6 | module.exports = { 7 | bem: memoize(bem), 8 | memoize: memoize, 9 | addUnit: addUnit 10 | }; 11 | -------------------------------------------------------------------------------- /wxapp/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wx_app", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@vant/weapp": "^1.5.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/common/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/common/footer.wxss: -------------------------------------------------------------------------------- 1 | /* pages/common/footer.wxss */ 2 | @import "/app.wxss"; 3 | 4 | .bottom-bar{ 5 | width: 100%; 6 | height: 60px; 7 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/common/form.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-radio": "@vant/weapp/radio/index", 5 | "van-radio-group": "@vant/weapp/radio-group/index", 6 | "van-checkbox": "@vant/weapp/checkbox/index", 7 | "van-checkbox-group": "@vant/weapp/checkbox-group/index", 8 | "van-picker": "@vant/weapp/picker/index", 9 | "van-cell": "@vant/weapp/cell/index", 10 | "van-uploader": "@vant/weapp/uploader/index", 11 | "van-calendar": "@vant/weapp/calendar/index" 12 | } 13 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/common/form.wxss: -------------------------------------------------------------------------------- 1 | @import "/app.wxss"; 2 | 3 | .ticket-form{ 4 | font-size: var(--card-font-size,12px); 5 | padding: 10px; 6 | display: block; 7 | } 8 | 9 | .form-title{ 10 | padding: 10px 0 0px; 11 | font-weight: 600; 12 | color: #303133; 13 | line-height: 40px; 14 | } 15 | 16 | .pes-form-cell{ 17 | padding: 5px 0 !important; 18 | } 19 | .pes-form-cell::after{ 20 | left: 0 !important; 21 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/common/header.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{goback}} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/form/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "van-radio": "@vant/weapp/radio/index", 4 | "van-radio-group": "@vant/weapp/radio-group/index", 5 | "van-checkbox": "@vant/weapp/checkbox/index", 6 | "van-checkbox-group": "@vant/weapp/checkbox-group/index", 7 | "van-picker": "@vant/weapp/picker/index", 8 | "van-cell": "@vant/weapp/cell/index", 9 | "van-uploader": "@vant/weapp/uploader/index", 10 | "van-calendar": "@vant/weapp/calendar/index" 11 | } 12 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "van-search": "@vant/weapp/search/index", 4 | "form": "/pages/common/form", 5 | "van-steps": "@vant/weapp/steps/index", 6 | "van-card": "@vant/weapp/card/index" 7 | } 8 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | 3 | .ticket-panel{ 4 | margin: 20px 5px 60px 5px !important; 5 | padding:0 10px 5px 10px !important; 6 | background-color: #fff; 7 | border: 1px solid transparent; 8 | border-color: #ebeef5; 9 | border-radius: 0; 10 | box-shadow: 0 1px 1px rgba(0,0,0,.05); 11 | border-radius: 4px; 12 | } 13 | 14 | .ticket-card{ 15 | font-size: 12px; 16 | background-color: #fafafa; 17 | color: #646566; 18 | margin: 10px 10px; 19 | } 20 | .ticket-card-title{ 21 | color: #000 !important; 22 | font-weight: bold !important; 23 | font-size: 14px !important; 24 | margin-bottom: 10px; 25 | } 26 | .ticket-card-desc{ 27 | margin-top: 10px; 28 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | //logs.js 2 | const util = require('../../utils/util.js') 3 | 4 | Page({ 5 | data: { 6 | logs: [] 7 | }, 8 | onLoad: function () { 9 | this.setData({ 10 | logs: (wx.getStorageSync('logs') || []).map(log => { 11 | return util.formatTime(new Date(log)) 12 | }) 13 | }) 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{index + 1}}. {{log}} 5 | 6 | 7 | -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/logs/logs.wxss: -------------------------------------------------------------------------------- 1 | .log-list { 2 | display: flex; 3 | flex-direction: column; 4 | padding: 40rpx; 5 | } 6 | .log-item { 7 | margin: 10rpx; 8 | } 9 | -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/member/index.js: -------------------------------------------------------------------------------- 1 | // pages/member/index.js 2 | Page({ 3 | 4 | /** 5 | * 页面的初始数据 6 | */ 7 | data: { 8 | tabbarActive: 2, 9 | title: '个人中心', 10 | username: '', 11 | avatar: '' 12 | }, 13 | 14 | /** 15 | * 生命周期函数--监听页面加载 16 | */ 17 | onShow: function (options) { 18 | this.setData({ 19 | username: wx.getStorageSync('username'), 20 | avatar: wx.getStorageSync('avatar') 21 | }) 22 | } 23 | 24 | }) -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/member/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/member/index.wxss: -------------------------------------------------------------------------------- 1 | .member-ticket-grid .van-col{ 2 | border-right: 1px solid #cfcfcf; 3 | } 4 | .remove-right-border{ 5 | border-right: none !important; 6 | } 7 | .member-ticket-grid .van-col>view:last-child{ 8 | font-size: 14px; 9 | margin: 7px; 10 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/ticket/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/ticket/detail.wxss: -------------------------------------------------------------------------------- 1 | /* pages/ticket/detail.wxss */ 2 | .pes-ticket-from { 3 | padding-bottom: 10px; 4 | border-bottom: 1px dashed #ebedf0; 5 | } 6 | 7 | .pes-ticket-from:last-child { 8 | padding-bottom: 0px; 9 | border: none; 10 | } 11 | 12 | .reply-textarea { 13 | width: 100%; 14 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/ticket/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "van-tab": "@vant/weapp/tab/index", 4 | "van-tabs": "@vant/weapp/tabs/index", 5 | "van-search": "@vant/weapp/search/index", 6 | "van-panel": "@vant/weapp/panel/index", 7 | "van-tag": "@vant/weapp/tag/index" 8 | } 9 | } -------------------------------------------------------------------------------- /wxapp_sourcecode/pages/ticket/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/ticket/index.wxss */ -------------------------------------------------------------------------------- /wxapp_sourcecode/utils/util.js: -------------------------------------------------------------------------------- 1 | const formatTime = date => { 2 | const year = date.getFullYear() 3 | const month = date.getMonth() + 1 4 | const day = date.getDate() 5 | const hour = date.getHours() 6 | const minute = date.getMinutes() 7 | const second = date.getSeconds() 8 | 9 | return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':') 10 | } 11 | 12 | const formatNumber = n => { 13 | n = n.toString() 14 | return n[1] ? n : '0' + n 15 | } 16 | 17 | module.exports = { 18 | formatTime: formatTime 19 | } 20 | --------------------------------------------------------------------------------