{"id":20513326,"url":"https://github.com/plh97/component","last_synced_at":"2025-10-07T20:14:06.185Z","repository":{"id":57141844,"uuid":"117685584","full_name":"plh97/component","owner":"plh97","description":"📋make some component , welcome visit my blog","archived":false,"fork":false,"pushed_at":"2018-05-08T14:06:15.000Z","size":14841,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-12T00:32:21.961Z","etag":null,"topics":["component","css-modules","javascript","rollup"],"latest_commit_sha":null,"homepage":"https://www.pipk.top","language":"JavaScript","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/plh97.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}},"created_at":"2018-01-16T13:13:47.000Z","updated_at":"2022-09-06T01:42:04.000Z","dependencies_parsed_at":"2022-09-05T07:31:35.639Z","dependency_job_id":null,"html_url":"https://github.com/plh97/component","commit_stats":null,"previous_names":["pengliheng/component"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/plh97/component","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plh97%2Fcomponent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plh97%2Fcomponent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plh97%2Fcomponent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plh97%2Fcomponent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plh97","download_url":"https://codeload.github.com/plh97/component/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plh97%2Fcomponent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278380463,"owners_count":25977216,"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-04T02:00:05.491Z","response_time":63,"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":["component","css-modules","javascript","rollup"],"created_at":"2024-11-15T21:10:05.198Z","updated_at":"2025-10-07T20:14:06.138Z","avatar_url":"https://github.com/plh97.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/pengliheng/component.svg?branch=master)](https://travis-ci.org/pengliheng/chatroom)\n[![author](https://img.shields.io/badge/author-peng-blue.svg)](https://www.penlh.com)\n[![Node.js Version](https://img.shields.io/badge/node.js-9.2.0-blue.svg)](http://nodejs.org/download)\n![Size](https://github-size-badge.herokuapp.com/pengliheng/chatroom.svg)\n\n## Thought:\n- [ ] i dont wanna to write in my off-work time,wannan to read some book about js essence. and set my boss in other place. that because i don't wanna to repect work.  \n- [ ] js 和普通语言的不同之处在于，它是基于继承的面向对象语言，这是非常灵活的。\n\n\n## TODO\n- [x] 将移动端树表做好，表格点击帅选，弹出树，之后再隐藏。。\n- [x] css代码单独提取出来压缩后居然有200kb+，需要精简。。\n\n\n## usage\n[效果预览](./test/index.html)\n\n#### 如果是直接引入\n```html\n\u003cscript src=\"path/to/component.js\"\u003e\u003c/script\u003e\n```\n##### 当你直接引入的时候，组件将作为全局变量直接可以获取，\n\n- ### 用法\n\t```js\n\tMessage('消息');\n\t// 或者\n\tMessage({\n\t\t// 消息类型，默认info,可选error success warning\n\t\ttype: \"info\",\t\t\t\t\n\t\t// 间隔多久消失。默认3s\n\t\ttime: 1000,\t\t\t\t\t\n\t\tcontent: `弹出框内容！`,\n\t\tnext: function(){\n\t\t\t// to do something\n\t\t}\n\t})\n\t```\n\t```js\n\t//如果不输入参数，默认给全屏加载中...\n\tSpin();\n\t// 输入同样参数调用2次取消加载中..\n\tSpin();\n\n\t// 给某个dom元素添加加载中...的样式\n\tSpin({\n\t\tdom:$('.container')\n\t})\n\t```\n\t```js\n\tModal({\n\t\ttitle: `标题`,\n\t\tcontent: `\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t`,\n\t\tnext: function(){\n\t\t\tconsole.log(\"回调函数\")\n\t\t}\n\t})\n\tModalInfo({\n\t\ttype: `error`, // info/success/error/warning/delete/confirm\n\t\ttitle: `标题`,\n\t\tcontent: `\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t`,\n\t\tnext: function(){\n\t\t\tconsole.log(\"确认\")\n\t\t}\n\t})\n\t```\n\t### info\n\t![](http://oy82lbvct.bkt.clouddn.com/info.png)\n\t### success\n\t![](http://oy82lbvct.bkt.clouddn.com/success.png)\n\t### error\n\t![](http://oy82lbvct.bkt.clouddn.com/error.png)\n\t### delete\n\t![](http://oy82lbvct.bkt.clouddn.com/delete.png)\n\t### confirm\n\t![](http://oy82lbvct.bkt.clouddn.com/confirm.png)\n\n\t---\n#### 如果你用npm，就可以用包的形式将组件引入\n`yarn add peng-component`\n或者\n`npm install peng-component -s`\n```js\nimport {pc,mobile} from \"peng-component\";\n```\n接下来你打印看一下，pc端所有组件都在里面\n```js\nconsole.log(pc);\nvar message = pc.message;\nvar modalInfo = pc.modalInfo;\nvar spin = pc.spin;\n```\n用法\n- ### message 消息组件\n\t```js\n\t//简单用法\n\tmessage('你好吗~');\n\t//完整用法\n\tmessage({\n\t\t// 消息类型，默认info,可选error success warning\n\t\ttype: \"info\",\t\t\t\t\n\t\t// 间隔多久消失。默认3s\n\t\ttime: 1000,\t\t\t\t\t\n\t\tcontent: `弹出框内容！`,\n\t\tnext: function(){\n\t\t\t// to do something\n\t\t}\n\t})\n\t```\n- ### modal / modalInfo 弹出框组件\n\t```js\n\t// 简洁用法\n\tmodalInfo('说点什么吧！');\n\t// 完整用法\n\tmodal({\n\t\ttitle: `标题`,\n\t\tcontent: `\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t`,\n\t\tnext: function(){\n\t\t\tconsole.log(\"确认\")\n\t\t}\n\t})\n\tmodalInfo({\n\t\ttype: `error`, // info/success/error/warning\n\t\ttitle: `标题`,\n\t\tcontent: `\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t\t\u003cp\u003eSome contents...\u003c/p\u003e\n\t\t`,\n\t\tnext: function(){\n\t\t\tconsole.log(\"确认\")\n\t\t}\n\t})\n\t```\n- ### spin 加载中...组件\n\t```js\n\t//如果不输入参数，默认给全屏加载中...\n\tspin();\n\t// 输入同样参数调用2次取消加载中..\n\tspin();\n\n\t// 给某个dom元素添加加载中...的样式\n\tspin({\n\t\tdom:document.querySelector('.container')\n\t})\n\t// 再次调用，取消加载中...\n\tspin({\n\t\tdom:document.querySelector('.container')\n\t})\n\t```\n- ### tree 树形图组件\n\t```js\n\ttree({\n\t\t// ifselect: false,是否加载之前选好的，默认true\n\t\tbeforeSelect:[\"法塞特家族酒庄品鉴酒仓库\",\"法塞特家族酒庄配件仓库\"],// 之前选好的内容\n\t\t// select_model: \"checkbox\", //多选\n\t\tselect_model: \"radio\", //单选\n\t\tdata: [\n\t\t\t{id: \"05\", name: \"法塞特家族酒庄仓库\", pId: \"\", sid: 527, type: \"\"},\n\t\t\t{id: \"0501\", name: \"法塞特家族酒庄正品仓库\", pId: \"05\", sid: 528, type: \"正品\"},\n\t\t\t{id: \"0502\", name: \"法塞特家族酒庄业务用酒仓库\", pId: \"05\", sid: 529, type: \"赠品\"},\n\t\t\t{id: \"0503\", name: \"法塞特家族酒庄品鉴酒仓库\", pId: \"05\", sid: 530, type: \"试用装\"},\n\t\t\t{id: \"0504\", name: \"法塞特家族酒庄物料仓库\", pId: \"05\", sid: 531, type: \"物料\"},\n\t\t\t{id: \"0505\", name: \"法塞特家族酒庄配件仓库\", pId: \"05\", sid: 532, type: \"配件\"},\n\t\t\t{id: \"0506\", name: \"法塞特家族酒庄包材仓库\", pId: \"05\", sid: 533, type: \"包材\"},\n\t\t\t{id: \"0507\", name: \"上海酒庄门店正品库\", pId: \"05\", sid: 614, type: \"正品\"},\n\t\t\t{id: \"0508\", name: \"上海酒庄门店业务用酒仓\", pId: \"05\", sid: 615, type: \"正品\"},\n\t\t\t{id: \"0509\", name: \"上海酒庄门店品鉴酒仓\", pId: \"05\", sid: 616, type: \"正品\"},\n\t\t\t{id: \"0510\", name: \"上海酒庄门店厨房用品仓\", pId: \"05\", sid: 617, type: \"正品\"},\n\t\t\t{id: \"0511\", name: \"上海酒庄门店样酒仓\", pId: \"05\", sid: 618, type: \"正品\"},\n\t\t\t{id: \"0512\", name: \"上海代保管仓\", pId: \"05\", sid: 619, type: \"正品\"}\n\t\t],\n\t\tnext: doms =\u003e console.log(doms)\n\t})\n\t```\n- ### table 表格组件\n\t```js\n\ttable({\n\t\tifselect: true,\n\t\tbeforeSelect:[\"法塞特银川商贸有限公司\",\"宁夏一带一路供应链股份有限公司\"],\n\t\tselect_model: \"checkbox\",\n\t\t// select_model:\"radio\",\n\t\tdata: [\n\t\t\t{\"id\":\"01d167cc9e864b038a3b9b26737d7e2d\",\"parent_ids\":\"0\",\"name\":\"111\",\"sort\":30,\"code\":\"001001014013\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"11521\",\"edu_user_name\":\"111\"},\n\t\t\t{\"id\":\"32f08cdc623f41f99c614fe1b88c1c60\",\"parent_ids\":\"0\",\"name\":\"法塞特银川商贸有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014012\",\"type\":\"5\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"update_by\":\"30900\",\"update_date\":1514874616000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"11406\",\"edu_user_name\":\"银川品牌店\"},\n\t\t\t{\"id\":\"42bfc2195d944b0ab79905991475d373\",\"parent_ids\":\"0\",\"name\":\"法塞特（浙江）供应链管理有限公司\",\"sort\":30,\"code\":\"001001014005\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"10445\",\"edu_user_name\":\"法塞特（浙江）供应链管理有限公司\"},\n\t\t\t{\"id\":\"90a1b87797e94758bfdc91ec88fdf30c\",\"parent_ids\":\"0\",\"name\":\"法塞特（福建）供应链管理有限公司\",\"sort\":30,\"code\":\"001001014005001\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014005\",\"corp_name\":\"法塞特（浙江）供应链管理有限公司\",\"dept_id\":\"e0e9b3f94f264c8bb979618f44b2e3cf\",\"dept_code\":\"001001014005\",\"dept_name\":\"法塞特（浙江）供应链管理有限公司\",\"edu_user_id\":\"10446\",\"edu_user_name\":\"法塞特（福建）供应链管理有限公司\"},\n\t\t\t{\"id\":\"ff808081600fcb5f016010b0a87e00d2\",\"parent_ids\":\"0\",\"name\":\"宁夏圣路易.丁酒庄销售有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014011\",\"type\":\"1\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1512108501000,\"update_by\":\"30155\",\"update_date\":1514869647000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"圣路易\u0026middot;丁酒庄销售有限公司\"},\n\t\t\t{\"id\":\"ff8080816010d06e0160151416870111\",\"parent_ids\":\"0\",\"name\":\"宁夏一带一路供应链股份有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014012\",\"type\":\"1\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1512182126000,\"update_by\":\"30158\",\"update_date\":1512182126000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"宁夏一带一路供应链股份有限公司\"},\n\t\t\t{\"id\":\"ff8080816082dae40160960dd02e0451\",\"parent_ids\":\"0\",\"name\":\"宁夏圣路易.丁葡萄酒庄（有限公司）\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"\",\"type\":\"2\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1514345975000,\"update_by\":\"30158\",\"update_date\":1514345975000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"宁夏圣路易.丁葡萄酒庄（有限公司）\"},\n\t\t\t{\"id\":\"ff808081609b096a01609b3e493c0033\",\"parent_ids\":\"0\",\"name\":\"顺丰快递\",\"sort\":30,\"area_id\":\"11101\",\"code\":\"\",\"type\":\"6\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30150\",\"create_date\":1514433038000,\"update_by\":\"30150\",\"update_date\":1514433038000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"顺丰快递\"}\n\t\t],\n\t\tnext: doms =\u003e console.log(doms)\n\t})\n\t```\n- ### treetable 树表组件\n\t```js\n\ttreeTable({\n\t\tifselect: true,\n\t\tbeforeSelect:[\"法塞特银川商贸有限公司\",\"宁夏一带一路供应链股份有限公司\"],\n\t\tselect_model:\"checkbox\",\n\t\tdata: {\n\t\t\ttitle:[\n\t\t\t\t{id: \"1\", name: \"供应商\"},\n\t\t\t\t{id: \"2\", name: \"客户\"},\n\t\t\t\t{id: \"3\", name: \"供应商|客户\"},\n\t\t\t\t{id: \"6\", name: \"快递公司\"},\n\t\t\t\t{id: \"4\", name: \"经销商\"},\n\t\t\t\t{id: \"5\", name: \"门店\"}\n\t\t\t],\n\t\t\tcontent:[\n\t\t\t\t{\"id\":\"01d167cc9e864b038a3b9b26737d7e2d\",\"parent_ids\":\"0\",\"name\":\"111\",\"sort\":30,\"code\":\"001001014013\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"11521\",\"edu_user_name\":\"111\"},\n\t\t\t\t{\"id\":\"32f08cdc623f41f99c614fe1b88c1c60\",\"parent_ids\":\"0\",\"name\":\"法塞特银川商贸有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014012\",\"type\":\"5\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"update_by\":\"30900\",\"update_date\":1514874616000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"11406\",\"edu_user_name\":\"银川品牌店\"},\n\t\t\t\t{\"id\":\"42bfc2195d944b0ab79905991475d373\",\"parent_ids\":\"0\",\"name\":\"法塞特（浙江）供应链管理有限公司\",\"sort\":30,\"code\":\"001001014005\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"10445\",\"edu_user_name\":\"法塞特（浙江）供应链管理有限公司\"},\n\t\t\t\t{\"id\":\"90a1b87797e94758bfdc91ec88fdf30c\",\"parent_ids\":\"0\",\"name\":\"法塞特（福建）供应链管理有限公司\",\"sort\":30,\"code\":\"001001014005001\",\"type\":\"4\",\"grade\":\"1\",\"USEABLE\":\"1\",\"del_flag\":\"0\",\"corp_code\":\"001001014005\",\"corp_name\":\"法塞特（浙江）供应链管理有限公司\",\"dept_id\":\"e0e9b3f94f264c8bb979618f44b2e3cf\",\"dept_code\":\"001001014005\",\"dept_name\":\"法塞特（浙江）供应链管理有限公司\",\"edu_user_id\":\"10446\",\"edu_user_name\":\"法塞特（福建）供应链管理有限公司\"},\n\t\t\t\t{\"id\":\"ff808081600fcb5f016010b0a87e00d2\",\"parent_ids\":\"0\",\"name\":\"宁夏圣路易.丁酒庄销售有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014011\",\"type\":\"1\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1512108501000,\"update_by\":\"30155\",\"update_date\":1514869647000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"圣路易\u0026middot;丁酒庄销售有限公司\"},\n\t\t\t\t{\"id\":\"ff8080816010d06e0160151416870111\",\"parent_ids\":\"0\",\"name\":\"宁夏一带一路供应链股份有限公司\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"001001014012\",\"type\":\"1\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1512182126000,\"update_by\":\"30158\",\"update_date\":1512182126000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"宁夏一带一路供应链股份有限公司\"},\n\t\t\t\t{\"id\":\"ff8080816082dae40160960dd02e0451\",\"parent_ids\":\"0\",\"name\":\"宁夏圣路易.丁葡萄酒庄（有限公司）\",\"sort\":30,\"area_id\":\"76401\",\"code\":\"\",\"type\":\"2\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30158\",\"create_date\":1514345975000,\"update_by\":\"30158\",\"update_date\":1514345975000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"宁夏圣路易.丁葡萄酒庄（有限公司）\"},\n\t\t\t\t{\"id\":\"ff808081609b096a01609b3e493c0033\",\"parent_ids\":\"0\",\"name\":\"顺丰快递\",\"sort\":30,\"area_id\":\"11101\",\"code\":\"\",\"type\":\"6\",\"grade\":\"1\",\"address\":\"\",\"zip_code\":\"\",\"master\":\"\",\"phone\":\"\",\"fax\":\"\",\"email\":\"\",\"USEABLE\":\"1\",\"PRIMARY_PERSON\":\"\",\"DEPUTY_PERSON\":\"\",\"create_by\":\"30150\",\"create_date\":1514433038000,\"update_by\":\"30150\",\"update_date\":1514433038000,\"remarks\":\"\",\"del_flag\":\"0\",\"corp_code\":\"001001014\",\"corp_name\":\"法塞特酒业（上海）\",\"dept_id\":\"c7f76ff996244d08907911cba86597fc\",\"dept_code\":\"001001014\",\"dept_name\":\"法塞特酒业（上海）\",\"edu_user_id\":\"\",\"edu_user_name\":\"顺丰快递\"}\n\t\t\t]\n\t\t},\n\t\tnext: doms =\u003e console.log(doms)\n\t})\n\t```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplh97%2Fcomponent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplh97%2Fcomponent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplh97%2Fcomponent/lists"}