{"id":18951070,"url":"https://github.com/akface/eeui-components","last_synced_at":"2026-02-17T12:31:57.822Z","repository":{"id":136908803,"uuid":"193891926","full_name":"akFace/eeui-components","owner":"akFace","description":"eeui-app 常用组件封装","archived":false,"fork":false,"pushed_at":"2019-06-26T12:43:37.000Z","size":5546,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-11T02:42:49.208Z","etag":null,"topics":["color-picker","components","eeui","eeui-plugin","weex","weex-color","weex-ui"],"latest_commit_sha":null,"homepage":null,"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/akFace.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-06-26T11:33:00.000Z","updated_at":"2024-01-15T05:32:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"3571e7cd-e192-4db6-96b7-5b3e1405c0f8","html_url":"https://github.com/akFace/eeui-components","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akFace/eeui-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akFace%2Feeui-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akFace%2Feeui-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akFace%2Feeui-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akFace%2Feeui-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akFace","download_url":"https://codeload.github.com/akFace/eeui-components/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akFace%2Feeui-components/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29543905,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T12:21:34.159Z","status":"ssl_error","status_checked_at":"2026-02-17T12:21:02.057Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["color-picker","components","eeui","eeui-plugin","weex","weex-color","weex-ui"],"created_at":"2024-11-08T13:26:12.694Z","updated_at":"2026-02-17T12:31:57.799Z","avatar_url":"https://github.com/akFace.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"#### 常用组件封装,部分迁移[weex-ui](https://github.com/alibaba/weex-ui)和[bui](https://github.com/bingo-oss/bui-weex)组件，并做了适配用于eeui，以及视觉优化调整\n\n### 1、颜色选择器\n\n#### gif演示\n\n\u003cfigure class=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/kang558/eeui-components/master/screenshot/colorpicker.gif\" width=\"400\"\u003e\n\u003c/figure\u003e\n\n``` vue\n// 使用\n\u003ctemplate\u003e\n    \u003cdiv class=\"app\"\u003e\n        \u003cColorPicker :show=\"show_color_picker\" @confirm=\"confirm\" @cancel=\"cancel\"\u003e\u003c/ColorPicker\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n\u003cscript\u003e\nimport ColorPicker from \"../components/ColorPicker.vue\"\nexport default {\n    components: { ColorPicker },\n    data() {\n        return {\n            show_color_picker: true,\n        }\n    },\n    mounted() {},\n    created() {\n    },\n    methods: {\n        confirm(result) {\n            // result 返回值\n            /**\n                {\n                    R: 14,\n                    G: 157,\n                    B: 144,\n                    A: 1,\n                    rgbaColor: 'rgba(14,157,144,1)',\n                    hexColor: '#119d90'\n                }\n\n            **/\n            this.show_color_picker = false;\n        },\n        cancel() {\n            this.show_color_picker = false;\n        },\n    },\n};\n\u003c/script\u003e\n\n```\n\n### API\n```\n// 初始化颜色\ndefaultConfig: {\n    valueR: 14,\n    valueG: 157,\n    valueB: 144,\n    valueA: 100,\n    validColorR: '#119d90',\n    validColorG: '#119d90',\n    validColorB: '#119d90',\n    validColorA: '#119d90',\n    invalidColorR: '#E0E0E0',\n    invalidColorG: '#E0E0E0',\n    invalidColorB: '#E0E0E0',\n    invalidColorA: '#E0E0E0',\n}\n```\n| Prop      | Type   |Required  | Default   | Description  |\n|-------------|------------|--------|--------|-----|\n| show | `Bool` | `N`|  `false` |显示与隐藏|\n| config | `Object` | `N`|  `{}` | 会替换掉默认的defaultConfig |\n| colorBoxStyle  | `Object` | `N`| `{}` | 大圆形的样式 |\n| hasOpacity  | `Bool` | `N`| `false`| 是否需要透明度 |\n| title | `String` | `N`|`颜色选择器` |  标题 |\n| cancelText | `String` |`N`| `取消` |  取消按钮 |\n| confirmText | `String` | `N`| `确定` |  确定按钮 |\n| mainBtnColor | `String` | `N`| `#119d90` | 确定按钮颜色 |\n| secondBtnColor | `String` | `N`| `#119d90` | 取消按钮颜色|\n| thirdText | `String` |`N`| `自定义` | 自定义按钮文本 |\n| thirdBtnColor | `String` |`N`| `#119d90` | 自定义按钮颜色 |\n\n### Event\n\n```\n//`@confirm=\"confirm\"`\n//`@cancel=\"cancel\"`\n```\n\n### 2、popup \n\n#### gif演示\n\u003cfigure class=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/kang558/eeui-components/master/screenshot/WxcPopup.gif\" width=\"400\"\u003e\n\u003c/figure\u003e\n\n[使用说明](https://github.com/alibaba/weex-ui/tree/master/packages/wxc-popup)\n\n### 3、Popover \n\n#### gif演示\n\u003cfigure class=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/kang558/eeui-components/master/screenshot/WxcPopover.gif\" width=\"400\"\u003e\n\u003c/figure\u003e\n\n[使用说明](https://github.com/alibaba/weex-ui/tree/master/packages/wxc-popover)\n\n\n### 4、 sliderbar 进度条\n[使用说明](https://github.com/alibaba/weex-ui/tree/master/packages/wxc-slider-bar)\n\n\n### 5、 Overlay 蒙层\n[使用说明](https://github.com/alibaba/weex-ui/tree/master/packages/wxc-overlay)\n\n\n### 6、 Radio 单选\n[使用说明](http://dev.bingocc.com/buiweex/docs/reference/bui-radio.html)\n\n\n### 7、 StatusBar 状态栏\n\n使用说明：\n\n| Prop      | Type   |Required  | Default   | Description  |\n|-------------|------------|--------|--------|-----|\n| customStyle | `Object` | `N`|  `{}` | 状态栏颜色样式 |\n\n### 8、 Tabbar\n[使用说明](http://dev.bingocc.com/buiweex/docs/reference/bui-tabbar.html)\n\n### 9、 Cellitem\n[使用说明](http://dev.bingocc.com/buiweex/docs/reference/bui-cell.html)\n\n### 10、弹框组件\n\n### dialog \n[使用说明](https://github.com/alibaba/weex-ui/tree/master/packages/wxc-dialog)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakface%2Feeui-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakface%2Feeui-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakface%2Feeui-components/lists"}