├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── README ├── image-20230716135559277.png ├── image-20230716135635973.png ├── image-20230716135655742.png └── image-20230716135712479.png ├── app.vue ├── assets ├── images │ └── sponsor │ │ ├── alipay.jpg │ │ └── wepay.jpg └── scss │ ├── common.scss │ └── element │ ├── dark.scss │ └── index.scss ├── components ├── applications │ ├── list.vue │ └── list │ │ ├── func.vue │ │ └── item.vue ├── database │ ├── detail.vue │ ├── edit.vue │ ├── fields.vue │ ├── history.vue │ ├── list.vue │ ├── list │ │ └── item.vue │ ├── response.vue │ ├── run.vue │ └── table.vue ├── layout │ ├── drawer.vue │ ├── footer.vue │ ├── header.vue │ ├── loading.vue │ ├── panel.vue │ └── twoColumn.vue ├── manager │ ├── create.vue │ ├── detail.vue │ ├── edit.vue │ ├── header.vue │ ├── history.vue │ ├── runHistory.vue │ ├── side.vue │ ├── tab.vue │ └── tmp.vue └── scrollBox.vue ├── composables ├── cloud.js └── request.js ├── layouts ├── default.vue └── manager.vue ├── middleware └── auth.global.ts ├── nuxt.config.ts ├── package.json ├── pages ├── index.vue ├── index │ ├── [...key].vue │ ├── index.vue │ └── query.vue ├── old │ ├── app │ │ ├── [appid].vue │ │ └── [appid] │ │ │ └── database.vue │ └── index.vue └── welcome.vue ├── public ├── favicon.ico ├── loading.html └── texture.png ├── server └── tsconfig.json ├── stores ├── app.ts ├── collection.ts ├── config.ts ├── document.ts ├── field.ts.bak ├── query.ts ├── tab.ts └── user.ts ├── tsconfig.json ├── uno.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "vue.codeActions.enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/README.md -------------------------------------------------------------------------------- /README/image-20230716135559277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/README/image-20230716135559277.png -------------------------------------------------------------------------------- /README/image-20230716135635973.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/README/image-20230716135635973.png -------------------------------------------------------------------------------- /README/image-20230716135655742.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/README/image-20230716135655742.png -------------------------------------------------------------------------------- /README/image-20230716135712479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/README/image-20230716135712479.png -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/app.vue -------------------------------------------------------------------------------- /assets/images/sponsor/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/assets/images/sponsor/alipay.jpg -------------------------------------------------------------------------------- /assets/images/sponsor/wepay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/assets/images/sponsor/wepay.jpg -------------------------------------------------------------------------------- /assets/scss/common.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/element/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/assets/scss/element/dark.scss -------------------------------------------------------------------------------- /assets/scss/element/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/assets/scss/element/index.scss -------------------------------------------------------------------------------- /components/applications/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/applications/list.vue -------------------------------------------------------------------------------- /components/applications/list/func.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/applications/list/func.vue -------------------------------------------------------------------------------- /components/applications/list/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/applications/list/item.vue -------------------------------------------------------------------------------- /components/database/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/detail.vue -------------------------------------------------------------------------------- /components/database/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/edit.vue -------------------------------------------------------------------------------- /components/database/fields.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/fields.vue -------------------------------------------------------------------------------- /components/database/history.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/history.vue -------------------------------------------------------------------------------- /components/database/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/list.vue -------------------------------------------------------------------------------- /components/database/list/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/list/item.vue -------------------------------------------------------------------------------- /components/database/response.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/response.vue -------------------------------------------------------------------------------- /components/database/run.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/run.vue -------------------------------------------------------------------------------- /components/database/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/database/table.vue -------------------------------------------------------------------------------- /components/layout/drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/drawer.vue -------------------------------------------------------------------------------- /components/layout/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/footer.vue -------------------------------------------------------------------------------- /components/layout/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/header.vue -------------------------------------------------------------------------------- /components/layout/loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/loading.vue -------------------------------------------------------------------------------- /components/layout/panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/panel.vue -------------------------------------------------------------------------------- /components/layout/twoColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/layout/twoColumn.vue -------------------------------------------------------------------------------- /components/manager/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/create.vue -------------------------------------------------------------------------------- /components/manager/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/detail.vue -------------------------------------------------------------------------------- /components/manager/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/edit.vue -------------------------------------------------------------------------------- /components/manager/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/header.vue -------------------------------------------------------------------------------- /components/manager/history.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/history.vue -------------------------------------------------------------------------------- /components/manager/runHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/runHistory.vue -------------------------------------------------------------------------------- /components/manager/side.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/side.vue -------------------------------------------------------------------------------- /components/manager/tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/tab.vue -------------------------------------------------------------------------------- /components/manager/tmp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/manager/tmp.vue -------------------------------------------------------------------------------- /components/scrollBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/components/scrollBox.vue -------------------------------------------------------------------------------- /composables/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/composables/cloud.js -------------------------------------------------------------------------------- /composables/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/composables/request.js -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/manager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/layouts/manager.vue -------------------------------------------------------------------------------- /middleware/auth.global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/middleware/auth.global.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/index/[...key].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/index/[...key].vue -------------------------------------------------------------------------------- /pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/index/index.vue -------------------------------------------------------------------------------- /pages/index/query.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/index/query.vue -------------------------------------------------------------------------------- /pages/old/app/[appid].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/old/app/[appid].vue -------------------------------------------------------------------------------- /pages/old/app/[appid]/database.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/old/app/[appid]/database.vue -------------------------------------------------------------------------------- /pages/old/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/old/index.vue -------------------------------------------------------------------------------- /pages/welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/pages/welcome.vue -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/public/loading.html -------------------------------------------------------------------------------- /public/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/public/texture.png -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/app.ts -------------------------------------------------------------------------------- /stores/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/collection.ts -------------------------------------------------------------------------------- /stores/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/config.ts -------------------------------------------------------------------------------- /stores/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/document.ts -------------------------------------------------------------------------------- /stores/field.ts.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/field.ts.bak -------------------------------------------------------------------------------- /stores/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/query.ts -------------------------------------------------------------------------------- /stores/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/tab.ts -------------------------------------------------------------------------------- /stores/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/stores/user.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/uno.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMTuan/laf_curd/HEAD/yarn.lock --------------------------------------------------------------------------------