├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.en.md ├── README.md ├── babel.config.js ├── bin ├── build.bat ├── package.bat └── run-web.bat ├── package.json ├── public ├── favicon.ico ├── html │ └── ie.html ├── index.html └── robots.txt ├── src ├── App.vue ├── api │ ├── appFront │ │ └── banner.js │ ├── common │ │ └── common.js │ ├── login.js │ ├── menu.js │ ├── monitor │ │ ├── job.js │ │ └── jobLog.js │ ├── system │ │ ├── config.js │ │ ├── dict │ │ │ ├── data.js │ │ │ └── type.js │ │ ├── menu.js │ │ ├── permisstion │ │ │ └── permission.js │ │ ├── role.js │ │ └── user.js │ └── tool │ │ └── gen.js ├── assets │ ├── 401_images │ │ └── 401.gif │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── Attachment.svg │ │ │ ├── Bar Graph.svg │ │ │ ├── Book.svg │ │ │ ├── Bookmark.svg │ │ │ ├── Briefcase.svg │ │ │ ├── Browser.svg │ │ │ ├── Calendar.svg │ │ │ ├── Camera.svg │ │ │ ├── Cancel.svg │ │ │ ├── Clock.svg │ │ │ ├── Comment Lines.svg │ │ │ ├── Comment.svg │ │ │ ├── Computer.svg │ │ │ ├── Controls.svg │ │ │ ├── Conversation.svg │ │ │ ├── Create New.svg │ │ │ ├── Credit Card.svg │ │ │ ├── Crosshair.svg │ │ │ ├── Diary.svg │ │ │ ├── Document.svg │ │ │ ├── Down Arrow.svg │ │ │ ├── Email.svg │ │ │ ├── Folder.svg │ │ │ ├── Heart.svg │ │ │ ├── Home.svg │ │ │ ├── Inbox.svg │ │ │ ├── Layers.svg │ │ │ ├── Left Arrow.svg │ │ │ ├── Link.svg │ │ │ ├── List.svg │ │ │ ├── Location Marker.svg │ │ │ ├── Location.svg │ │ │ ├── Map.svg │ │ │ ├── Medal.svg │ │ │ ├── Menu.svg │ │ │ ├── Microphone.svg │ │ │ ├── Minus.svg │ │ │ ├── MoreDetails3.svg │ │ │ ├── MoreDetails4.svg │ │ │ ├── Music.svg │ │ │ ├── No Volume.svg │ │ │ ├── Notification.svg │ │ │ ├── Padlock.svg │ │ │ ├── Phone.svg │ │ │ ├── Photo.svg │ │ │ ├── Pie Chart.svg │ │ │ ├── Pin.svg │ │ │ ├── Plus.svg │ │ │ ├── Printer.svg │ │ │ ├── Profile.svg │ │ │ ├── Rearrange.svg │ │ │ ├── Refresh.svg │ │ │ ├── Reply.svg │ │ │ ├── Right Arrow.svg │ │ │ ├── Save.svg │ │ │ ├── Search.svg │ │ │ ├── Settings.svg │ │ │ ├── Share.svg │ │ │ ├── Shopping.svg │ │ │ ├── Signal.svg │ │ │ ├── Signals.svg │ │ │ ├── Star.svg │ │ │ ├── TC.svg │ │ │ ├── Tablet.svg │ │ │ ├── Tag.svg │ │ │ ├── Tick.svg │ │ │ ├── Toggle.svg │ │ │ ├── Trash.svg │ │ │ ├── Up Arrow.svg │ │ │ ├── User.svg │ │ │ ├── Users.svg │ │ │ ├── Video Camera.svg │ │ │ ├── Video.svg │ │ │ ├── View.svg │ │ │ ├── Volume.svg │ │ │ ├── Warning.svg │ │ │ └── orward.svg │ │ └── svgo.yml │ ├── images │ │ ├── dark.svg │ │ ├── image-fail.png │ │ ├── light.svg │ │ ├── login-background.jpg │ │ └── profile.jpg │ ├── logo │ │ ├── logo.png │ │ ├── xingji-logo1.png │ │ └── xingji-logo2.png │ └── styles │ │ ├── btn.scss │ │ ├── element-ui.scss │ │ ├── element-variables.scss │ │ ├── elementUi2.15.6-them.css │ │ ├── index.scss │ │ ├── markdown-theme.css │ │ ├── mixin.scss │ │ ├── pace-theme.css │ │ ├── ruoyi.scss │ │ ├── sidebar.scss │ │ ├── svg.css │ │ ├── transition.scss │ │ └── variables.scss ├── common │ ├── constants │ │ ├── AccountStatus.js │ │ ├── DrawApiKey.js │ │ ├── DrawType.js │ │ ├── NoticeType.js │ │ ├── TaskStatus.js │ │ ├── core │ │ │ └── QueryCondition.js │ │ └── index.js │ └── crud │ │ ├── BaseRequest.js │ │ ├── crud.js │ │ └── crudRequest.js ├── components │ ├── Base │ │ ├── BaseForm │ │ │ └── BaseForm.vue │ │ ├── SearchForm │ │ │ └── SearchForm.vue │ │ └── Table │ │ │ └── BaseTable.vue │ ├── Breadcrumb │ │ └── index.vue │ ├── Crontab │ │ ├── day.vue │ │ ├── hour.vue │ │ ├── index.vue │ │ ├── min.vue │ │ ├── month.vue │ │ ├── result.vue │ │ ├── second.vue │ │ ├── week.vue │ │ └── year.vue │ ├── DictData │ │ └── index.js │ ├── DictTag │ │ └── index.vue │ ├── Editor │ │ └── index.vue │ ├── FileUpload │ │ └── index.vue │ ├── Hamburger │ │ └── index.vue │ ├── HeaderSearch │ │ └── index.vue │ ├── IconSelect │ │ ├── index.vue │ │ └── requireIcons.js │ ├── ImagePreview │ │ └── index.vue │ ├── ImageUpload │ │ └── index.vue │ ├── MarkdownView │ │ └── index.vue │ ├── Pagination │ │ └── index.vue │ ├── PanThumb │ │ └── index.vue │ ├── ParentView │ │ └── index.vue │ ├── RightPanel │ │ └── index.vue │ ├── RightToolbar │ │ └── index.vue │ ├── Screenfull │ │ └── index.vue │ ├── SizeSelect │ │ └── index.vue │ ├── SvgIcon │ │ └── index.vue │ ├── ThemePicker │ │ └── index.vue │ ├── TopNav │ │ └── index.vue │ └── iFrame │ │ └── index.vue ├── directive │ ├── dialog │ │ ├── drag.js │ │ ├── dragHeight.js │ │ └── dragWidth.js │ ├── index.js │ ├── module │ │ └── clipboard.js │ └── permission │ │ └── hasPermi.js ├── layout │ ├── components │ │ ├── AppMain.vue │ │ ├── InnerLink │ │ │ └── index.vue │ │ ├── Navbar.vue │ │ ├── Settings │ │ │ └── index.vue │ │ ├── Sidebar │ │ │ ├── FixiOSBug.js │ │ │ ├── Item.vue │ │ │ ├── Link.vue │ │ │ ├── Logo.vue │ │ │ ├── SidebarItem.vue │ │ │ └── index.vue │ │ ├── TagsView │ │ │ ├── ScrollPane.vue │ │ │ └── index.vue │ │ └── index.js │ ├── index.vue │ └── mixin │ │ └── ResizeHandler.js ├── main.js ├── permission.js ├── plugins │ ├── auth.js │ ├── cache.js │ ├── download.js │ ├── index.js │ ├── modal.js │ └── tab.js ├── router │ └── index.js ├── settings.js ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── app.js │ │ ├── permission.js │ │ ├── settings.js │ │ ├── tagsView.js │ │ ├── user.js │ │ └── webConfig.js ├── utils │ ├── auth.js │ ├── dict │ │ ├── Dict.js │ │ ├── DictConverter.js │ │ ├── DictData.js │ │ ├── DictMeta.js │ │ ├── DictOptions.js │ │ └── index.js │ ├── errorCode.js │ ├── generator │ │ ├── config.js │ │ ├── css.js │ │ ├── drawingDefault.js │ │ ├── html.js │ │ ├── icon.json │ │ ├── js.js │ │ └── render.js │ ├── index.js │ ├── jsencrypt.js │ ├── permission.js │ ├── request.js │ ├── rsaEncrypt.js │ ├── ruoyi.js │ ├── scroll-to.js │ └── validate.js └── views │ ├── appFront │ └── banner │ │ └── index.vue │ ├── business │ ├── chatSdk │ │ ├── api.js │ │ ├── chatKeys │ │ │ └── index.vue │ │ ├── chatModel │ │ │ └── index.vue │ │ ├── chatSdkHost │ │ │ └── index.vue │ │ ├── components │ │ │ └── ChatSdkForm.vue │ │ └── index.vue │ ├── domain │ │ ├── SaveOrUpdate.vue │ │ ├── api.js │ │ └── index.vue │ ├── noticeclient │ │ └── index.vue │ ├── session │ │ ├── drawRecord │ │ │ ├── api.js │ │ │ └── index.vue │ │ ├── sessionRecord │ │ │ ├── RecordDetail.vue │ │ │ ├── api.js │ │ │ └── index.vue │ │ └── taskDraw │ │ │ └── index.vue │ └── user │ │ ├── api.js │ │ └── index.vue │ ├── components │ └── icons │ │ ├── element-icons.js │ │ ├── index.vue │ │ └── svg-icons.js │ ├── dashboard │ ├── BarChart.vue │ ├── LineChart.vue │ ├── PanelGroup.vue │ ├── PieChart.vue │ ├── RaddarChart.vue │ └── mixins │ │ └── resize.js │ ├── error │ ├── 401.vue │ └── 404.vue │ ├── index.vue │ ├── index_1.vue │ ├── login.vue │ ├── monitor │ ├── job │ │ ├── index.vue │ │ └── log.vue │ ├── logininfor │ │ ├── api.js │ │ └── index.vue │ ├── online │ │ └── index.vue │ └── operlog │ │ ├── api.js │ │ └── index.vue │ ├── redirect.vue │ ├── register.vue │ ├── system │ ├── dict │ │ ├── api.js │ │ ├── data.vue │ │ └── index.vue │ ├── menu │ │ └── index.vue │ ├── openconfig │ │ ├── api.js │ │ └── index.vue │ ├── permission │ │ ├── AllocationModule.vue │ │ ├── ModuleAdd.vue │ │ ├── ModuleEdit.vue │ │ ├── api │ │ │ └── api.js │ │ └── index.vue │ ├── role │ │ ├── RolePermission.vue │ │ ├── api │ │ │ └── api.js │ │ ├── authUser.vue │ │ ├── index.vue │ │ └── selectUser.vue │ ├── user │ │ ├── api │ │ │ └── api.js │ │ ├── authRole.vue │ │ ├── components │ │ │ ├── ResetPassword.vue │ │ │ └── SaveOrUpdate.vue │ │ ├── index.vue │ │ └── profile │ │ │ ├── index.vue │ │ │ ├── resetPwd.vue │ │ │ ├── userAvatar.vue │ │ │ └── userInfo.vue │ └── webset │ │ ├── ChatConfigSetting.vue │ │ ├── DrawSetting.vue │ │ ├── FileConfig.vue │ │ ├── OpenaiSetting.vue │ │ ├── WebSetting.vue │ │ ├── api │ │ └── api.js │ │ ├── index.vue │ │ ├── midjourney │ │ ├── ApiParamConfig.vue │ │ ├── api.js │ │ ├── channel.vue │ │ └── index.vue │ │ └── minio │ │ └── minioConfig.vue │ └── tool │ ├── build │ ├── CodeTypeDialog.vue │ ├── DraggableItem.vue │ ├── IconsDialog.vue │ ├── RightPanel.vue │ ├── TreeNodeDialog.vue │ └── index.vue │ └── gen │ ├── basicInfoForm.vue │ ├── createTable.vue │ ├── editTable.vue │ ├── genInfoForm.vue │ ├── importTable.vue │ └── index.vue └── vue.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.env.production -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.env.staging -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/bin/build.bat -------------------------------------------------------------------------------- /bin/package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/bin/package.bat -------------------------------------------------------------------------------- /bin/run-web.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/bin/run-web.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/html/ie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/public/html/ie.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/appFront/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/appFront/banner.js -------------------------------------------------------------------------------- /src/api/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/common/common.js -------------------------------------------------------------------------------- /src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/login.js -------------------------------------------------------------------------------- /src/api/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/menu.js -------------------------------------------------------------------------------- /src/api/monitor/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/monitor/job.js -------------------------------------------------------------------------------- /src/api/monitor/jobLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/monitor/jobLog.js -------------------------------------------------------------------------------- /src/api/system/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/config.js -------------------------------------------------------------------------------- /src/api/system/dict/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/dict/data.js -------------------------------------------------------------------------------- /src/api/system/dict/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/dict/type.js -------------------------------------------------------------------------------- /src/api/system/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/menu.js -------------------------------------------------------------------------------- /src/api/system/permisstion/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/permisstion/permission.js -------------------------------------------------------------------------------- /src/api/system/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/role.js -------------------------------------------------------------------------------- /src/api/system/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/system/user.js -------------------------------------------------------------------------------- /src/api/tool/gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/api/tool/gen.js -------------------------------------------------------------------------------- /src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/404_images/404.png -------------------------------------------------------------------------------- /src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /src/assets/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/index.js -------------------------------------------------------------------------------- /src/assets/icons/svg/Attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Attachment.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Bar Graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Bar Graph.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Book.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Bookmark.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Briefcase.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Browser.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Camera.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Cancel.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Clock.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Comment Lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Comment Lines.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Comment.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Computer.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Controls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Controls.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Conversation.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Create New.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Create New.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Credit Card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Credit Card.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Crosshair.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Diary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Diary.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Document.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Down Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Down Arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Email.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Folder.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Heart.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Home.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Inbox.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Layers.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Left Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Left Arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Link.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/List.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/List.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Location Marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Location Marker.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Location.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Map.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Medal.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Menu.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Microphone.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Minus.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/MoreDetails3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/MoreDetails3.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/MoreDetails4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/MoreDetails4.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Music.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/No Volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/No Volume.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Notification.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Padlock.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Phone.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Photo.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Pie Chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Pie Chart.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Pin.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Plus.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Printer.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Profile.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Rearrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Rearrange.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Refresh.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Reply.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Right Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Right Arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Save.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Search.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Settings.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Share.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Shopping.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Signal.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Signals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Signals.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Star.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/TC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/TC.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Tablet.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Tag.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Tick.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Toggle.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Trash.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Up Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Up Arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/User.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/User.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Users.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Video Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Video Camera.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Video.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/View.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/View.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Volume.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/Warning.svg -------------------------------------------------------------------------------- /src/assets/icons/svg/orward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svg/orward.svg -------------------------------------------------------------------------------- /src/assets/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/icons/svgo.yml -------------------------------------------------------------------------------- /src/assets/images/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/images/dark.svg -------------------------------------------------------------------------------- /src/assets/images/image-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/images/image-fail.png -------------------------------------------------------------------------------- /src/assets/images/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/images/light.svg -------------------------------------------------------------------------------- /src/assets/images/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/images/login-background.jpg -------------------------------------------------------------------------------- /src/assets/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/images/profile.jpg -------------------------------------------------------------------------------- /src/assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/logo/logo.png -------------------------------------------------------------------------------- /src/assets/logo/xingji-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/logo/xingji-logo1.png -------------------------------------------------------------------------------- /src/assets/logo/xingji-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/logo/xingji-logo2.png -------------------------------------------------------------------------------- /src/assets/styles/btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/btn.scss -------------------------------------------------------------------------------- /src/assets/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/element-ui.scss -------------------------------------------------------------------------------- /src/assets/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/element-variables.scss -------------------------------------------------------------------------------- /src/assets/styles/elementUi2.15.6-them.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/elementUi2.15.6-them.css -------------------------------------------------------------------------------- /src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/index.scss -------------------------------------------------------------------------------- /src/assets/styles/markdown-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/markdown-theme.css -------------------------------------------------------------------------------- /src/assets/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/mixin.scss -------------------------------------------------------------------------------- /src/assets/styles/pace-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/pace-theme.css -------------------------------------------------------------------------------- /src/assets/styles/ruoyi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/ruoyi.scss -------------------------------------------------------------------------------- /src/assets/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/sidebar.scss -------------------------------------------------------------------------------- /src/assets/styles/svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/svg.css -------------------------------------------------------------------------------- /src/assets/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/transition.scss -------------------------------------------------------------------------------- /src/assets/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/assets/styles/variables.scss -------------------------------------------------------------------------------- /src/common/constants/AccountStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/AccountStatus.js -------------------------------------------------------------------------------- /src/common/constants/DrawApiKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/DrawApiKey.js -------------------------------------------------------------------------------- /src/common/constants/DrawType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/DrawType.js -------------------------------------------------------------------------------- /src/common/constants/NoticeType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/NoticeType.js -------------------------------------------------------------------------------- /src/common/constants/TaskStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/TaskStatus.js -------------------------------------------------------------------------------- /src/common/constants/core/QueryCondition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/core/QueryCondition.js -------------------------------------------------------------------------------- /src/common/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/constants/index.js -------------------------------------------------------------------------------- /src/common/crud/BaseRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/crud/BaseRequest.js -------------------------------------------------------------------------------- /src/common/crud/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/crud/crud.js -------------------------------------------------------------------------------- /src/common/crud/crudRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/common/crud/crudRequest.js -------------------------------------------------------------------------------- /src/components/Base/BaseForm/BaseForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Base/BaseForm/BaseForm.vue -------------------------------------------------------------------------------- /src/components/Base/SearchForm/SearchForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Base/SearchForm/SearchForm.vue -------------------------------------------------------------------------------- /src/components/Base/Table/BaseTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Base/Table/BaseTable.vue -------------------------------------------------------------------------------- /src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /src/components/Crontab/day.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/day.vue -------------------------------------------------------------------------------- /src/components/Crontab/hour.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/hour.vue -------------------------------------------------------------------------------- /src/components/Crontab/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/index.vue -------------------------------------------------------------------------------- /src/components/Crontab/min.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/min.vue -------------------------------------------------------------------------------- /src/components/Crontab/month.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/month.vue -------------------------------------------------------------------------------- /src/components/Crontab/result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/result.vue -------------------------------------------------------------------------------- /src/components/Crontab/second.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/second.vue -------------------------------------------------------------------------------- /src/components/Crontab/week.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/week.vue -------------------------------------------------------------------------------- /src/components/Crontab/year.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Crontab/year.vue -------------------------------------------------------------------------------- /src/components/DictData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/DictData/index.js -------------------------------------------------------------------------------- /src/components/DictTag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/DictTag/index.vue -------------------------------------------------------------------------------- /src/components/Editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Editor/index.vue -------------------------------------------------------------------------------- /src/components/FileUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/FileUpload/index.vue -------------------------------------------------------------------------------- /src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /src/components/HeaderSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/HeaderSearch/index.vue -------------------------------------------------------------------------------- /src/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/IconSelect/index.vue -------------------------------------------------------------------------------- /src/components/IconSelect/requireIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/IconSelect/requireIcons.js -------------------------------------------------------------------------------- /src/components/ImagePreview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/ImagePreview/index.vue -------------------------------------------------------------------------------- /src/components/ImageUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/ImageUpload/index.vue -------------------------------------------------------------------------------- /src/components/MarkdownView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/MarkdownView/index.vue -------------------------------------------------------------------------------- /src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /src/components/PanThumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/PanThumb/index.vue -------------------------------------------------------------------------------- /src/components/ParentView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/ParentView/index.vue -------------------------------------------------------------------------------- /src/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/RightPanel/index.vue -------------------------------------------------------------------------------- /src/components/RightToolbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/RightToolbar/index.vue -------------------------------------------------------------------------------- /src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /src/components/SizeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/SizeSelect/index.vue -------------------------------------------------------------------------------- /src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /src/components/ThemePicker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/ThemePicker/index.vue -------------------------------------------------------------------------------- /src/components/TopNav/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/TopNav/index.vue -------------------------------------------------------------------------------- /src/components/iFrame/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/components/iFrame/index.vue -------------------------------------------------------------------------------- /src/directive/dialog/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/dialog/drag.js -------------------------------------------------------------------------------- /src/directive/dialog/dragHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/dialog/dragHeight.js -------------------------------------------------------------------------------- /src/directive/dialog/dragWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/dialog/dragWidth.js -------------------------------------------------------------------------------- /src/directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/index.js -------------------------------------------------------------------------------- /src/directive/module/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/module/clipboard.js -------------------------------------------------------------------------------- /src/directive/permission/hasPermi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/directive/permission/hasPermi.js -------------------------------------------------------------------------------- /src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /src/layout/components/InnerLink/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/InnerLink/index.vue -------------------------------------------------------------------------------- /src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /src/layout/components/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Settings/index.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /src/layout/components/TagsView/ScrollPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/TagsView/ScrollPane.vue -------------------------------------------------------------------------------- /src/layout/components/TagsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/TagsView/index.vue -------------------------------------------------------------------------------- /src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/components/index.js -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/main.js -------------------------------------------------------------------------------- /src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/permission.js -------------------------------------------------------------------------------- /src/plugins/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/auth.js -------------------------------------------------------------------------------- /src/plugins/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/cache.js -------------------------------------------------------------------------------- /src/plugins/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/download.js -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/plugins/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/modal.js -------------------------------------------------------------------------------- /src/plugins/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/plugins/tab.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/app.js -------------------------------------------------------------------------------- /src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/permission.js -------------------------------------------------------------------------------- /src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/settings.js -------------------------------------------------------------------------------- /src/store/modules/tagsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/tagsView.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /src/store/modules/webConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/store/modules/webConfig.js -------------------------------------------------------------------------------- /src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/auth.js -------------------------------------------------------------------------------- /src/utils/dict/Dict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/Dict.js -------------------------------------------------------------------------------- /src/utils/dict/DictConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/DictConverter.js -------------------------------------------------------------------------------- /src/utils/dict/DictData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/DictData.js -------------------------------------------------------------------------------- /src/utils/dict/DictMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/DictMeta.js -------------------------------------------------------------------------------- /src/utils/dict/DictOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/DictOptions.js -------------------------------------------------------------------------------- /src/utils/dict/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/dict/index.js -------------------------------------------------------------------------------- /src/utils/errorCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/errorCode.js -------------------------------------------------------------------------------- /src/utils/generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/config.js -------------------------------------------------------------------------------- /src/utils/generator/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/css.js -------------------------------------------------------------------------------- /src/utils/generator/drawingDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/drawingDefault.js -------------------------------------------------------------------------------- /src/utils/generator/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/html.js -------------------------------------------------------------------------------- /src/utils/generator/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/icon.json -------------------------------------------------------------------------------- /src/utils/generator/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/js.js -------------------------------------------------------------------------------- /src/utils/generator/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/generator/render.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/jsencrypt.js -------------------------------------------------------------------------------- /src/utils/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/permission.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/rsaEncrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/rsaEncrypt.js -------------------------------------------------------------------------------- /src/utils/ruoyi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/ruoyi.js -------------------------------------------------------------------------------- /src/utils/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/scroll-to.js -------------------------------------------------------------------------------- /src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/utils/validate.js -------------------------------------------------------------------------------- /src/views/appFront/banner/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/appFront/banner/index.vue -------------------------------------------------------------------------------- /src/views/business/chatSdk/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/api.js -------------------------------------------------------------------------------- /src/views/business/chatSdk/chatKeys/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/chatKeys/index.vue -------------------------------------------------------------------------------- /src/views/business/chatSdk/chatModel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/chatModel/index.vue -------------------------------------------------------------------------------- /src/views/business/chatSdk/chatSdkHost/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/chatSdkHost/index.vue -------------------------------------------------------------------------------- /src/views/business/chatSdk/components/ChatSdkForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/components/ChatSdkForm.vue -------------------------------------------------------------------------------- /src/views/business/chatSdk/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/chatSdk/index.vue -------------------------------------------------------------------------------- /src/views/business/domain/SaveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/domain/SaveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/business/domain/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/domain/api.js -------------------------------------------------------------------------------- /src/views/business/domain/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/domain/index.vue -------------------------------------------------------------------------------- /src/views/business/noticeclient/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/noticeclient/index.vue -------------------------------------------------------------------------------- /src/views/business/session/drawRecord/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/drawRecord/api.js -------------------------------------------------------------------------------- /src/views/business/session/drawRecord/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/drawRecord/index.vue -------------------------------------------------------------------------------- /src/views/business/session/sessionRecord/RecordDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/sessionRecord/RecordDetail.vue -------------------------------------------------------------------------------- /src/views/business/session/sessionRecord/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/sessionRecord/api.js -------------------------------------------------------------------------------- /src/views/business/session/sessionRecord/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/sessionRecord/index.vue -------------------------------------------------------------------------------- /src/views/business/session/taskDraw/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/session/taskDraw/index.vue -------------------------------------------------------------------------------- /src/views/business/user/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/user/api.js -------------------------------------------------------------------------------- /src/views/business/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/business/user/index.vue -------------------------------------------------------------------------------- /src/views/components/icons/element-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/components/icons/element-icons.js -------------------------------------------------------------------------------- /src/views/components/icons/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/components/icons/index.vue -------------------------------------------------------------------------------- /src/views/components/icons/svg-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/components/icons/svg-icons.js -------------------------------------------------------------------------------- /src/views/dashboard/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/BarChart.vue -------------------------------------------------------------------------------- /src/views/dashboard/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/LineChart.vue -------------------------------------------------------------------------------- /src/views/dashboard/PanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/PanelGroup.vue -------------------------------------------------------------------------------- /src/views/dashboard/PieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/PieChart.vue -------------------------------------------------------------------------------- /src/views/dashboard/RaddarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/RaddarChart.vue -------------------------------------------------------------------------------- /src/views/dashboard/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/dashboard/mixins/resize.js -------------------------------------------------------------------------------- /src/views/error/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/error/401.vue -------------------------------------------------------------------------------- /src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/error/404.vue -------------------------------------------------------------------------------- /src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/index.vue -------------------------------------------------------------------------------- /src/views/index_1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/index_1.vue -------------------------------------------------------------------------------- /src/views/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/login.vue -------------------------------------------------------------------------------- /src/views/monitor/job/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/job/index.vue -------------------------------------------------------------------------------- /src/views/monitor/job/log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/job/log.vue -------------------------------------------------------------------------------- /src/views/monitor/logininfor/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/logininfor/api.js -------------------------------------------------------------------------------- /src/views/monitor/logininfor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/logininfor/index.vue -------------------------------------------------------------------------------- /src/views/monitor/online/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/online/index.vue -------------------------------------------------------------------------------- /src/views/monitor/operlog/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/operlog/api.js -------------------------------------------------------------------------------- /src/views/monitor/operlog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/monitor/operlog/index.vue -------------------------------------------------------------------------------- /src/views/redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/redirect.vue -------------------------------------------------------------------------------- /src/views/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/register.vue -------------------------------------------------------------------------------- /src/views/system/dict/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/dict/api.js -------------------------------------------------------------------------------- /src/views/system/dict/data.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/dict/data.vue -------------------------------------------------------------------------------- /src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /src/views/system/openconfig/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/openconfig/api.js -------------------------------------------------------------------------------- /src/views/system/openconfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/openconfig/index.vue -------------------------------------------------------------------------------- /src/views/system/permission/AllocationModule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/permission/AllocationModule.vue -------------------------------------------------------------------------------- /src/views/system/permission/ModuleAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/permission/ModuleAdd.vue -------------------------------------------------------------------------------- /src/views/system/permission/ModuleEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/permission/ModuleEdit.vue -------------------------------------------------------------------------------- /src/views/system/permission/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/permission/api/api.js -------------------------------------------------------------------------------- /src/views/system/permission/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/permission/index.vue -------------------------------------------------------------------------------- /src/views/system/role/RolePermission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/role/RolePermission.vue -------------------------------------------------------------------------------- /src/views/system/role/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/role/api/api.js -------------------------------------------------------------------------------- /src/views/system/role/authUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/role/authUser.vue -------------------------------------------------------------------------------- /src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/role/index.vue -------------------------------------------------------------------------------- /src/views/system/role/selectUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/role/selectUser.vue -------------------------------------------------------------------------------- /src/views/system/user/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/api/api.js -------------------------------------------------------------------------------- /src/views/system/user/authRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/authRole.vue -------------------------------------------------------------------------------- /src/views/system/user/components/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/components/ResetPassword.vue -------------------------------------------------------------------------------- /src/views/system/user/components/SaveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/components/SaveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/index.vue -------------------------------------------------------------------------------- /src/views/system/user/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/profile/index.vue -------------------------------------------------------------------------------- /src/views/system/user/profile/resetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/profile/resetPwd.vue -------------------------------------------------------------------------------- /src/views/system/user/profile/userAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/profile/userAvatar.vue -------------------------------------------------------------------------------- /src/views/system/user/profile/userInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/user/profile/userInfo.vue -------------------------------------------------------------------------------- /src/views/system/webset/ChatConfigSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/ChatConfigSetting.vue -------------------------------------------------------------------------------- /src/views/system/webset/DrawSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/DrawSetting.vue -------------------------------------------------------------------------------- /src/views/system/webset/FileConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/FileConfig.vue -------------------------------------------------------------------------------- /src/views/system/webset/OpenaiSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/OpenaiSetting.vue -------------------------------------------------------------------------------- /src/views/system/webset/WebSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/WebSetting.vue -------------------------------------------------------------------------------- /src/views/system/webset/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/api/api.js -------------------------------------------------------------------------------- /src/views/system/webset/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/index.vue -------------------------------------------------------------------------------- /src/views/system/webset/midjourney/ApiParamConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/midjourney/ApiParamConfig.vue -------------------------------------------------------------------------------- /src/views/system/webset/midjourney/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/midjourney/api.js -------------------------------------------------------------------------------- /src/views/system/webset/midjourney/channel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/midjourney/channel.vue -------------------------------------------------------------------------------- /src/views/system/webset/midjourney/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/midjourney/index.vue -------------------------------------------------------------------------------- /src/views/system/webset/minio/minioConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/system/webset/minio/minioConfig.vue -------------------------------------------------------------------------------- /src/views/tool/build/CodeTypeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/CodeTypeDialog.vue -------------------------------------------------------------------------------- /src/views/tool/build/DraggableItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/DraggableItem.vue -------------------------------------------------------------------------------- /src/views/tool/build/IconsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/IconsDialog.vue -------------------------------------------------------------------------------- /src/views/tool/build/RightPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/RightPanel.vue -------------------------------------------------------------------------------- /src/views/tool/build/TreeNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/TreeNodeDialog.vue -------------------------------------------------------------------------------- /src/views/tool/build/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/build/index.vue -------------------------------------------------------------------------------- /src/views/tool/gen/basicInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/basicInfoForm.vue -------------------------------------------------------------------------------- /src/views/tool/gen/createTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/createTable.vue -------------------------------------------------------------------------------- /src/views/tool/gen/editTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/editTable.vue -------------------------------------------------------------------------------- /src/views/tool/gen/genInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/genInfoForm.vue -------------------------------------------------------------------------------- /src/views/tool/gen/importTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/importTable.vue -------------------------------------------------------------------------------- /src/views/tool/gen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/src/views/tool/gen/index.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryonWang/creative-backend-client/HEAD/vue.config.js --------------------------------------------------------------------------------