├── .github ├── release-drafter.yml ├── releasesText.md └── workflows │ ├── debug.yml │ ├── jekyll-gh-pages.yml │ └── 发布软件.yml ├── .gitignore ├── .gitmodules ├── CNAME ├── GoEasyDesigner ├── .gitignore ├── Dockerfile ├── TemplateProject │ └── newWindow.zip ├── Terminal │ ├── Terminal_darwin.go │ ├── Terminal_darwin_test.go │ ├── Terminal_window.go │ └── Terminal_window_test.go ├── app.go ├── build │ ├── README.md │ ├── appicon.png │ ├── darwin │ │ ├── Info.dev.plist │ │ └── Info.plist │ ├── dmg.sh │ └── windows │ │ ├── icon.ico │ │ ├── info.json │ │ ├── installer │ │ ├── project.nsi │ │ └── wails_tools.nsh │ │ └── wails.exe.manifest ├── docker-compose.yml ├── frontend │ ├── README.md │ ├── index.html │ ├── jsconfig.json │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── public │ │ ├── 1.html │ │ ├── cdn.tailwindcss.com_3.4.5.js │ │ ├── font-awesome.css │ │ ├── releases_latest.json │ │ ├── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ └── 自定义组件 │ │ │ ├── ColorfulText │ │ │ ├── ColorfulText.js │ │ │ ├── ColorfulText.vue │ │ │ └── ColorfulTextAttr.vue │ │ │ ├── TimeProgressBar │ │ │ ├── TimeProgressBar.js │ │ │ ├── TimeProgressBar.vue │ │ │ └── TimeProgressBarAttr.vue │ │ │ ├── components.json │ │ │ ├── 流光边框 │ │ │ ├── 流光边框.js │ │ │ ├── 流光边框.vue │ │ │ └── 流光边框属性.vue │ │ │ └── 登录框 │ │ │ ├── 登录框.js │ │ │ ├── 登录框.vue │ │ │ └── 登录框属性.vue │ ├── src │ │ ├── Helper.js │ │ ├── action │ │ │ └── app.js │ │ ├── app10.vue │ │ ├── app11.vue │ │ ├── assets │ │ │ ├── base.css │ │ │ └── main.css │ │ ├── components │ │ │ ├── RenderDesignComponent.vue │ │ │ ├── RenderDesignComponentPreview.vue │ │ │ ├── RenderDesignComponentWin.vue │ │ │ ├── Shape.vue │ │ │ ├── boxs │ │ │ │ ├── el │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ ├── Button.vue │ │ │ │ │ │ └── ButtonAttr.vue │ │ │ │ │ ├── CheckBox │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ ├── CheckBox.vue │ │ │ │ │ │ └── CheckBoxAttr.vue │ │ │ │ │ ├── CommonLayout │ │ │ │ │ │ ├── CommonLayout.js │ │ │ │ │ │ ├── CommonLayout.vue │ │ │ │ │ │ └── CommonLayoutAttr.vue │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── Container.js │ │ │ │ │ │ └── ContainerAttr.vue │ │ │ │ │ ├── ControlButton │ │ │ │ │ │ ├── ControlButton.js │ │ │ │ │ │ ├── ControlButton.vue │ │ │ │ │ │ └── ControlButtonAttr.vue │ │ │ │ │ ├── CustomComponent │ │ │ │ │ │ ├── CustomComponent.js │ │ │ │ │ │ ├── CustomComponent.vue │ │ │ │ │ │ └── CustomComponentAttr.vue │ │ │ │ │ ├── FlexLayout │ │ │ │ │ │ ├── FlexLayout.js │ │ │ │ │ │ ├── FlexLayout.vue │ │ │ │ │ │ └── FlexLayoutAttr.vue │ │ │ │ │ ├── Label │ │ │ │ │ │ ├── Label.js │ │ │ │ │ │ ├── Label.vue │ │ │ │ │ │ └── LabelAttr.vue │ │ │ │ │ ├── Menu │ │ │ │ │ │ ├── Menu.js │ │ │ │ │ │ ├── Menu.vue │ │ │ │ │ │ └── MenuAttr.vue │ │ │ │ │ ├── ProgressBar │ │ │ │ │ │ ├── ProgressBar.js │ │ │ │ │ │ ├── ProgressBar.vue │ │ │ │ │ │ └── ProgressBarAttr.vue │ │ │ │ │ ├── RadioButton │ │ │ │ │ │ ├── RadioButton.js │ │ │ │ │ │ ├── RadioButton.vue │ │ │ │ │ │ └── RadioButtonAttr.vue │ │ │ │ │ ├── Switch │ │ │ │ │ │ ├── Switch.js │ │ │ │ │ │ ├── Switch.vue │ │ │ │ │ │ └── SwitchAttr.vue │ │ │ │ │ ├── Table │ │ │ │ │ │ ├── Table.js │ │ │ │ │ │ ├── Table.vue │ │ │ │ │ │ └── TableAttr.vue │ │ │ │ │ ├── Tabs │ │ │ │ │ │ ├── Tabs.js │ │ │ │ │ │ ├── Tabs.vue │ │ │ │ │ │ └── TabsAttr.vue │ │ │ │ │ ├── TabsTW │ │ │ │ │ │ ├── TabsTW.js │ │ │ │ │ │ ├── TabsTW.vue │ │ │ │ │ │ ├── TabsTWAttr.vue │ │ │ │ │ │ └── fontawesome_free_icon_names.js │ │ │ │ │ ├── TextEdit │ │ │ │ │ │ ├── TextEdit.js │ │ │ │ │ │ ├── TextEdit.vue │ │ │ │ │ │ └── TextEditAttr.vue │ │ │ │ │ ├── Tooltip │ │ │ │ │ │ ├── Tooltip.js │ │ │ │ │ │ ├── Tooltip.vue │ │ │ │ │ │ └── TooltipAttr.vue │ │ │ │ │ └── Tree │ │ │ │ │ │ ├── Tree.js │ │ │ │ │ │ ├── Tree.vue │ │ │ │ │ │ └── TreeAttr.vue │ │ │ │ ├── td │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ ├── Button.vue │ │ │ │ │ │ └── ButtonAttr.vue │ │ │ │ │ ├── Link │ │ │ │ │ │ ├── Link.js │ │ │ │ │ │ ├── Link.vue │ │ │ │ │ │ └── LinkAttr.vue │ │ │ │ │ ├── Progress │ │ │ │ │ │ ├── Progress.js │ │ │ │ │ │ ├── Progress.vue │ │ │ │ │ │ └── ProgressAttr.vue │ │ │ │ │ ├── Select │ │ │ │ │ │ ├── Select.js │ │ │ │ │ │ ├── Select.vue │ │ │ │ │ │ └── SelectAttr.vue │ │ │ │ │ └── Switch │ │ │ │ │ │ ├── Switch.js │ │ │ │ │ │ ├── Switch.vue │ │ │ │ │ │ └── SwitchAttr.vue │ │ │ │ └── tw │ │ │ │ │ └── Button │ │ │ │ │ ├── Button.js │ │ │ │ │ ├── Button.vue │ │ │ │ │ └── ButtonAttr.vue │ │ │ ├── common │ │ │ │ └── IconSelector.vue │ │ │ └── designer │ │ │ │ ├── PreviewDialog.vue │ │ │ │ ├── header │ │ │ │ └── ToolBtn.vue │ │ │ │ ├── left │ │ │ │ ├── ComponentLeft.vue │ │ │ │ ├── PropertyTable.vue │ │ │ │ └── TreeSelectBox.vue │ │ │ │ └── public │ │ │ │ ├── DraggableDivider.vue │ │ │ │ ├── WindowAttr.vue │ │ │ │ ├── common-event-component.vue │ │ │ │ ├── common-properties.vue │ │ │ │ ├── 代码编辑器.vue │ │ │ │ ├── 支持库.vue │ │ │ │ ├── 新建项目对话框.vue │ │ │ │ ├── 项目管理.vue │ │ │ │ └── 项目配置对话框.vue │ │ ├── helpDoc │ │ │ └── systemFcDoc.json │ │ ├── i18n │ │ │ ├── index.js │ │ │ └── locales │ │ │ │ ├── en.json │ │ │ │ └── zh-Hans.json │ │ ├── main.js │ │ ├── public.js │ │ ├── stores │ │ │ ├── HistoryManager.js │ │ │ └── appStore.js │ │ ├── update_github_latest_releases.sh │ │ ├── 提示语法生成器.js │ │ ├── 测试代码编辑器.vue │ │ ├── 编辑器 │ │ │ ├── 窗口事件代码模板.js │ │ │ ├── 编辑器提示数据.js │ │ │ └── 编辑器语法文件.js │ │ └── 编辑的语法提示.js │ ├── tailwind.config.js │ ├── vite.config.js │ └── wailsjs │ │ ├── go │ │ └── main │ │ │ ├── App.d.ts │ │ │ └── App.js │ │ └── runtime │ │ ├── package.json │ │ ├── runtime.d.ts │ │ └── runtime.js ├── go.mod ├── go.sum ├── main.go ├── myfunc │ ├── myfunc.go │ └── myfunc_test.go ├── mymodel │ ├── Version.go │ ├── git项目操作.go │ ├── git项目操作_test.go │ ├── 文件监视模块.go │ ├── 文件监视模块_test.go │ ├── 自动更新模块.go │ └── 自动更新模块_test.go ├── ssh_nginx │ ├── Caddyfile │ ├── default.conf │ └── docker-compose.yml └── wails.json ├── LICENSE ├── QtEsayDesigner IDE插件.jar ├── README.assets ├── image-20230828083413650.png └── image-20230828084834120.png ├── README.md ├── README.zh-Hans.md ├── script └── main.go └── tool └── 一键环境配置.e /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/releasesText.md: -------------------------------------------------------------------------------- 1 | # GoEasyDesigner 窗口设计师 2 | 3 | 奋斗了{{用了多少时间}},本次更新内容如下: 4 | 5 | {{最新发布信息}} 6 | 7 | {{变更内容}} -------------------------------------------------------------------------------- /.github/workflows/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.github/workflows/debug.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/发布软件.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.github/workflows/发布软件.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/.gitmodules -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ggg.yx24.me 2 | -------------------------------------------------------------------------------- /GoEasyDesigner/.gitignore: -------------------------------------------------------------------------------- 1 | build/bin 2 | node_modules 3 | frontend/dist 4 | -------------------------------------------------------------------------------- /GoEasyDesigner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/Dockerfile -------------------------------------------------------------------------------- /GoEasyDesigner/TemplateProject/newWindow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/TemplateProject/newWindow.zip -------------------------------------------------------------------------------- /GoEasyDesigner/Terminal/Terminal_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/Terminal/Terminal_darwin.go -------------------------------------------------------------------------------- /GoEasyDesigner/Terminal/Terminal_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/Terminal/Terminal_darwin_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/Terminal/Terminal_window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/Terminal/Terminal_window.go -------------------------------------------------------------------------------- /GoEasyDesigner/Terminal/Terminal_window_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/Terminal/Terminal_window_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/app.go -------------------------------------------------------------------------------- /GoEasyDesigner/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/README.md -------------------------------------------------------------------------------- /GoEasyDesigner/build/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/appicon.png -------------------------------------------------------------------------------- /GoEasyDesigner/build/darwin/Info.dev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/darwin/Info.dev.plist -------------------------------------------------------------------------------- /GoEasyDesigner/build/darwin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/darwin/Info.plist -------------------------------------------------------------------------------- /GoEasyDesigner/build/dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/dmg.sh -------------------------------------------------------------------------------- /GoEasyDesigner/build/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/windows/icon.ico -------------------------------------------------------------------------------- /GoEasyDesigner/build/windows/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/windows/info.json -------------------------------------------------------------------------------- /GoEasyDesigner/build/windows/installer/project.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/windows/installer/project.nsi -------------------------------------------------------------------------------- /GoEasyDesigner/build/windows/installer/wails_tools.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/windows/installer/wails_tools.nsh -------------------------------------------------------------------------------- /GoEasyDesigner/build/windows/wails.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/build/windows/wails.exe.manifest -------------------------------------------------------------------------------- /GoEasyDesigner/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/docker-compose.yml -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/README.md -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/index.html -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/jsconfig.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/package.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/postcss.config.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/1.html -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/cdn.tailwindcss.com_3.4.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/cdn.tailwindcss.com_3.4.5.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/font-awesome.css -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/releases_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/releases_latest.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulText.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulText.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulTextAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/ColorfulText/ColorfulTextAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBar.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBar.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBarAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/TimeProgressBar/TimeProgressBarAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/components.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框属性.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/流光边框/流光边框属性.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/登录框/登录框.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/登录框/登录框.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/登录框/登录框.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/登录框/登录框.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/public/自定义组件/登录框/登录框属性.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/public/自定义组件/登录框/登录框属性.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/Helper.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/action/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/action/app.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/app10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/app10.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/app11.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/app11.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/assets/base.css -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/assets/main.css -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/RenderDesignComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/RenderDesignComponent.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/RenderDesignComponentPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/RenderDesignComponentPreview.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/RenderDesignComponentWin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/RenderDesignComponentWin.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/Shape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/Shape.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Button/Button.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Button/Button.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Button/ButtonAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Button/ButtonAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBox.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBox.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBoxAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CheckBox/CheckBoxAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayout.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayout.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayoutAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CommonLayout/CommonLayoutAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Container/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Container/Container.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Container/ContainerAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Container/ContainerAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButton.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButton.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButtonAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ControlButton/ControlButtonAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponent.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponent.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponentAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/CustomComponent/CustomComponentAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayout.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayout.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayoutAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/FlexLayout/FlexLayoutAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Label/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Label/Label.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Label/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Label/Label.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Label/LabelAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Label/LabelAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Menu/Menu.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Menu/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Menu/Menu.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Menu/MenuAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Menu/MenuAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBar.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBar.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBarAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/ProgressBar/ProgressBarAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButton.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButton.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButtonAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/RadioButton/RadioButtonAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Switch/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Switch/Switch.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Switch/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Switch/Switch.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Switch/SwitchAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Switch/SwitchAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Table/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Table/Table.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Table/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Table/Table.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Table/TableAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Table/TableAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tabs/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tabs/Tabs.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tabs/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tabs/Tabs.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tabs/TabsAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tabs/TabsAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTW.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTW.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTW.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTWAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/TabsTWAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/fontawesome_free_icon_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TabsTW/fontawesome_free_icon_names.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEdit.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEdit.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEditAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/TextEdit/TextEditAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/Tooltip.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/Tooltip.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/TooltipAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tooltip/TooltipAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tree/Tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tree/Tree.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tree/Tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tree/Tree.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/el/Tree/TreeAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/el/Tree/TreeAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Button/Button.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Button/Button.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Button/ButtonAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Button/ButtonAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Link/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Link/Link.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Link/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Link/Link.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Link/LinkAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Link/LinkAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Progress/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Progress/Progress.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Progress/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Progress/Progress.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Progress/ProgressAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Progress/ProgressAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Select/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Select/Select.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Select/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Select/Select.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Select/SelectAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Select/SelectAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/td/Switch/SwitchAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/td/Switch/SwitchAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/tw/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/tw/Button/Button.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/tw/Button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/tw/Button/Button.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/boxs/tw/Button/ButtonAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/boxs/tw/Button/ButtonAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/common/IconSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/common/IconSelector.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/PreviewDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/PreviewDialog.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/header/ToolBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/header/ToolBtn.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/left/ComponentLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/left/ComponentLeft.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/left/PropertyTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/left/PropertyTable.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/left/TreeSelectBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/left/TreeSelectBox.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/DraggableDivider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/DraggableDivider.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/WindowAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/WindowAttr.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/common-event-component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/common-event-component.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/common-properties.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/common-properties.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/代码编辑器.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/代码编辑器.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/支持库.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/支持库.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/新建项目对话框.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/新建项目对话框.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/项目管理.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/项目管理.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/components/designer/public/项目配置对话框.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/components/designer/public/项目配置对话框.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/helpDoc/systemFcDoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/helpDoc/systemFcDoc.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/i18n/index.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/i18n/locales/en.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/i18n/locales/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/i18n/locales/zh-Hans.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/main.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/public.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/stores/HistoryManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/stores/HistoryManager.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/stores/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/stores/appStore.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/update_github_latest_releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/update_github_latest_releases.sh -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/提示语法生成器.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/提示语法生成器.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/测试代码编辑器.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/测试代码编辑器.vue -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/编辑器/窗口事件代码模板.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/编辑器/窗口事件代码模板.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/编辑器/编辑器提示数据.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/编辑器/编辑器提示数据.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/编辑器/编辑器语法文件.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/编辑器/编辑器语法文件.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/src/编辑的语法提示.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/src/编辑的语法提示.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/tailwind.config.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/vite.config.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/wailsjs/go/main/App.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/wailsjs/go/main/App.d.ts -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/wailsjs/go/main/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/wailsjs/go/main/App.js -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/wailsjs/runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/wailsjs/runtime/package.json -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/wailsjs/runtime/runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/wailsjs/runtime/runtime.d.ts -------------------------------------------------------------------------------- /GoEasyDesigner/frontend/wailsjs/runtime/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/frontend/wailsjs/runtime/runtime.js -------------------------------------------------------------------------------- /GoEasyDesigner/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/go.mod -------------------------------------------------------------------------------- /GoEasyDesigner/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/go.sum -------------------------------------------------------------------------------- /GoEasyDesigner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/main.go -------------------------------------------------------------------------------- /GoEasyDesigner/myfunc/myfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/myfunc/myfunc.go -------------------------------------------------------------------------------- /GoEasyDesigner/myfunc/myfunc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/myfunc/myfunc_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/Version.go: -------------------------------------------------------------------------------- 1 | package mymodel 2 | 3 | var Version = `v0.0.1` -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/git项目操作.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/git项目操作.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/git项目操作_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/git项目操作_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/文件监视模块.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/文件监视模块.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/文件监视模块_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/文件监视模块_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/自动更新模块.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/自动更新模块.go -------------------------------------------------------------------------------- /GoEasyDesigner/mymodel/自动更新模块_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/mymodel/自动更新模块_test.go -------------------------------------------------------------------------------- /GoEasyDesigner/ssh_nginx/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/ssh_nginx/Caddyfile -------------------------------------------------------------------------------- /GoEasyDesigner/ssh_nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/ssh_nginx/default.conf -------------------------------------------------------------------------------- /GoEasyDesigner/ssh_nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/ssh_nginx/docker-compose.yml -------------------------------------------------------------------------------- /GoEasyDesigner/wails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/GoEasyDesigner/wails.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/LICENSE -------------------------------------------------------------------------------- /QtEsayDesigner IDE插件.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/QtEsayDesigner IDE插件.jar -------------------------------------------------------------------------------- /README.assets/image-20230828083413650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/README.assets/image-20230828083413650.png -------------------------------------------------------------------------------- /README.assets/image-20230828084834120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/README.assets/image-20230828084834120.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-Hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/README.zh-Hans.md -------------------------------------------------------------------------------- /script/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/script/main.go -------------------------------------------------------------------------------- /tool/一键环境配置.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duolabmeng6/GoEasyDesigner/HEAD/tool/一键环境配置.e --------------------------------------------------------------------------------