{"id":21115883,"url":"https://github.com/ddmy/postmanbook","last_synced_at":"2025-10-06T09:57:39.919Z","repository":{"id":37805294,"uuid":"200365578","full_name":"ddmy/postmanBook","owner":"ddmy","description":"【全栈】【前端+后端】快递收入记账本","archived":false,"fork":false,"pushed_at":"2023-11-10T07:12:58.000Z","size":1998,"stargazers_count":11,"open_issues_count":22,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-08T19:44:01.581Z","etag":null,"topics":["koa","mysql","nuxt"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ddmy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-03T11:04:02.000Z","updated_at":"2025-05-29T04:32:33.000Z","dependencies_parsed_at":"2024-11-20T02:01:35.948Z","dependency_job_id":"af4df5c3-6aa1-404c-9a2b-96bd1c1149e2","html_url":"https://github.com/ddmy/postmanBook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ddmy/postmanBook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddmy%2FpostmanBook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddmy%2FpostmanBook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddmy%2FpostmanBook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddmy%2FpostmanBook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ddmy","download_url":"https://codeload.github.com/ddmy/postmanBook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddmy%2FpostmanBook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278591264,"owners_count":26012028,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["koa","mysql","nuxt"],"created_at":"2024-11-20T02:01:25.373Z","updated_at":"2025-10-06T09:57:39.903Z","avatar_url":"https://github.com/ddmy.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# postmanBook\n\n\u003e[courier]\n\u003e这是一个'全栈'项目,\n\u003e快递员计件统计系统,\n\u003e在比较落后的地区,快递员的薪酬统计方式是比较原始和辛苦的,\n\u003e所以做这个简易的系统使用!\n\u003e微信小程序也在筹备中...\n\n## Build Setup\n\n``` bash\n修改根目录`config.default.js`为`config.js`并做好配置信息\n\n# install dependencies\n$ npm run install\n\n# serve with hot reload at localhost:3000\n$ npm run dev\n\n# build for production and launch server\n$ npm run build\n$ npm run start\n\n# generate static project\n$ npm run generate\n```\n\n## 建表\n```\nSET FOREIGN_KEY_CHECKS=0;\nDROP TABLE IF EXISTS `couriers`;\nCREATE TABLE `couriers` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `courier_id` int(11) NOT NULL,\n  `courier_name` varchar(255) NOT NULL,\n  `big` tinyint(1) DEFAULT NULL,\n  `small` tinyint(1) DEFAULT NULL,\n  `is_del` tinyint(4) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;\nDROP TABLE IF EXISTS `users`;\nCREATE TABLE `users` (\n  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户ID',\n  `uid` int(11) NOT NULL,\n  `username` varchar(255) NOT NULL,\n  `password` varchar(255) NOT NULL,\n  `nickname` tinytext,\n  `register_time` date DEFAULT '2019-01-01',\n  `gender` tinyint(4) DEFAULT '0',\n  `age` tinyint(4) DEFAULT '18',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;\nDROP TABLE IF EXISTS `record`;\nCREATE TABLE `record` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `record_id` varchar(255) NOT NULL,\n  `courier_id` int(11) NOT NULL,\n  `user_id` int(11) NOT NULL,\n  `size` tinyint(4) NOT NULL,\n  `time` datetime(6) NOT NULL,\n  `image` varchar(510) DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4;\nDROP TABLE IF EXISTS `courier_price`;\nCREATE TABLE `courier_price` (\n  `courier_id` int(11) NOT NULL,\n  `big` smallint(6) DEFAULT NULL,\n  `small` smallint(6) DEFAULT NULL,\n  PRIMARY KEY (`courier_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n```\n\nFor detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).\n\n## 技术栈\n``` bash\nnuxt + axios + antDesigne + vue + vueRouter + koa + koa-session + node-mysql + eslint\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddmy%2Fpostmanbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fddmy%2Fpostmanbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddmy%2Fpostmanbook/lists"}