├── .env.example ├── .gitignore ├── Changelog.md ├── LICENSE ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ ├── AbortException.php │ └── Handler.php ├── Gdoo │ ├── Article │ │ ├── Controllers │ │ │ ├── ArticleController.php │ │ │ └── WidgetController.php │ │ ├── Hooks │ │ │ └── ArticleHook.php │ │ ├── Models │ │ │ ├── Article.php │ │ │ └── ArticleCategory.php │ │ ├── Services │ │ │ └── ArticleService.php │ │ ├── config.php │ │ └── views │ │ │ ├── article │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── query.blade.php │ │ │ ├── reader.blade.php │ │ │ └── show.blade.php │ │ │ └── widget │ │ │ └── index.blade.php │ ├── Calendar │ │ ├── Controllers │ │ │ ├── CalendarController.php │ │ │ ├── EventController.php │ │ │ └── WidgetController.php │ │ ├── Models │ │ │ ├── Calendar.php │ │ │ ├── CalendarObject.php │ │ │ └── CalendarReminder.php │ │ ├── Sabre │ │ │ ├── CalDAV │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ ├── NotificationSupport.php │ │ │ │ │ ├── PDO.php │ │ │ │ │ └── SharingSupport.php │ │ │ │ ├── Calendar.php │ │ │ │ ├── CalendarObject.php │ │ │ │ ├── CalendarQueryParser.php │ │ │ │ ├── CalendarQueryValidator.php │ │ │ │ ├── CalendarRootNode.php │ │ │ │ ├── Exception │ │ │ │ │ └── InvalidComponentType.php │ │ │ │ ├── ICSExportPlugin.php │ │ │ │ ├── ICalendar.php │ │ │ │ ├── ICalendarObject.php │ │ │ │ ├── IShareableCalendar.php │ │ │ │ ├── ISharedCalendar.php │ │ │ │ ├── Notifications │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── ICollection.php │ │ │ │ │ ├── INode.php │ │ │ │ │ ├── INotificationType.php │ │ │ │ │ ├── Node.php │ │ │ │ │ └── Notification │ │ │ │ │ │ ├── Invite.php │ │ │ │ │ │ ├── InviteReply.php │ │ │ │ │ │ └── SystemStatus.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Principal │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── IProxyRead.php │ │ │ │ │ ├── IProxyWrite.php │ │ │ │ │ ├── ProxyRead.php │ │ │ │ │ ├── ProxyWrite.php │ │ │ │ │ └── User.php │ │ │ │ ├── Property │ │ │ │ │ ├── AllowedSharingModes.php │ │ │ │ │ ├── Invite.php │ │ │ │ │ ├── ScheduleCalendarTransp.php │ │ │ │ │ ├── SupportedCalendarComponentSet.php │ │ │ │ │ ├── SupportedCalendarData.php │ │ │ │ │ └── SupportedCollationSet.php │ │ │ │ ├── Schedule │ │ │ │ │ ├── IMip.php │ │ │ │ │ ├── IOutbox.php │ │ │ │ │ └── Outbox.php │ │ │ │ ├── ShareableCalendar.php │ │ │ │ ├── SharedCalendar.php │ │ │ │ ├── SharingPlugin.php │ │ │ │ ├── UserCalendars.php │ │ │ │ └── Version.php │ │ │ ├── CardDAV │ │ │ │ ├── AddressBook.php │ │ │ │ ├── AddressBookQueryParser.php │ │ │ │ ├── AddressBookRoot.php │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ └── PDO.php │ │ │ │ ├── Card.php │ │ │ │ ├── IAddressBook.php │ │ │ │ ├── ICard.php │ │ │ │ ├── IDirectory.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Property │ │ │ │ │ └── SupportedAddressData.php │ │ │ │ ├── UserAddressBooks.php │ │ │ │ ├── VCFExportPlugin.php │ │ │ │ └── Version.php │ │ │ ├── Connector │ │ │ │ ├── Auth.php │ │ │ │ ├── CalDAV.php │ │ │ │ ├── Principal.php │ │ │ │ └── Share │ │ │ │ │ └── CalDAV.php │ │ │ ├── DAV │ │ │ │ ├── Auth │ │ │ │ │ ├── Backend │ │ │ │ │ │ ├── AbstractBasic.php │ │ │ │ │ │ ├── AbstractDigest.php │ │ │ │ │ │ ├── Apache.php │ │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── PDO.php │ │ │ │ │ └── Plugin.php │ │ │ │ ├── Browser │ │ │ │ │ ├── GuessContentType.php │ │ │ │ │ ├── MapGetToPropFind.php │ │ │ │ │ ├── Plugin.php │ │ │ │ │ └── assets │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── card.png │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ ├── file.png │ │ │ │ │ │ ├── parent.png │ │ │ │ │ │ └── principal.png │ │ │ │ ├── Client.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── BadRequest.php │ │ │ │ │ ├── Conflict.php │ │ │ │ │ ├── ConflictingLock.php │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── Forbidden.php │ │ │ │ │ ├── InsufficientStorage.php │ │ │ │ │ ├── InvalidResourceType.php │ │ │ │ │ ├── LengthRequired.php │ │ │ │ │ ├── LockTokenMatchesRequestUri.php │ │ │ │ │ ├── Locked.php │ │ │ │ │ ├── MethodNotAllowed.php │ │ │ │ │ ├── NotAuthenticated.php │ │ │ │ │ ├── NotFound.php │ │ │ │ │ ├── NotImplemented.php │ │ │ │ │ ├── PaymentRequired.php │ │ │ │ │ ├── PreconditionFailed.php │ │ │ │ │ ├── ReportNotSupported.php │ │ │ │ │ ├── RequestedRangeNotSatisfiable.php │ │ │ │ │ ├── ServiceUnavailable.php │ │ │ │ │ └── UnsupportedMediaType.php │ │ │ │ ├── FS │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Node.php │ │ │ │ ├── FSExt │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Node.php │ │ │ │ ├── File.php │ │ │ │ ├── ICollection.php │ │ │ │ ├── IExtendedCollection.php │ │ │ │ ├── IFile.php │ │ │ │ ├── INode.php │ │ │ │ ├── IProperties.php │ │ │ │ ├── IQuota.php │ │ │ │ ├── Locks │ │ │ │ │ ├── Backend │ │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ │ ├── FS.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── PDO.php │ │ │ │ │ ├── LockInfo.php │ │ │ │ │ └── Plugin.php │ │ │ │ ├── Mount │ │ │ │ │ └── Plugin.php │ │ │ │ ├── Node.php │ │ │ │ ├── ObjectTree.php │ │ │ │ ├── PartialUpdate │ │ │ │ │ ├── IFile.php │ │ │ │ │ ├── IPatchSupport.php │ │ │ │ │ └── Plugin.php │ │ │ │ ├── Property.php │ │ │ │ ├── Property │ │ │ │ │ ├── GetLastModified.php │ │ │ │ │ ├── Href.php │ │ │ │ │ ├── HrefList.php │ │ │ │ │ ├── IHref.php │ │ │ │ │ ├── LockDiscovery.php │ │ │ │ │ ├── ResourceType.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── ResponseList.php │ │ │ │ │ ├── SupportedLock.php │ │ │ │ │ └── SupportedReportSet.php │ │ │ │ ├── PropertyInterface.php │ │ │ │ ├── Server.php │ │ │ │ ├── ServerPlugin.php │ │ │ │ ├── SimpleCollection.php │ │ │ │ ├── SimpleFile.php │ │ │ │ ├── StringUtil.php │ │ │ │ ├── TemporaryFileFilterPlugin.php │ │ │ │ ├── Tree.php │ │ │ │ ├── Tree │ │ │ │ │ └── Filesystem.php │ │ │ │ ├── URLUtil.php │ │ │ │ ├── UUIDUtil.php │ │ │ │ ├── Version.php │ │ │ │ └── XMLUtil.php │ │ │ ├── DAVACL │ │ │ │ ├── AbstractPrincipalCollection.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AceConflict.php │ │ │ │ │ ├── NeedPrivileges.php │ │ │ │ │ ├── NoAbstract.php │ │ │ │ │ ├── NotRecognizedPrincipal.php │ │ │ │ │ └── NotSupportedPrivilege.php │ │ │ │ ├── IACL.php │ │ │ │ ├── IPrincipal.php │ │ │ │ ├── IPrincipalCollection.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Principal.php │ │ │ │ ├── PrincipalBackend │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ └── PDO.php │ │ │ │ ├── PrincipalCollection.php │ │ │ │ ├── Property │ │ │ │ │ ├── Acl.php │ │ │ │ │ ├── AclRestrictions.php │ │ │ │ │ ├── CurrentUserPrivilegeSet.php │ │ │ │ │ ├── Principal.php │ │ │ │ │ └── SupportedPrivilegeSet.php │ │ │ │ └── Version.php │ │ │ ├── HTTP │ │ │ │ ├── AWSAuth.php │ │ │ │ ├── AbstractAuth.php │ │ │ │ ├── BasicAuth.php │ │ │ │ ├── DigestAuth.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Util.php │ │ │ │ └── Version.php │ │ │ └── VObject │ │ │ │ ├── Component.php │ │ │ │ ├── Component │ │ │ │ ├── VAlarm.php │ │ │ │ ├── VCalendar.php │ │ │ │ ├── VCard.php │ │ │ │ ├── VEvent.php │ │ │ │ ├── VFreeBusy.php │ │ │ │ ├── VJournal.php │ │ │ │ └── VTodo.php │ │ │ │ ├── DateTimeParser.php │ │ │ │ ├── Document.php │ │ │ │ ├── ElementList.php │ │ │ │ ├── FreeBusyGenerator.php │ │ │ │ ├── Node.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── ParseException.php │ │ │ │ ├── Property.php │ │ │ │ ├── Property │ │ │ │ ├── Compound.php │ │ │ │ ├── DateTime.php │ │ │ │ └── MultiDateTime.php │ │ │ │ ├── Reader.php │ │ │ │ ├── RecurrenceIterator.php │ │ │ │ ├── Splitter │ │ │ │ ├── ICalendar.php │ │ │ │ ├── SplitterInterface.php │ │ │ │ └── VCard.php │ │ │ │ ├── StringUtil.php │ │ │ │ ├── TimeZoneUtil.php │ │ │ │ ├── Version.php │ │ │ │ └── includes.php │ │ ├── Services │ │ │ ├── CalendarObjectService.php │ │ │ └── CalendarService.php │ │ ├── config.php │ │ └── views │ │ │ ├── calendar │ │ │ ├── add.blade.php │ │ │ ├── help.blade.php │ │ │ └── index.blade.php │ │ │ ├── event │ │ │ ├── add.blade.php │ │ │ └── view.blade.php │ │ │ └── widget │ │ │ └── index.blade.php │ ├── Customer │ │ ├── Controllers │ │ │ ├── BusinessController.php │ │ │ ├── ComplaintController.php │ │ │ ├── ContactController.php │ │ │ ├── CustomerApplyController.php │ │ │ ├── CustomerClassController.php │ │ │ ├── CustomerController.php │ │ │ ├── DeliveryAddressController.php │ │ │ ├── PriceController.php │ │ │ ├── RegionController.php │ │ │ ├── RegionTaskController.php │ │ │ ├── ReportController.php │ │ │ ├── TaskController.php │ │ │ ├── TaxController.php │ │ │ ├── TypeController.php │ │ │ └── WidgetController.php │ │ ├── Hooks │ │ │ ├── ContactHook.php │ │ │ ├── CustomerApplyHook.php │ │ │ ├── CustomerHook.php │ │ │ ├── CustomerTaskDataHook.php │ │ │ ├── DeliveryAddressHook.php │ │ │ ├── PriceHook.php │ │ │ ├── RegionHook.php │ │ │ └── TaxHook.php │ │ ├── Models │ │ │ ├── Business.php │ │ │ ├── Contact.php │ │ │ ├── Customer.php │ │ │ ├── CustomerApply.php │ │ │ ├── CustomerClass.php │ │ │ ├── CustomerComplaint.php │ │ │ ├── CustomerPrice.php │ │ │ ├── CustomerRegion.php │ │ │ ├── CustomerRegionTask.php │ │ │ ├── CustomerTask.php │ │ │ ├── CustomerTax.php │ │ │ ├── CustomerType.php │ │ │ ├── DeliveryAddress.php │ │ │ └── Region.php │ │ ├── Services │ │ │ └── CustomerService.php │ │ ├── config.php │ │ └── views │ │ │ ├── complaint │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ └── progress.blade.php │ │ │ ├── contact │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ │ ├── customer │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── priceEdit.blade.php │ │ │ ├── customerApply │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── customerClass │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── deliveryAddress │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ │ ├── price │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── referCustomer.blade.php │ │ │ ├── region │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── regionTask │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── progress.blade.php │ │ │ ├── report │ │ │ └── accountStatement.blade.php │ │ │ ├── task │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── progress.blade.php │ │ │ ├── tax │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── type │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ └── widget │ │ │ └── birthday.blade.php │ ├── File │ │ ├── Controllers │ │ │ ├── AttachmentController.php │ │ │ ├── CertificateController.php │ │ │ ├── FileController.php │ │ │ └── InspectReportController.php │ │ ├── Models │ │ │ ├── Attachment.php │ │ │ ├── Certificate.php │ │ │ ├── File.php │ │ │ └── InspectReport.php │ │ ├── config.php │ │ └── views │ │ │ ├── certificate │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── file │ │ │ ├── edit.blade.php │ │ │ ├── folder.blade.php │ │ │ ├── index.blade.1.php │ │ │ ├── index.blade.php │ │ │ ├── personal.blade.php │ │ │ ├── receive.blade.php │ │ │ ├── receivedata.blade.php │ │ │ ├── share.blade.php │ │ │ ├── sharing.blade.php │ │ │ └── upload.blade.php │ │ │ └── inspectReport │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ ├── Forum │ │ ├── Controllers │ │ │ ├── CategoryController.php │ │ │ └── PostController.php │ │ ├── Models │ │ │ ├── Forum.php │ │ │ └── ForumPost.php │ │ ├── config.php │ │ └── views │ │ │ ├── category │ │ │ ├── add.blade.php │ │ │ └── index.blade.php │ │ │ ├── post │ │ │ ├── add.blade.php │ │ │ ├── comment.blade.php │ │ │ ├── forum.blade.php │ │ │ ├── index.blade.php │ │ │ └── view.blade.php │ │ │ └── query.blade.php │ ├── Index │ │ ├── Controllers │ │ │ ├── ApiController.php │ │ │ ├── AttachmentController.php │ │ │ ├── AuditController.php │ │ │ ├── Controller.php │ │ │ ├── DashboardController.php │ │ │ ├── DefaultController.php │ │ │ ├── DemoController.php │ │ │ ├── IndexController.php │ │ │ └── WorkflowController.php │ │ ├── Models │ │ │ ├── Attachment.php │ │ │ ├── BaseModel.php │ │ │ ├── Region.php │ │ │ └── Share.php │ │ ├── Services │ │ │ ├── AttachmentService.php │ │ │ ├── BadgeService.php │ │ │ ├── InfoService.php │ │ │ ├── MenuService.php │ │ │ ├── NotificationService.php │ │ │ ├── RetService.php │ │ │ └── ShareService.php │ │ └── views │ │ │ ├── api │ │ │ ├── dialog.blade.php │ │ │ ├── location.blade.php │ │ │ ├── sms.blade.php │ │ │ └── unsupportedBrowser.blade.php │ │ │ ├── dashboard │ │ │ ├── config.blade.php │ │ │ ├── index.blade.php │ │ │ ├── quickMenu.blade.php │ │ │ ├── settingInfo.blade.php │ │ │ └── settingWidget.blade.php │ │ │ ├── demo │ │ │ └── vouch.blade.php │ │ │ └── index │ │ │ ├── index.blade.php │ │ │ └── support.blade.php │ ├── Model │ │ ├── Controllers │ │ │ ├── BillController.php │ │ │ ├── FieldController.php │ │ │ ├── ModelController.php │ │ │ ├── ModuleController.php │ │ │ ├── PermissionController.php │ │ │ ├── StepController.php │ │ │ ├── TemplateController.php │ │ │ └── TodoController.php │ │ ├── Form.php │ │ ├── Grid.php │ │ ├── Models │ │ │ ├── Bill.php │ │ │ ├── Field.php │ │ │ ├── Model.php │ │ │ ├── Module.php │ │ │ ├── Permission.php │ │ │ ├── Run.php │ │ │ ├── RunLog.php │ │ │ ├── RunStep.php │ │ │ ├── Step.php │ │ │ └── Template.php │ │ ├── Services │ │ │ ├── FieldService.php │ │ │ ├── FlowService.php │ │ │ ├── ModelService.php │ │ │ ├── ModuleService.php │ │ │ └── StepService.php │ │ ├── config.php │ │ └── views │ │ │ ├── bill │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── field │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── model │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── module │ │ │ └── index.blade.php │ │ │ ├── permission │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── process │ │ │ ├── log.blade.php │ │ │ └── turn.blade.php │ │ │ ├── step │ │ │ ├── condition.php │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── index2.blade.php │ │ │ └── move.blade.php │ │ │ ├── template │ │ │ ├── create.blade.php │ │ │ ├── create2.blade.php │ │ │ └── index.blade.php │ │ │ └── todo │ │ │ └── widget.blade.php │ ├── Order │ │ ├── Controllers │ │ │ ├── LogisticsController.php │ │ │ ├── OrderController.php │ │ │ ├── PlanController.php │ │ │ ├── ReportController.php │ │ │ ├── SampleApplyController.php │ │ │ ├── TypeController.php │ │ │ └── WidgetController.php │ │ ├── Hooks │ │ │ ├── CancelHook.php │ │ │ ├── OrderDataHook.php │ │ │ └── OrderHook.php │ │ ├── Models │ │ │ ├── CancelOrder.php │ │ │ ├── CancelOrderData.php │ │ │ ├── CustomerDelivery.php │ │ │ ├── CustomerOrder.php │ │ │ ├── CustomerOrderData.php │ │ │ ├── CustomerOrderType.php │ │ │ ├── Logistics.php │ │ │ ├── OrderTransport.php │ │ │ ├── SampleApply.php │ │ │ └── SampleApplyData.php │ │ ├── Services │ │ │ └── OrderService.php │ │ ├── config.php │ │ └── views │ │ │ ├── logistics │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── order │ │ │ ├── bank.blade.php │ │ │ ├── create.blade.php │ │ │ ├── delivery.blade.php │ │ │ ├── deliveryEdit.blade.php │ │ │ ├── deliveryPlan.blade.php │ │ │ ├── detail.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ ├── logisticsPlan.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 121.blade.php │ │ │ ├── reference.blade.php │ │ │ ├── serviceCancelOrder.blade.php │ │ │ ├── serviceDelivery.blade.php │ │ │ ├── serviceNotDelivery.blade.php │ │ │ └── servicePromotion.blade.php │ │ │ ├── plan │ │ │ ├── export_sale.blade.php │ │ │ ├── index.blade.php │ │ │ ├── produce.blade.php │ │ │ └── producePlan.blade.php │ │ │ ├── report │ │ │ ├── category.blade.php │ │ │ ├── city.blade.php │ │ │ ├── client.blade.php │ │ │ ├── clientdata.blade.php │ │ │ ├── index.blade.php │ │ │ ├── newclient.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── ranking.blade.php │ │ │ ├── receivable.blade.php │ │ │ ├── select.blade.php │ │ │ ├── single.blade.php │ │ │ └── stockmonth.blade.php │ │ │ ├── sampleApply │ │ │ ├── create.blade.php │ │ │ ├── detail.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ └── serviceDelivery.blade.php │ │ │ ├── type │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ └── widget │ │ │ ├── goods.blade.php │ │ │ └── index.blade.php │ ├── Produce │ │ ├── Controllers │ │ │ ├── MaterialController.php │ │ │ └── PlanController.php │ │ ├── Hooks │ │ │ └── PlanDataHook.php │ │ ├── Models │ │ │ ├── Material.php │ │ │ └── Plan.php │ │ ├── Services │ │ │ └── ProduceService.php │ │ ├── config.php │ │ └── views │ │ │ ├── material │ │ │ ├── plan.blade.php │ │ │ ├── planProduct.blade.php │ │ │ └── planTotal.blade.php │ │ │ └── plan │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── planExport.blade.php │ ├── Product │ │ ├── Controllers │ │ │ ├── CategoryController.php │ │ │ ├── MaterialController.php │ │ │ ├── ProductController.php │ │ │ └── UnitController.php │ │ ├── Hooks │ │ │ ├── CategoryHook.php │ │ │ └── MaterialHook.php │ │ ├── Models │ │ │ ├── Product.php │ │ │ ├── ProductCategory.php │ │ │ ├── ProductMaterial.php │ │ │ └── ProductUnit.php │ │ ├── config.php │ │ └── views │ │ │ ├── category │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── material │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── product │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── serviceCustomer.blade.php │ │ │ └── unit │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ ├── Project │ │ ├── Controllers │ │ │ ├── CommentController.php │ │ │ ├── ProjectController.php │ │ │ ├── TaskController.php │ │ │ └── WidgetController.php │ │ ├── Models │ │ │ ├── Log.php │ │ │ ├── Project.php │ │ │ └── Task.php │ │ ├── Services │ │ │ └── TaskService.php │ │ ├── config.php │ │ └── views │ │ │ ├── comment │ │ │ ├── add.blade.php │ │ │ └── edit.blade.php │ │ │ ├── project │ │ │ ├── add.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── query.blade.php │ │ │ ├── task │ │ │ ├── add.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index │ │ │ │ ├── gantt.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── js.blade.php │ │ │ └── item │ │ │ │ ├── add.blade.php │ │ │ │ └── edit.blade.php │ │ │ └── widget │ │ │ └── index.blade.php │ ├── Purchase │ │ ├── Controllers │ │ │ ├── OrderController.php │ │ │ └── SupplierController.php │ │ ├── Models │ │ │ ├── Order.php │ │ │ └── Supplier.php │ │ ├── config.php │ │ └── views │ │ │ ├── order │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── serviceRecord01.blade.php │ │ │ └── supplier │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ ├── Stock │ │ ├── Controllers │ │ │ ├── AllocationController.php │ │ │ ├── CancelController.php │ │ │ ├── CategoryController.php │ │ │ ├── DeliveryController.php │ │ │ ├── DirectController.php │ │ │ ├── LocationController.php │ │ │ ├── Record01Controller.php │ │ │ ├── Record08Controller.php │ │ │ ├── Record09Controller.php │ │ │ ├── Record10Controller.php │ │ │ ├── Record11Controller.php │ │ │ ├── ReportController.php │ │ │ ├── TypeController.php │ │ │ └── WarehouseController.php │ │ ├── Hooks │ │ │ ├── AllocationHook.php │ │ │ ├── CancelHook.php │ │ │ ├── DeliveryDataHook.php │ │ │ ├── DeliveryHook.php │ │ │ ├── DirectHook.php │ │ │ ├── Record01Hook.php │ │ │ ├── Record08Hook.php │ │ │ ├── Record09Hook.php │ │ │ ├── Record10DataHook.php │ │ │ ├── Record10Hook.php │ │ │ └── Record11Hook.php │ │ ├── Models │ │ │ ├── Allocation.php │ │ │ ├── Cancel.php │ │ │ ├── Delivery.php │ │ │ ├── Direct.php │ │ │ ├── Record01.php │ │ │ ├── Record08.php │ │ │ ├── Record09.php │ │ │ ├── Record10.php │ │ │ ├── Record11.php │ │ │ ├── StockCategory.php │ │ │ ├── StockType.php │ │ │ ├── Warehouse.php │ │ │ └── WarehouseLocation.php │ │ ├── Services │ │ │ ├── DeliveryService.php │ │ │ └── StockService.php │ │ ├── config.php │ │ └── views │ │ │ ├── allocation │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── logistics.html │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ ├── 118.blade.php │ │ │ │ └── 125.blade.php │ │ │ ├── reference.blade.php │ │ │ └── stockSelect.blade.php │ │ │ ├── cancel │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 120.blade.php │ │ │ └── reference.blade.php │ │ │ ├── category │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── delivery │ │ │ ├── create.blade.php │ │ │ ├── detail.blade.php │ │ │ ├── getBatchSelect.blade.php │ │ │ ├── index.blade.php │ │ │ ├── logistics.xml │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ ├── 112.blade.php │ │ │ │ └── 87.blade.php │ │ │ └── reference.blade.php │ │ │ ├── direct │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 126.blade.php │ │ │ └── reference.blade.php │ │ │ ├── location │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── dialog2.blade.php │ │ │ └── index.blade.php │ │ │ ├── record01 │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── print.blade.php │ │ │ ├── record08 │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 117.blade.php │ │ │ └── reference.blade.php │ │ │ ├── record09 │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 115.blade.php │ │ │ └── reference.blade.php │ │ │ ├── record10 │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ ├── print │ │ │ │ └── 117.blade.php │ │ │ └── reference.blade.php │ │ │ ├── record11 │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── print.blade.php │ │ │ └── reference.blade.php │ │ │ ├── report │ │ │ ├── stockDetail.blade.php │ │ │ ├── stockInOut.blade.php │ │ │ └── stockTotal.blade.php │ │ │ ├── type │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ └── warehouse │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── permission.blade.php │ ├── System │ │ ├── Controllers │ │ │ ├── CronController.php │ │ │ ├── LogController.php │ │ │ ├── MailController.php │ │ │ ├── MediaController.php │ │ │ ├── MenuController.php │ │ │ ├── OptionController.php │ │ │ ├── RegionController.php │ │ │ ├── SettingController.php │ │ │ ├── SmsController.php │ │ │ ├── SmsLogController.php │ │ │ └── WidgetController.php │ │ ├── Hooks │ │ │ └── RegionHook.php │ │ ├── Models │ │ │ ├── Cron.php │ │ │ ├── Media.php │ │ │ ├── Menu.php │ │ │ ├── Option.php │ │ │ ├── Region.php │ │ │ ├── Setting.php │ │ │ ├── SystemLog.php │ │ │ └── Widget.php │ │ ├── Services │ │ │ └── SmsService.php │ │ ├── config.php │ │ └── views │ │ │ ├── cron │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── log │ │ │ └── index.blade.php │ │ │ ├── mail │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── test.blade.php │ │ │ ├── media │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── folder.blade.php │ │ │ └── qrcode.blade.php │ │ │ ├── menu │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── option │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ │ ├── region │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── setting │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ │ ├── sms │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── test.blade.php │ │ │ ├── smsLog │ │ │ └── index.blade.php │ │ │ └── widget │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ ├── User │ │ ├── Controllers │ │ │ ├── AuthController.php │ │ │ ├── DepartmentController.php │ │ │ ├── GroupController.php │ │ │ ├── MessageController.php │ │ │ ├── PostController.php │ │ │ ├── ProfileController.php │ │ │ ├── RegionController.php │ │ │ ├── RoleController.php │ │ │ ├── TokenController.php │ │ │ ├── UserController.php │ │ │ └── WidgetController.php │ │ ├── Hooks │ │ │ ├── DepartmentHook.php │ │ │ ├── RoleHook.php │ │ │ └── UserHook.php │ │ ├── Models │ │ │ ├── Department.php │ │ │ ├── Message.php │ │ │ ├── Role.php │ │ │ ├── User.php │ │ │ ├── UserAsset.php │ │ │ ├── UserGroup.php │ │ │ ├── UserPost.php │ │ │ └── UserWidget.php │ │ ├── Services │ │ │ ├── UserAssetService.php │ │ │ └── UserService.php │ │ ├── config.php │ │ └── views │ │ │ ├── auth │ │ │ ├── login.blade.php │ │ │ ├── qrcode.blade.php │ │ │ └── totp.blade.php │ │ │ ├── department │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── group │ │ │ ├── create.blade.php │ │ │ └── index.blade.php │ │ │ ├── message │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ │ ├── post │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ │ │ ├── profile │ │ │ ├── avatar.blade.php │ │ │ ├── index.blade.php │ │ │ └── password.blade.php │ │ │ ├── role │ │ │ ├── config.blade.php │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ ├── index.blade.php │ │ │ └── permission.blade.php │ │ │ └── user │ │ │ ├── create.blade.php │ │ │ ├── dialog.blade.php │ │ │ └── index.blade.php │ ├── Wap │ │ ├── Controllers │ │ │ ├── AuthController.php │ │ │ ├── Controller.php │ │ │ └── WechatController.php │ │ └── config.php │ └── Wechat │ │ ├── Controllers │ │ ├── ConfigController.php │ │ └── EchoController.php │ │ ├── Models │ │ ├── Config.php │ │ └── WechatUser.php │ │ ├── Services │ │ ├── MenuService.php │ │ └── WechatService.php │ │ ├── config.php │ │ └── views │ │ └── config │ │ ├── config.blade.php │ │ └── menu.blade.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── JsonResponse.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Illuminate │ ├── Database │ │ ├── MySqlConnection.php │ │ ├── Query │ │ │ └── Builder.php │ │ └── SqlsrvConnection.php │ └── View │ │ ├── Compilers │ │ └── BladeCompiler.php │ │ └── ViewServiceProvider.php ├── Jobs │ ├── SendDingTalk.php │ ├── SendEmail.php │ ├── SendSite.php │ └── SendSms.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Support │ ├── AES.php │ ├── Base32.php │ ├── Captcha.php │ ├── DAV.php │ ├── Dialog.php │ ├── EventDispatcher.php │ ├── Hook.php │ ├── Image.php │ ├── JPush.php │ ├── JWT.php │ ├── License.php │ ├── LogRecord.php │ ├── Pinyin.php │ ├── Prince.php │ ├── Totp.php │ ├── VObject.php │ └── helpers.php ├── gdoo.php ├── macros.php └── sql.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── gdoo-2.5.2.sql └── seeders │ └── DatabaseSeeder.php ├── package.json ├── public ├── assets │ ├── css │ │ ├── aggrid.css │ │ ├── gdoo.css │ │ ├── images │ │ │ ├── index.png │ │ │ ├── login_bg.jpg │ │ │ ├── logo.png │ │ │ ├── mobile_foot.png │ │ │ └── mobile_head.png │ │ ├── menu.css │ │ ├── reset.css │ │ ├── timeline.css │ │ └── wechat │ │ │ ├── console.css │ │ │ └── icon │ │ │ └── icon.css │ ├── dist │ │ ├── bundle.min.js │ │ ├── bundle.min.js.LICENSE.txt │ │ ├── gdoo.min.css │ │ ├── gdoo.min.js │ │ ├── index.min.css │ │ ├── index.min.js │ │ ├── indicator.gif │ │ ├── vendor.min.css │ │ └── vendor.min.js │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap-icons.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── milkcocoa.ttf │ │ └── simsun.ttf │ ├── images │ │ ├── a0.jpg │ │ ├── a1.jpg │ │ ├── android_download.png │ │ ├── arrow.svg │ │ ├── bg1.jpg │ │ ├── bg2.jpg │ │ ├── colbg.jpg │ │ ├── combo_arrow.png │ │ ├── default_img.png │ │ ├── form_sheetbg.png │ │ ├── forum.gif │ │ ├── forum2.gif │ │ ├── graphbg.gif │ │ ├── header.png │ │ ├── icon-circle.png │ │ ├── icon-list.png │ │ ├── icons.png │ │ ├── indicator.gif │ │ ├── input_date.png │ │ ├── ios_download.png │ │ ├── jian.png │ │ ├── list_float_style.png │ │ ├── loading.gif │ │ ├── login-bg1.jpg │ │ ├── login-bg2.jpg │ │ ├── logo.svg │ │ ├── nopic.jpg │ │ ├── side-nav.png │ │ ├── side-nav.psd │ │ ├── wf_canvas_bg.png │ │ └── white-logo.svg │ ├── js │ │ ├── aggrid.js │ │ ├── aggrid │ │ │ ├── celleditor │ │ │ │ ├── dropdown.js │ │ │ │ └── suggest.js │ │ │ └── form.js │ │ ├── dialog.js │ │ ├── gdoo.dialog.input.js │ │ ├── gdoo.js │ │ ├── gdoo.websocket.js │ │ ├── listview.js │ │ ├── menu.js │ │ ├── model.js │ │ ├── realtime.js │ │ ├── search.js │ │ ├── select2.js │ │ └── support.js │ ├── libs │ │ ├── aes.js │ │ ├── jquery.lazyload.min.js │ │ ├── modernizr.min.js │ │ ├── moment.min.js │ │ ├── realtime.js │ │ ├── swfobject.min.js │ │ └── websocket.js │ └── vendor │ │ ├── addtabs │ │ └── bootstrap.addtabs.js │ │ ├── ag-grid │ │ ├── ag-grid.css │ │ ├── ag-grid.min.js │ │ └── ag-theme-balham.css │ │ ├── axios.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bootstrap-icons.css │ │ │ ├── bootstrap.css │ │ │ ├── font-awesome.min.css │ │ │ └── glyphicon.css │ │ └── js │ │ │ └── bootstrap.js │ │ ├── contextmenu │ │ └── bootstrap-contextmenu.js │ │ ├── cropper │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── datepicker │ │ ├── calendar.js │ │ ├── datepicker.js │ │ ├── demo.htm │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ └── default │ │ │ ├── datepicker.css │ │ │ ├── img.gif │ │ │ └── img.psd │ │ ├── dhtmlxgantt │ │ ├── demo.html │ │ ├── dhtmlxgantt.css │ │ ├── dhtmlxgantt.js │ │ ├── dhtmlxgantt_marker.js │ │ ├── dhtmlxgantt_tooltip.js │ │ └── locale_cn.js │ │ ├── echarts │ │ └── echarts.min.js │ │ ├── element-plus │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ ├── index.css │ │ └── index.js │ │ ├── fancytree │ │ ├── jquery.fancytree.js │ │ ├── jquery.fancytree.min.js │ │ └── skin-win8 │ │ │ ├── icons-rtl.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── ui.fancytree.css │ │ │ ├── ui.fancytree.less │ │ │ ├── ui.fancytree.min.css │ │ │ ├── vline-rtl.gif │ │ │ └── vline.gif │ │ ├── fontawesome-iconpicker │ │ ├── css │ │ │ └── fontawesome-iconpicker.min.css │ │ └── js │ │ │ └── fontawesome-iconpicker.min.js │ │ ├── fullcalendar │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.print.css │ │ └── locale │ │ │ └── zh-cn.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.colorpicker.js │ │ ├── jquery.cookie.js │ │ ├── jquery.js │ │ ├── jquery.json.js │ │ ├── jquery.paging.js │ │ ├── jquery.plumb.min.js │ │ ├── jquery.qrcode.min.js │ │ ├── jquery.table2excel.js │ │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── theme │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── core.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── layui │ │ │ │ └── global.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ └── layui.js │ │ ├── pcas.js │ │ ├── select2 │ │ ├── select2.css │ │ ├── select2.js │ │ └── zh-CN.js │ │ ├── template.min.js │ │ ├── tempusdominus │ │ ├── tempusdominus-bootstrap.css │ │ └── tempusdominus-bootstrap.js │ │ ├── toastr │ │ ├── toastr.css │ │ └── toastr.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 │ │ ├── php │ │ │ ├── Uploader.class.php │ │ │ ├── action_crawler.php │ │ │ ├── action_list.php │ │ │ ├── action_upload.php │ │ │ ├── config.json │ │ │ └── controller.php │ │ ├── themes │ │ │ ├── app.css │ │ │ ├── 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 │ │ │ └── workflow.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── 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.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.min.js │ │ └── ueditor.config.js │ │ ├── viewerjs │ │ ├── viewer.css │ │ └── viewer.js │ │ ├── vue.min.js │ │ └── webuploader │ │ ├── Uploader.swf │ │ ├── bg.png │ │ ├── demo.css │ │ ├── demo.js │ │ ├── icons.png │ │ ├── image.png │ │ ├── progress.png │ │ ├── success.png │ │ ├── webuploader.css │ │ └── webuploader.nolog.min.js ├── favicon.ico ├── index.php ├── mix-manifest.json ├── robots.txt └── uploads │ └── .gitignore ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── GdooFormDesigner.vue │ │ ├── gdooFrameHeader.vue │ │ └── gdooGridHeader.vue ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh-CN │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── attachment │ ├── create.blade.php │ ├── show.blade.php │ ├── upload.blade.php │ └── workflow.blade.php │ ├── batchEdit.blade.php │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ ├── notification.blade.php │ ├── password.blade.php │ └── welcome.blade.php │ ├── errors │ ├── 404.blade.php │ ├── 503.blade.php │ ├── abort.blade.php │ └── alert.blade.php │ ├── footers.blade.php │ ├── headers.blade.php │ ├── importExcel.blade.php │ ├── layouts │ ├── default.blade.php │ ├── empty.blade.php │ ├── errors.blade.php │ ├── header.blade.php │ ├── import.blade.php │ ├── map.blade.php │ ├── print.blade.php │ ├── print_html.blade.php │ ├── print_pdf.blade.php │ └── wechat.blade.php │ ├── model │ ├── abort.blade.php │ ├── flowAudit.blade.php │ ├── flowLog.blade.php │ ├── flowReturn.blade.php │ ├── flowRevise.blade.php │ └── recall.blade.php │ ├── searchForm.blade.php │ ├── searchForm3.blade.php │ ├── searchForm6.blade.php │ ├── searchForm7.blade.php │ ├── tabs.blade.php │ ├── tabs1.blade.php │ ├── tabs2.blade.php │ └── vendor │ └── pagination │ └── gdoo.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/workflow 3 | /public/storage 4 | /public/deploy.php 5 | /vendor 6 | /.idea 7 | /.vagrant 8 | /.vscode 9 | .DS_Store 10 | */.DS_Store 11 | /src 12 | Homestead.json 13 | Homestead.yaml 14 | npm-debug.log 15 | yarn-error.log 16 | _ide_helper.php 17 | .phpstorm.meta.php 18 | .env 19 | /nbproject/private/ -------------------------------------------------------------------------------- /app/Exceptions/AbortException.php: -------------------------------------------------------------------------------- 1 | permission('receive_id') 14 | ->whereNotExists(function ($q) { 15 | $q->selectRaw('1') 16 | ->from('article_reader') 17 | ->whereRaw('article_reader.article_id = article.id') 18 | ->where('article_reader.created_id', auth()->id()); 19 | })->get(); 20 | $ret['total'] = sizeof($rows); 21 | $ret['data'] = $rows; 22 | return $ret; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Gdoo/Article/views/article/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{$form['btn']}} 6 |
7 |
8 |
9 | {{$form['tpl']}} 10 |
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /app/Gdoo/Article/views/article/query.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | @if(isset($access['delete'])) 4 | 删除 5 | @endif 6 |
7 | @if(isset($access['create'])) 8 | 新建 9 | @endif 10 | @include('searchForm') 11 |
12 | 13 | -------------------------------------------------------------------------------- /app/Gdoo/Calendar/Controllers/WidgetController.php: -------------------------------------------------------------------------------- 1 | render(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/Gdoo/Calendar/Models/Calendar.php: -------------------------------------------------------------------------------- 1 | 14 | * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 15 | * @license http://sabre.io/license/ Modified BSD License 16 | */ 17 | class ServiceUnavailable extends DAV\Exception { 18 | 19 | /** 20 | * Returns the HTTP statuscode for this exception 21 | * 22 | * @return int 23 | */ 24 | public function getHTTPCode() { 25 | 26 | return 503; 27 | 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /app/Gdoo/Calendar/Sabre/DAV/Exception/UnsupportedMediaType.php: -------------------------------------------------------------------------------- 1 | orderByRaw('customer_task_data.code asc'); 12 | 13 | $params['q'] = $q; 14 | return $params; 15 | } 16 | 17 | public function onAfterForm($arguments) { 18 | return $arguments; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Hooks/RegionHook.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'customerApply.index', 'url' => 'customer/customerApply/index', 'name' => '开户申请'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'todo', 'name' => '待审'], 21 | ['value' => 'end', 'name' => '已审'], 22 | ['value' => 'divider'], 23 | ['value' => 'day', 'name' => '今日创建'], 24 | ['value' => 'week', 'name' => '本周创建'], 25 | ['value' => 'month', 'name' => '本月创建'], 26 | ] 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerClass.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'customerClass.index', 'url' => 'customer/customerClass/index', 'name' => '客户分类'], 13 | ] 14 | ]; 15 | 16 | public function scopeDialog($q, $value) 17 | { 18 | return $q->whereIn('id', $value) 19 | ->pluck('name', 'id'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerComplaint.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'complaint.index', 'url' => 'customer/complaint/index', 'name' => '投诉中心'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerPrice.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'price.index', 'url' => 'customer/price/index', 'name' => '客户销售价格'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerRegion.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'region.index', 'url' => 'customer/region/index', 'name' => '销售组'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerRegionTask.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'regionTask.index', 'url' => 'customer/regionTask/index', 'name' => '区域任务'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerTask.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'task.index', 'url' => 'customer/task/index', 'name' => '客户任务'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'enabled', 'name' => '启用'], 21 | ['value' => 'disabled', 'name' => '禁用'], 22 | ['value' => 'divider'], 23 | ['value' => 'day', 'name' => '今日创建'], 24 | ['value' => 'week', 'name' => '本周创建'], 25 | ['value' => 'month', 'name' => '本月创建'], 26 | ] 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerTax.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'tax.index', 'url' => 'customer/tax/index', 'name' => '发票单位'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/CustomerType.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'type.index', 'url' => 'customer/type/index', 'name' => '客户类型'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/Models/Region.php: -------------------------------------------------------------------------------- 1 | belongsTo('Gdoo\Customer\Region'); 17 | } 18 | 19 | public function scopeDialog($q, $value) 20 | { 21 | return $q->whereIn('id', $value) 22 | ->pluck('name', 'id'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/views/complaint/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Customer/views/contact/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{$form['btn']}} 6 |
7 |
8 |
9 | {{$form['tpl']}} 10 |
11 |
12 |
-------------------------------------------------------------------------------- /app/Gdoo/Customer/views/contact/show.blade.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 |
职位
10 |
11 |
12 | {{$header['tpl']}} 13 |
14 |
-------------------------------------------------------------------------------- /app/Gdoo/Customer/views/customerClass/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Customer/views/deliveryAddress/create.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{$form['tpl']}} 4 |
5 | -------------------------------------------------------------------------------- /app/Gdoo/Customer/views/deliveryAddress/show.blade.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 |
职位
10 |
11 |
12 | {{$header['tpl']}} 13 |
14 |
-------------------------------------------------------------------------------- /app/Gdoo/Customer/views/region/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Customer/views/type/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/File/Models/Attachment.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'user', 'url' => 'file/certificate/index', 'name' => '证照列表'], 13 | ] 14 | ]; 15 | 16 | static public $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/File/Models/File.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'user', 'url' => 'file/inspectReport/index', 'name' => '出厂检验列表'], 13 | ] 14 | ]; 15 | 16 | static public $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/File/views/file/edit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 15 | 16 | 17 |
资料上传
13 | @include('attachment/add') 14 |
18 |
19 | 20 |
-------------------------------------------------------------------------------- /app/Gdoo/File/views/file/folder.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 8 | 9 |
6 | 7 |
10 |
11 | 12 | 13 | 14 |
-------------------------------------------------------------------------------- /app/Gdoo/File/views/file/sharing.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 8 | 9 |
6 | {{App\Support\Dialog::search($row, 'id=receive_id&name=receive_name&multi=1')}} 7 |
10 |
11 | 12 |
-------------------------------------------------------------------------------- /app/Gdoo/Forum/Models/Forum.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 6 |
7 | @include('attachment/create') 8 |
9 | 10 |
11 | {{ueditor('content', $row['content'])}} 12 |
13 | 14 |
15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /app/Gdoo/Forum/views/query.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 主题 3 | 4 | 5 |
-------------------------------------------------------------------------------- /app/Gdoo/Index/Controllers/DemoController.php: -------------------------------------------------------------------------------- 1 | display(); 14 | } 15 | 16 | public function hello() 17 | { 18 | $abc = SendSms::dispatch([1], '我是测试', '我也是测试'); 19 | print_r($abc); 20 | } 21 | } -------------------------------------------------------------------------------- /app/Gdoo/Index/Models/Attachment.php: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function() { 3 | // 百度地图API功能 4 | var map = new BMap.Map("mapinfo"); 5 | var point = new BMap.Point({{$gets['lng']}},{{$gets['lat']}}); 6 | map.centerAndZoom(point, 15); 7 | // 创建标注 8 | var marker = new BMap.Marker(point); 9 | // 将标注添加到地图中 10 | map.addOverlay(marker); 11 | // 鼠标滑轮缩放 12 | map.enableScrollWheelZoom(); 13 | }); 14 | 15 |
地图加载中...
-------------------------------------------------------------------------------- /app/Gdoo/Index/views/api/sms.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 |
接收者{{$user['name']}}
内容 11 | 12 | 13 |
17 |
-------------------------------------------------------------------------------- /app/Gdoo/Index/views/index/support.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 7 | 10 | 11 | 12 | 15 | 18 | 19 | 20 | 23 | 26 | 27 | 28 | 31 | 34 | 35 |
5 | 软件版本 6 | 8 | {{$version}} 9 |
13 | 开发商 14 | 16 | 眉山市爱客网络科技有限公司 17 |
21 | 联系方式 22 | 24 | 15182223008(电话/微信) 25 |
29 | QQ交流群 30 | 32 | 79446405 33 |
36 |
37 | -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/Bill.php: -------------------------------------------------------------------------------- 1 | hasMany('Gdoo\Model\Models\Field'); 12 | } 13 | 14 | public function children() 15 | { 16 | return $this->hasMany('Gdoo\Model\Models\Model', 'parent_id'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/Field.php: -------------------------------------------------------------------------------- 1 | belongsTo(Model::class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/Model.php: -------------------------------------------------------------------------------- 1 | hasMany('Gdoo\Model\Models\Field'); 12 | } 13 | 14 | public function children() 15 | { 16 | return $this->hasMany('Gdoo\Model\Models\Model', 'parent_id'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/Module.php: -------------------------------------------------------------------------------- 1 | belongsTo('Gdoo\Model\Models\Model'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/RunLog.php: -------------------------------------------------------------------------------- 1 | belongsTo('Gdoo\Model\Models\Model'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Model/Models/Template.php: -------------------------------------------------------------------------------- 1 | '必填', 9 | 'numeric' => '数字', 10 | 'numeric_than:0' => '数字大于0', 11 | 'alpha' => '字母', 12 | 'date' => '日期', 13 | 'alpha_num' => '数字+字母', 14 | 'email' => '邮箱', 15 | 'active_url' => '链接', 16 | 'unique' => '唯一', 17 | 'regex:/^[0-9]{5,20}$/' => 'QQ', 18 | 'regex:/^(1)[0-9]{10}$/' => '手机', 19 | 'regex:/^[0-9-]{6,13}$/' => '电话', 20 | 'regex:/^[0-9]{6}$/' => '邮编', 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Hooks/CancelHook.php: -------------------------------------------------------------------------------- 1 | leftJoin('customer_order_type as cot', 'cot.id', '=', 'customer_order_data.type_id') 12 | ->orderBy('cot.sort', 'asc') 13 | ->orderBy('product_id_product.code', 'asc') 14 | ->orderBy('customer_order_data.id', 'asc'); 15 | 16 | $params['q'] = $q; 17 | return $params; 18 | } 19 | 20 | public function onAfterForm($arguments) { 21 | return $arguments; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/CancelOrderData.php: -------------------------------------------------------------------------------- 1 | hasMany('Gdoo\Order\Models\CancelOrderData'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/CustomerOrderData.php: -------------------------------------------------------------------------------- 1 | belongsTo('Gdoo\Product\Models\Product'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/CustomerOrderType.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'type.index', 'url' => 'order/type/index', 'name' => '订单类型'], 13 | ] 14 | ]; 15 | 16 | public function scopeDialog($q, $value) 17 | { 18 | return $q->whereIn('id', $value)->pluck('name', 'id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/Logistics.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'logistics.index', 'url' => 'order/logistics/index', 'name' => '物流公司'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/OrderTransport.php: -------------------------------------------------------------------------------- 1 | hasMany('Gdoo\Order\Models\OrderData', 'order_id', 'order_id'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Order/Models/SampleApplyData.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
> 4 |
5 | {{$form['btn']}} 6 |
7 |
8 |
9 |
10 | {{$form['tpl']}} 11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /app/Gdoo/Order/views/order/deliveryEdit.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
运费付款方式
5 |
6 |
7 | 8 |
9 |
-------------------------------------------------------------------------------- /app/Gdoo/Order/views/order/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Order/views/report/promotion.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | @foreach($promotions as $key => $value) 19 | 20 | @foreach($value as $k => $v) 21 | 22 | @endforeach 23 | 24 | @endforeach 25 | 26 |
步骤开始时间结束时间促销对象促销目标促销类别促销单品促销方法我司支持方式兑现凭据预估费用实际兑现费用
{{$v}}
27 | 28 |
-------------------------------------------------------------------------------- /app/Gdoo/Order/views/sampleApply/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Order/views/type/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Produce/Hooks/PlanDataHook.php: -------------------------------------------------------------------------------- 1 | orderBy('product_id_product.code', 'asc'); 10 | $params['q'] = $q; 11 | return $params; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Gdoo/Produce/Models/Material.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'material.index', 'url' => 'produce/material/index', 'name' => '原辅料档案'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/Produce/Models/Plan.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'plan.index', 'url' => 'produce/plan/index', 'name' => '生产计划单'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | } 27 | -------------------------------------------------------------------------------- /app/Gdoo/Product/Hooks/CategoryHook.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'unit.index', 'url' => 'product/unit/index', 'name' => '计量单位'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/Product/views/category/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Product/views/product/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{$form['btn']}} 6 |
7 |
8 |
9 | {{$form['tpl']}} 10 |
11 |
12 |
-------------------------------------------------------------------------------- /app/Gdoo/Product/views/unit/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Project/Models/Log.php: -------------------------------------------------------------------------------- 1 | 0, 'name' => '进行中', 'color' => 'info'], 11 | ['id' => 1, 'name' => '已结束', 'color' => 'success'], 12 | ]; 13 | 14 | public function tasks() 15 | { 16 | return $this->hasMany('Gdoo\Project\Models\Task'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Gdoo/Project/Models/Task.php: -------------------------------------------------------------------------------- 1 | belongsTo('Gdoo\Project\Models\Project'); 12 | } 13 | 14 | public function users() 15 | { 16 | return $this->belongsToMany('Gdoo\User\Models\User', 'project_task_user', 'task_id', 'user_id'); 17 | } 18 | 19 | public function syncUsers($gets) 20 | { 21 | $users = $gets[$gets['type'].'_users']; 22 | $users = $users == '' ? [] : explode(',', $users); 23 | $this->users()->sync($users); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Gdoo/Project/views/comment/add.blade.php: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 | 7 | 8 | 11 | 12 | 13 | 16 | 17 |
9 | 10 |
14 | @include('attachment/create') 15 |
18 |
19 | 20 | 21 |
-------------------------------------------------------------------------------- /app/Gdoo/Project/views/comment/edit.blade.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 |
7 | 8 | 9 | 12 | 13 | 14 | 17 | 18 |
10 | 11 |
15 | @include('attachment/create') 16 |
19 |
20 | 21 | 22 |
-------------------------------------------------------------------------------- /app/Gdoo/Project/views/project/query.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | @if(isset($access['add'])) 4 | 添加项目 5 | @endif 6 | 7 | @include('searchForm') 8 | 9 |
10 | 11 | -------------------------------------------------------------------------------- /app/Gdoo/Purchase/Models/Order.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'order.index', 'url' => 'purchase/order/index', 'name' => '采购订单'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | 27 | 28 | } 29 | -------------------------------------------------------------------------------- /app/Gdoo/Purchase/views/order/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{$form['btn']}} 6 |
7 |
8 |
9 | {{$form['tpl']}} 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /app/Gdoo/Purchase/views/supplier/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Stock/Hooks/DeliveryDataHook.php: -------------------------------------------------------------------------------- 1 | leftJoin('customer_order_type as cot', 'cot.id', '=', 'stock_delivery_data.type_id') 12 | ->orderBy('cot.sort', 'asc') 13 | ->orderBy('product_id_product.code', 'asc') 14 | ->orderBy('stock_delivery_data.id', 'asc'); 15 | 16 | $params['q'] = $q; 17 | return $params; 18 | } 19 | 20 | public function onAfterForm($arguments) { 21 | return $arguments; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/Hooks/Record10DataHook.php: -------------------------------------------------------------------------------- 1 | orderBy('stock_record10_data.batch_sn', 'asc') 12 | ->orderBy('product_id_product.code', 'asc'); 13 | 14 | $params['q'] = $q; 15 | return $params; 16 | } 17 | 18 | public function onAfterForm($arguments) { 19 | return $arguments; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/Models/StockCategory.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'category', 'url' => 'stock/category/index', 'name' => '库存类别'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'enabled', 'name' => '启用'], 21 | ['value' => 'disabled', 'name' => '禁用'], 22 | ['value' => 'divider'], 23 | ['value' => 'day', 'name' => '今日创建'], 24 | ['value' => 'week', 'name' => '本周创建'], 25 | ['value' => 'month', 'name' => '本月创建'], 26 | ] 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/Models/StockType.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'type', 'url' => 'stock/type/index', 'name' => '销售类型'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'enabled', 'name' => '启用'], 21 | ['value' => 'disabled', 'name' => '禁用'], 22 | ['value' => 'divider'], 23 | ['value' => 'day', 'name' => '今日创建'], 24 | ['value' => 'week', 'name' => '本周创建'], 25 | ['value' => 'month', 'name' => '本月创建'], 26 | ] 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/Models/Warehouse.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'stock', 'url' => 'stock/warehouse/index', 'name' => '仓库档案'], 13 | ] 14 | ]; 15 | 16 | public static $bys = [ 17 | 'name' => 'by', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'divider'], 21 | ['value' => 'day', 'name' => '今日创建'], 22 | ['value' => 'week', 'name' => '本周创建'], 23 | ['value' => 'month', 'name' => '本月创建'], 24 | ] 25 | ]; 26 | 27 | public function user() 28 | { 29 | return $this->belongsTo('Gdoo\User\Models\User'); 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/Models/WarehouseLocation.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'location', 'url' => 'stock/location/index', 'name' => '仓库货位'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/allocation/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/cancel/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/category/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Stock/views/delivery/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/direct/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/location/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Stock/views/record01/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/record08/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/record09/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/record10/print.blade.php: -------------------------------------------------------------------------------- 1 | 25 | 26 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/record11/print.blade.php: -------------------------------------------------------------------------------- 1 | {{$form['tpl']}} -------------------------------------------------------------------------------- /app/Gdoo/Stock/views/type/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Stock/views/warehouse/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/System/Models/Cron.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'region', 'url' => 'system/region/index', 'name' => '城市档案'], 13 | ] 14 | ]; 15 | 16 | public function scopeDialog($q, $value) 17 | { 18 | return $q->whereIn('id', $value)->pluck('name', 'id'); 19 | } 20 | } -------------------------------------------------------------------------------- /app/Gdoo/System/Models/Setting.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 |
6 | 7 |
10 | -------------------------------------------------------------------------------- /app/Gdoo/System/views/media/folder.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | 6 | 7 |
8 |
9 |
-------------------------------------------------------------------------------- /app/Gdoo/System/views/region/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/System/views/sms/test.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 7 | 8 | 9 | 12 | 13 |
5 | 6 |
10 | 11 |
14 |
15 | -------------------------------------------------------------------------------- /app/Gdoo/User/Hooks/DepartmentHook.php: -------------------------------------------------------------------------------- 1 | 'by', 11 | 'items' => [ 12 | ['value' => '', 'name' => '全部'], 13 | ['value' => 'divider'], 14 | ['value' => 'day', 'name' => '今日创建'], 15 | ['value' => 'week', 'name' => '本周创建'], 16 | ['value' => 'month', 'name' => '本月创建'], 17 | ] 18 | ]; 19 | 20 | public function users() 21 | { 22 | return $this->hasMany(User::class); 23 | } 24 | 25 | public function scopeDialog($q, $value) 26 | { 27 | return $q->whereIn('id', $value) 28 | ->pluck('name', 'id'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Gdoo/User/Models/Message.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'message', 'url' => 'user/message/index', 'name' => '通知提醒'], 13 | ] 14 | ]; 15 | 16 | static public $bys = [ 17 | 'name' => 'status', 18 | 'items' => [ 19 | ['value' => '', 'name' => '全部'], 20 | ['value' => 'unread', 'name' => '未读'], 21 | ['value' => 'read', 'name' => '已读'], 22 | ] 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /app/Gdoo/User/Models/Role.php: -------------------------------------------------------------------------------- 1 | whereIn('id', $value) 12 | ->pluck('name', 'id'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/Gdoo/User/Models/UserAsset.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'group.index', 'url' => 'user/group/index', 'name' => '用户组列表'], 13 | ] 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Gdoo/User/Models/UserPost.php: -------------------------------------------------------------------------------- 1 | 'tab', 11 | 'items' => [ 12 | ['value' => 'post.index', 'url' => 'user/post/index', 'name' => '职位列表'], 13 | ] 14 | ]; 15 | 16 | public function scopeDialog($q, $value) 17 | { 18 | return $q->whereIn('id', $value) 19 | ->pluck('name', 'id'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Gdoo/User/Models/UserWidget.php: -------------------------------------------------------------------------------- 1 | 2 | {{$form['tpl']}} 3 | -------------------------------------------------------------------------------- /app/Gdoo/User/views/group/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/User/views/message/show.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 来自 : {{get_user($row['created_id'], 'name')}}  创建时间 : @datetime($row['created_at']) 5 | 6 |
7 |
8 | {{$row['content']}} 9 |
10 |
-------------------------------------------------------------------------------- /app/Gdoo/User/views/post/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/User/views/role/create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{$form['tpl']}} 3 |
-------------------------------------------------------------------------------- /app/Gdoo/Wap/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | "Wap", 4 | "version" => "1.0", 5 | "description" => "Wap", 6 | "controllers" => [] 7 | ]; 8 | -------------------------------------------------------------------------------- /app/Gdoo/Wechat/Models/Config.php: -------------------------------------------------------------------------------- 1 | 'tab', 7 | 'items' => [ 8 | ['value' => 'config.config', 'url' => 'wechat/config/config', 'name' => '微信配置'], 9 | ['value' => 'config.menu', 'url' => 'wechat/config/menu', 'name' => '微信菜单'], 10 | ] 11 | ]; 12 | } 13 | -------------------------------------------------------------------------------- /app/Gdoo/Wechat/Models/WechatUser.php: -------------------------------------------------------------------------------- 1 | "微信管理", 4 | "version" => "1.0", 5 | "description" => "微信管理。", 6 | "controllers" => [ 7 | "config" => [ 8 | "name" => "微信管理", 9 | "actions" => [ 10 | "menu" => [ 11 | "name" => "菜单", 12 | ], 13 | "config" => [ 14 | "name" => "配置", 15 | ], 16 | ] 17 | ] 18 | ] 19 | ]; 20 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | setEncodingOptions(JSON_UNESCAPED_UNICODE); 15 | } 16 | return $response; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | check()) { 26 | return redirect(RouteServiceProvider::HOME); 27 | } 28 | } 29 | 30 | return $next($request); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | getQueryGrammar(), 18 | $this->getPostProcessor() 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Illuminate/View/Compilers/BladeCompiler.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Support/EventDispatcher.php: -------------------------------------------------------------------------------- 1 | isPropagationStopped()) { 12 | break; 13 | } 14 | $arguments = \call_user_func($listener, $event->getArguments(), $eventName, $this); 15 | $event->setArguments($arguments); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /app/Support/Hook.php: -------------------------------------------------------------------------------- 1 | addListener($tag.'.'.$method, [$object, $method]); 13 | } 14 | unset($object); 15 | } 16 | 17 | public static function fire($tag, $data = []) 18 | { 19 | $event = new GenericEvent(); 20 | $event->setArguments($data); 21 | $event = app('dispatcher')->dispatch($event, $tag); 22 | return $event->getArguments(); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /app/gdoo.php: -------------------------------------------------------------------------------- 1 | with('title', 'Gdoo'); 9 | $view->with('powered', 'Powered By Gdoo'); 10 | $view->with('version', 'Gdoo 开源版 '.$shared['version']); 11 | }); 12 | 13 | /* 14 | * 判断是否为empty 15 | */ 16 | function not_empty($data) 17 | { 18 | return !empty($data); 19 | } 20 | 21 | /* 22 | * 主动抛出异常 23 | */ 24 | function abort_error($message, $code = 200) 25 | { 26 | throw new App\Exceptions\AbortException($message, $code); 27 | } -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production" 11 | }, 12 | "devDependencies": { 13 | "@vue/compiler-sfc": "^3.0.5", 14 | "axios": "^0.21", 15 | "cross-env": "^7.0", 16 | "laravel-mix": "^6.0.6", 17 | "lodash": "^4.17.19", 18 | "postcss": "8.1.14", 19 | "vue-loader": "16.1.0" 20 | }, 21 | "dependencies": { 22 | "vue": "^3.0.5", 23 | "vue2-datepicker": "^3.9.0", 24 | "vuedraggable": "^4.0.1" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/assets/css/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/css/images/index.png -------------------------------------------------------------------------------- /public/assets/css/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/css/images/login_bg.jpg -------------------------------------------------------------------------------- /public/assets/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/css/images/logo.png -------------------------------------------------------------------------------- /public/assets/css/images/mobile_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/css/images/mobile_foot.png -------------------------------------------------------------------------------- /public/assets/css/images/mobile_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/css/images/mobile_head.png -------------------------------------------------------------------------------- /public/assets/css/wechat/icon/icon.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'iconfont'; /* project id 365339 */ 3 | src: url('//at.alicdn.com/t/font_365339_h9gao8ww296enrk9.eot'); 4 | src: url('//at.alicdn.com/t/font_365339_h9gao8ww296enrk9.eot?#iefix') format('embedded-opentype'), 5 | url('//at.alicdn.com/t/font_365339_h9gao8ww296enrk9.woff') format('woff'), 6 | url('//at.alicdn.com/t/font_365339_h9gao8ww296enrk9.ttf') format('truetype'), 7 | url('//at.alicdn.com/t/font_365339_h9gao8ww296enrk9.svg#iconfont') format('svg'); 8 | } 9 | .rha-icon{ 10 | font-family:"iconfont" !important; 11 | font-size:16px;font-style:normal; 12 | -webkit-font-smoothing: antialiased; 13 | -webkit-text-stroke-width: 0.2px; 14 | -moz-osx-font-smoothing: grayscale; 15 | margin-right: 3px; 16 | 17 | } -------------------------------------------------------------------------------- /public/assets/dist/bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Lodash 4 | * Copyright OpenJS Foundation and other contributors 5 | * Released under MIT license 6 | * Based on Underscore.js 1.8.3 7 | * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors 8 | */ 9 | 10 | /**! 11 | * Sortable 1.10.2 12 | * @author RubaXa 13 | * @author owenm 14 | * @license MIT 15 | */ 16 | -------------------------------------------------------------------------------- /public/assets/dist/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/dist/indicator.gif -------------------------------------------------------------------------------- /public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /public/assets/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/milkcocoa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/milkcocoa.ttf -------------------------------------------------------------------------------- /public/assets/fonts/simsun.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/fonts/simsun.ttf -------------------------------------------------------------------------------- /public/assets/images/a0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/a0.jpg -------------------------------------------------------------------------------- /public/assets/images/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/a1.jpg -------------------------------------------------------------------------------- /public/assets/images/android_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/android_download.png -------------------------------------------------------------------------------- /public/assets/images/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/assets/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/bg1.jpg -------------------------------------------------------------------------------- /public/assets/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/bg2.jpg -------------------------------------------------------------------------------- /public/assets/images/colbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/colbg.jpg -------------------------------------------------------------------------------- /public/assets/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/combo_arrow.png -------------------------------------------------------------------------------- /public/assets/images/default_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/default_img.png -------------------------------------------------------------------------------- /public/assets/images/form_sheetbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/form_sheetbg.png -------------------------------------------------------------------------------- /public/assets/images/forum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/forum.gif -------------------------------------------------------------------------------- /public/assets/images/forum2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/forum2.gif -------------------------------------------------------------------------------- /public/assets/images/graphbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/graphbg.gif -------------------------------------------------------------------------------- /public/assets/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/header.png -------------------------------------------------------------------------------- /public/assets/images/icon-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/icon-circle.png -------------------------------------------------------------------------------- /public/assets/images/icon-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/icon-list.png -------------------------------------------------------------------------------- /public/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/icons.png -------------------------------------------------------------------------------- /public/assets/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/indicator.gif -------------------------------------------------------------------------------- /public/assets/images/input_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/input_date.png -------------------------------------------------------------------------------- /public/assets/images/ios_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/ios_download.png -------------------------------------------------------------------------------- /public/assets/images/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/jian.png -------------------------------------------------------------------------------- /public/assets/images/list_float_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/list_float_style.png -------------------------------------------------------------------------------- /public/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/loading.gif -------------------------------------------------------------------------------- /public/assets/images/login-bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/login-bg1.jpg -------------------------------------------------------------------------------- /public/assets/images/login-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/login-bg2.jpg -------------------------------------------------------------------------------- /public/assets/images/nopic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/nopic.jpg -------------------------------------------------------------------------------- /public/assets/images/side-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/side-nav.png -------------------------------------------------------------------------------- /public/assets/images/side-nav.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/side-nav.psd -------------------------------------------------------------------------------- /public/assets/images/wf_canvas_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/images/wf_canvas_bg.png -------------------------------------------------------------------------------- /public/assets/images/white-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/datepicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/datepicker/skin/default/img.gif -------------------------------------------------------------------------------- /public/assets/vendor/datepicker/skin/default/img.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/datepicker/skin/default/img.psd -------------------------------------------------------------------------------- /public/assets/vendor/element-plus/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/element-plus/fonts/element-icons.ttf -------------------------------------------------------------------------------- /public/assets/vendor/element-plus/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/element-plus/fonts/element-icons.woff -------------------------------------------------------------------------------- /public/assets/vendor/fancytree/skin-win8/icons-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/fancytree/skin-win8/icons-rtl.gif -------------------------------------------------------------------------------- /public/assets/vendor/fancytree/skin-win8/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/fancytree/skin-win8/icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/fancytree/skin-win8/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/fancytree/skin-win8/loading.gif -------------------------------------------------------------------------------- /public/assets/vendor/fancytree/skin-win8/vline-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/fancytree/skin-win8/vline-rtl.gif -------------------------------------------------------------------------------- /public/assets/vendor/fancytree/skin-win8/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/fancytree/skin-win8/vline.gif -------------------------------------------------------------------------------- /public/assets/vendor/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /public/assets/vendor/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layer/theme/default/icon.png -------------------------------------------------------------------------------- /public/assets/vendor/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /public/assets/vendor/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /public/assets/vendor/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /public/assets/vendor/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /public/assets/vendor/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /public/assets/vendor/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /public/assets/vendor/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /public/assets/vendor/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /public/assets/vendor/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/assets/vendor/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/assets/vendor/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/layui/font/iconfont.woff -------------------------------------------------------------------------------- /public/assets/vendor/select2/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /public/assets/vendor/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/assets/vendor/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-pick { 2 | position: relative; 3 | display: inline-block; 4 | cursor: pointer; 5 | background: #00b7ee; 6 | padding: 5px 15px; 7 | color: #fff; 8 | text-align: center; 9 | border-radius: 3px; 10 | overflow: hidden; 11 | } 12 | .webuploader-pick-hover { 13 | background: #00a2d4; 14 | } 15 | 16 | .webuploader-dnd { 17 | width: 400px; 18 | height: 400px; 19 | border: 3px solid #ddd; 20 | } 21 | 22 | .webuploader-dnd-over { 23 | border-style: dashed; 24 | } 25 | 26 | .webuploader-container { 27 | position: relative; 28 | } -------------------------------------------------------------------------------- /public/assets/vendor/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/Uploader.swf -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/bg.png -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/icons.png -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/image.png -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/progress.png -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/assets/vendor/webuploader/success.png -------------------------------------------------------------------------------- /public/assets/vendor/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-container { 2 | position: relative; 3 | } 4 | .webuploader-element-invisible { 5 | position: absolute !important; 6 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 7 | clip: rect(1px,1px,1px,1px); 8 | } 9 | .webuploader-pick { 10 | position: relative; 11 | display: inline-block; 12 | cursor: pointer; 13 | background: #00b7ee; 14 | padding: 10px 15px; 15 | color: #fff; 16 | text-align: center; 17 | border-radius: 3px; 18 | overflow: hidden; 19 | } 20 | .webuploader-pick-hover { 21 | background: #00a2d4; 22 | } 23 | 24 | .webuploader-pick-disable { 25 | opacity: 0.6; 26 | pointer-events:none; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/public/favicon.ico -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/assets/dist/bundle.min.js": "/assets/dist/bundle.min.js?id=8827cca7ae1434242278", 3 | "/assets/dist/vendor.min.js": "/assets/dist/vendor.min.js?id=638ba5e4070df46155bb", 4 | "/assets/dist/gdoo.min.js": "/assets/dist/gdoo.min.js?id=693c99fd3bce7e67bc8e", 5 | "/assets/dist/index.min.js": "/assets/dist/index.min.js?id=e68deaa21814b7ec0d1c", 6 | "/assets/dist/vendor.min.css": "/assets/dist/vendor.min.css?id=a3c096ee7a6fe8d8eb83", 7 | "/assets/dist/gdoo.min.css": "/assets/dist/gdoo.min.css?id=b892b527a7b042089ee8", 8 | "/assets/dist/index.min.css": "/assets/dist/index.min.css?id=be8d1a11c762d6c64ba1" 9 | } 10 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawind/gdoo/de7f231bb00b21a1f0ac43d61323c6acb4de45f3/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | const Vue = require('vue'); 4 | window.Vue = Vue; 5 | 6 | // 第三方全局模块 7 | import draggable from 'vuedraggable'; 8 | draggable.name = 'gdoo-draggable'; 9 | window.gdooDraggable = draggable; 10 | 11 | import DatePicker from 'vue2-datepicker'; 12 | import 'vue2-datepicker/index.css'; 13 | 14 | // 自定义全局模块 15 | import gdooFrameHeader from './components/gdooFrameHeader.vue'; 16 | import gdooFormDesigner from './components/gdooFormDesigner.vue'; 17 | import gdooGridHeader from './components/gdooGridHeader.vue'; 18 | window.gdooFrameHeader = gdooFrameHeader; 19 | window.gdooFormDesigner = gdooFormDesigner; 20 | window.gdooGridHeader = gdooGridHeader; -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- 1 | '用户名或密码错误。', 17 | 'throttle' => '您的尝试登录次数过多. 请 :seconds 秒后再试。', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/zh-CN/pagination.php: -------------------------------------------------------------------------------- 1 | '« 上一页', 17 | 'next' => '下一页 »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/zh-CN/passwords.php: -------------------------------------------------------------------------------- 1 | '密码至少是六位字符并且匹配。', 17 | 'reset' => '密码重置成功!', 18 | 'sent' => '密码重置邮件已发送!', 19 | 'token' => '密码重置令牌无效。', 20 | 'user' => '找不到该邮箱对应的用户。', 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/views/emails/auth/reminder.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Password Reset

8 | 9 |
10 | To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}. 11 |
12 | 13 | -------------------------------------------------------------------------------- /resources/views/emails/notification.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

{{$subject}}

8 |
9 | {{$content}} 10 |
11 | 12 | -------------------------------------------------------------------------------- /resources/views/emails/password.blade.php: -------------------------------------------------------------------------------- 1 | Click here to reset your password: {{ url('password/reset/'.$token) }} 2 | -------------------------------------------------------------------------------- /resources/views/emails/welcome.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

欢迎您!

8 | 9 |
10 | 感谢您的到来! 11 |
12 | 13 | -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo isset($title) ? $title : ''; ?> 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 |

14 |

15 | 16 |
17 | 返回上一页 18 | 返回首页 19 |
20 |
21 | © {{date('Y')}} 22 |
23 |
24 | 25 | -------------------------------------------------------------------------------- /resources/views/layouts/import.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 |
{{$tips}}
10 |
11 | 12 | -------------------------------------------------------------------------------- /resources/views/layouts/map.blade.php: -------------------------------------------------------------------------------- 1 | @if(Request::secure()) 2 | 3 | @else 4 | 5 | @endif -------------------------------------------------------------------------------- /resources/views/layouts/print_html.blade.php: -------------------------------------------------------------------------------- 1 | @include('layouts/print') -------------------------------------------------------------------------------- /resources/views/model/abort.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 |
7 |
-------------------------------------------------------------------------------- /resources/views/model/recall.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 |
8 |
-------------------------------------------------------------------------------- /resources/views/tabs.blade.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 18 |
-------------------------------------------------------------------------------- /resources/views/tabs1.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 |
-------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | --------------------------------------------------------------------------------