├── .babelrc ├── .gitattributes ├── .gitignore ├── README.cn.md ├── README.md ├── _config.yml ├── app ├── controller │ ├── client.js │ ├── restql.js │ ├── tableinfo.js │ ├── uploadfile.js │ └── user.js ├── extend │ ├── helper.js │ └── oauth.js ├── middleware │ ├── api_wrapper.js │ ├── error_handler.js │ └── robot.js ├── public │ ├── assets │ │ ├── logo.png │ │ └── znfont.js │ ├── css │ │ └── index.css │ ├── img │ │ ├── loading.gif │ │ └── pomy.jpg │ └── js │ │ ├── 0.js │ │ ├── 1.js │ │ ├── index.js │ │ └── vendor.js ├── router.js ├── service │ ├── restql.js │ ├── tableinfo.js │ ├── uploadfile.js │ └── users.js ├── utils │ └── libs.js └── view │ └── public │ └── index.html ├── config ├── config.default.js ├── config.local.js ├── config.prod.js ├── config.unittest.js └── plugin.js ├── dispatch.js ├── package.json ├── scripts └── copy.js ├── static ├── assets │ ├── modulerest.png │ ├── modulerest1.png │ ├── modulerest2.png │ └── modulerest3.png ├── build │ ├── webpack.base.config.js │ ├── webpack.dev.config.js │ └── webpack.prod.config.js └── src │ ├── _index.js │ ├── components │ ├── DataTable │ │ ├── AnimTableBody.js │ │ ├── DataTable.js │ │ ├── DataTable.less │ │ └── package.json │ ├── DropOption │ │ ├── DropOption.js │ │ └── package.json │ ├── Editor │ │ ├── Editor.js │ │ ├── Editor.less │ │ └── package.json │ ├── Iconfont │ │ ├── Iconfont.js │ │ ├── iconfont.less │ │ └── package.json │ ├── Layout │ │ ├── Bread.js │ │ ├── Bread.less │ │ ├── Footer.js │ │ ├── Footer.less │ │ ├── Header.js │ │ ├── Header.less │ │ ├── Layout.less │ │ ├── Menu.js │ │ ├── Sider.js │ │ ├── Sider.less │ │ └── index.js │ ├── Search │ │ ├── Search.js │ │ ├── Search.less │ │ └── package.json │ ├── index.js │ ├── layer │ │ ├── layer.js │ │ ├── layer.less │ │ └── package.json │ ├── skin.less │ └── vars.less │ ├── img │ └── logo.png │ ├── index.html │ ├── index.js │ ├── models │ ├── app.js │ ├── showApi.js │ ├── tableForm.js │ └── tableManager.js │ ├── router.js │ ├── routes │ ├── app.js │ ├── error │ │ ├── index.js │ │ └── index.less │ ├── login │ │ ├── TestComp.js │ │ ├── index.js │ │ └── index.less │ ├── showApi │ │ ├── index.js │ │ └── index.less │ └── tableManager │ │ ├── TableForm.js │ │ ├── TableView.js │ │ └── index.js │ ├── services │ ├── app.js │ ├── showApi.js │ ├── tableForm.js │ └── tableManager.js │ ├── tests │ └── models │ │ └── example-test.js │ ├── theme.js │ └── utils │ ├── config.js │ ├── index.js │ ├── js.cookie.js │ ├── menu.js │ ├── request.js │ └── theme.js ├── test ├── controller │ ├── restql.test.js │ └── tableinfo.test.js └── service │ ├── restql.test.js │ └── tableinfo.test.js └── testdb.sql /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/_config.yml -------------------------------------------------------------------------------- /app/controller/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/controller/client.js -------------------------------------------------------------------------------- /app/controller/restql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/controller/restql.js -------------------------------------------------------------------------------- /app/controller/tableinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/controller/tableinfo.js -------------------------------------------------------------------------------- /app/controller/uploadfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/controller/uploadfile.js -------------------------------------------------------------------------------- /app/controller/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/controller/user.js -------------------------------------------------------------------------------- /app/extend/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/extend/helper.js -------------------------------------------------------------------------------- /app/extend/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/extend/oauth.js -------------------------------------------------------------------------------- /app/middleware/api_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/middleware/api_wrapper.js -------------------------------------------------------------------------------- /app/middleware/error_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/middleware/error_handler.js -------------------------------------------------------------------------------- /app/middleware/robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/middleware/robot.js -------------------------------------------------------------------------------- /app/public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/assets/logo.png -------------------------------------------------------------------------------- /app/public/assets/znfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/assets/znfont.js -------------------------------------------------------------------------------- /app/public/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/css/index.css -------------------------------------------------------------------------------- /app/public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/img/loading.gif -------------------------------------------------------------------------------- /app/public/img/pomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/img/pomy.jpg -------------------------------------------------------------------------------- /app/public/js/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/js/0.js -------------------------------------------------------------------------------- /app/public/js/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/js/1.js -------------------------------------------------------------------------------- /app/public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/js/index.js -------------------------------------------------------------------------------- /app/public/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/public/js/vendor.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/router.js -------------------------------------------------------------------------------- /app/service/restql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/service/restql.js -------------------------------------------------------------------------------- /app/service/tableinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/service/tableinfo.js -------------------------------------------------------------------------------- /app/service/uploadfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/service/uploadfile.js -------------------------------------------------------------------------------- /app/service/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/service/users.js -------------------------------------------------------------------------------- /app/utils/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/utils/libs.js -------------------------------------------------------------------------------- /app/view/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/app/view/public/index.html -------------------------------------------------------------------------------- /config/config.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/config/config.default.js -------------------------------------------------------------------------------- /config/config.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/config/config.local.js -------------------------------------------------------------------------------- /config/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/config/config.prod.js -------------------------------------------------------------------------------- /config/config.unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/config/config.unittest.js -------------------------------------------------------------------------------- /config/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/config/plugin.js -------------------------------------------------------------------------------- /dispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/dispatch.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/package.json -------------------------------------------------------------------------------- /scripts/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/scripts/copy.js -------------------------------------------------------------------------------- /static/assets/modulerest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/assets/modulerest.png -------------------------------------------------------------------------------- /static/assets/modulerest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/assets/modulerest1.png -------------------------------------------------------------------------------- /static/assets/modulerest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/assets/modulerest2.png -------------------------------------------------------------------------------- /static/assets/modulerest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/assets/modulerest3.png -------------------------------------------------------------------------------- /static/build/webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/build/webpack.base.config.js -------------------------------------------------------------------------------- /static/build/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/build/webpack.dev.config.js -------------------------------------------------------------------------------- /static/build/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/build/webpack.prod.config.js -------------------------------------------------------------------------------- /static/src/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/_index.js -------------------------------------------------------------------------------- /static/src/components/DataTable/AnimTableBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/DataTable/AnimTableBody.js -------------------------------------------------------------------------------- /static/src/components/DataTable/DataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/DataTable/DataTable.js -------------------------------------------------------------------------------- /static/src/components/DataTable/DataTable.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/components/DataTable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/DataTable/package.json -------------------------------------------------------------------------------- /static/src/components/DropOption/DropOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/DropOption/DropOption.js -------------------------------------------------------------------------------- /static/src/components/DropOption/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/DropOption/package.json -------------------------------------------------------------------------------- /static/src/components/Editor/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Editor/Editor.js -------------------------------------------------------------------------------- /static/src/components/Editor/Editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Editor/Editor.less -------------------------------------------------------------------------------- /static/src/components/Editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Editor/package.json -------------------------------------------------------------------------------- /static/src/components/Iconfont/Iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Iconfont/Iconfont.js -------------------------------------------------------------------------------- /static/src/components/Iconfont/iconfont.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Iconfont/iconfont.less -------------------------------------------------------------------------------- /static/src/components/Iconfont/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Iconfont/package.json -------------------------------------------------------------------------------- /static/src/components/Layout/Bread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Bread.js -------------------------------------------------------------------------------- /static/src/components/Layout/Bread.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Bread.less -------------------------------------------------------------------------------- /static/src/components/Layout/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Footer.js -------------------------------------------------------------------------------- /static/src/components/Layout/Footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Footer.less -------------------------------------------------------------------------------- /static/src/components/Layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Header.js -------------------------------------------------------------------------------- /static/src/components/Layout/Header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Header.less -------------------------------------------------------------------------------- /static/src/components/Layout/Layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Layout.less -------------------------------------------------------------------------------- /static/src/components/Layout/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Menu.js -------------------------------------------------------------------------------- /static/src/components/Layout/Sider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/Sider.js -------------------------------------------------------------------------------- /static/src/components/Layout/Sider.less: -------------------------------------------------------------------------------- 1 | @import "../vars.less"; 2 | -------------------------------------------------------------------------------- /static/src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Layout/index.js -------------------------------------------------------------------------------- /static/src/components/Search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Search/Search.js -------------------------------------------------------------------------------- /static/src/components/Search/Search.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Search/Search.less -------------------------------------------------------------------------------- /static/src/components/Search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/Search/package.json -------------------------------------------------------------------------------- /static/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/index.js -------------------------------------------------------------------------------- /static/src/components/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/layer/layer.js -------------------------------------------------------------------------------- /static/src/components/layer/layer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/layer/layer.less -------------------------------------------------------------------------------- /static/src/components/layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/layer/package.json -------------------------------------------------------------------------------- /static/src/components/skin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/skin.less -------------------------------------------------------------------------------- /static/src/components/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/components/vars.less -------------------------------------------------------------------------------- /static/src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/img/logo.png -------------------------------------------------------------------------------- /static/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/index.html -------------------------------------------------------------------------------- /static/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/index.js -------------------------------------------------------------------------------- /static/src/models/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/models/app.js -------------------------------------------------------------------------------- /static/src/models/showApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/models/showApi.js -------------------------------------------------------------------------------- /static/src/models/tableForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/models/tableForm.js -------------------------------------------------------------------------------- /static/src/models/tableManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/models/tableManager.js -------------------------------------------------------------------------------- /static/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/router.js -------------------------------------------------------------------------------- /static/src/routes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/app.js -------------------------------------------------------------------------------- /static/src/routes/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/error/index.js -------------------------------------------------------------------------------- /static/src/routes/error/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/error/index.less -------------------------------------------------------------------------------- /static/src/routes/login/TestComp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/login/TestComp.js -------------------------------------------------------------------------------- /static/src/routes/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/login/index.js -------------------------------------------------------------------------------- /static/src/routes/login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/login/index.less -------------------------------------------------------------------------------- /static/src/routes/showApi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/showApi/index.js -------------------------------------------------------------------------------- /static/src/routes/showApi/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/showApi/index.less -------------------------------------------------------------------------------- /static/src/routes/tableManager/TableForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/tableManager/TableForm.js -------------------------------------------------------------------------------- /static/src/routes/tableManager/TableView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/tableManager/TableView.js -------------------------------------------------------------------------------- /static/src/routes/tableManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/routes/tableManager/index.js -------------------------------------------------------------------------------- /static/src/services/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/services/app.js -------------------------------------------------------------------------------- /static/src/services/showApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/services/showApi.js -------------------------------------------------------------------------------- /static/src/services/tableForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/services/tableForm.js -------------------------------------------------------------------------------- /static/src/services/tableManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/services/tableManager.js -------------------------------------------------------------------------------- /static/src/tests/models/example-test.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/theme.js -------------------------------------------------------------------------------- /static/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/config.js -------------------------------------------------------------------------------- /static/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/index.js -------------------------------------------------------------------------------- /static/src/utils/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/js.cookie.js -------------------------------------------------------------------------------- /static/src/utils/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/menu.js -------------------------------------------------------------------------------- /static/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/request.js -------------------------------------------------------------------------------- /static/src/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/static/src/utils/theme.js -------------------------------------------------------------------------------- /test/controller/restql.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/test/controller/restql.test.js -------------------------------------------------------------------------------- /test/controller/tableinfo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/test/controller/tableinfo.test.js -------------------------------------------------------------------------------- /test/service/restql.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/test/service/restql.test.js -------------------------------------------------------------------------------- /test/service/tableinfo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/test/service/tableinfo.test.js -------------------------------------------------------------------------------- /testdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fomenyesu/egg-restapi-module-tool/HEAD/testdb.sql --------------------------------------------------------------------------------