| | |
| | | [english](Readme_en.md) [中文](Readme_cn.md) |
| | | ## 说明 |
| | | HC小区管理系统是一套saas物业管理的系统,包括 房产、业主、 费用 (可以线上缴费)、报修(可以线上报修)、投诉建议、采购、巡检、停车、门径、道闸、监控、工作流、问卷和公告等功能。 |
| | | [english](Readme_en.md)|[中文](Readme_cn.md) |
| | | ## Introduction |
| | | HC community management system is a set of saas property management system, including real estate, owners, fees (payment can be made online), repair application (repair can be reported online), complaints and suggestions, procurement, inspection, parking, gates, gates, monitoring , workflow, questionnaires, and announcements. |
| | | |
| | | 相关代码:<br/> |
| | | 1、[物业系统前端](https://gitee.com/java110/MicroCommunityWeb) : 物业员工使用电脑端<br/> |
| | | 2、[物业系统后端](https://gitee.com/wuxw7/MicroCommunity): 核心业务处理端<br/> |
| | | 3、[业主手机端](https://gitee.com/java110/WechatOwnerService): 提供用户使用,包括投诉 建议,缴费、报修 等<br/> |
| | | 4、[物业手机版](https://gitee.com/java110/PropertyApp): 物业员工使用手机端<br/> |
| | | Related code:<br/><br/> |
| | | 1、[Front end of property system](https://gitee.com/java110/MicroCommunityWeb) : Property staff using computer terminal<br/> |
| | | 2、[Property system backend](https://gitee.com/wuxw7/MicroCommunity): core business processing<br/> |
| | | 3、[Owner's mobile phone](https://gitee.com/java110/WechatOwnerService): |
| | | Provide users with use, including complaints and suggestions, payment, repairs, etc.<br/> |
| | | 4、[Property mobile version](https://gitee.com/java110/PropertyApp): Property staff using mobile terminal<br/> |
| | | |
| | | ## 如何安装 |
| | | ## how to install |
| | | |
| | | 1、下载代码 <br/><br/> |
| | | git clone https://github.com/java110/MicroCommunity.git <br/> |
| | | 执行 mvn clean package 和 mvn clean install<br/><br/> |
| | | 2、添加hosts<br/><br/> |
| | | 127.0.0.1 dev.db.java110.com <br/> |
| | | 127.0.0.1 dev.zk.java110.com <br/> |
| | | 127.0.0.1 dev.kafka.java110.com <br/> |
| | | 127.0.0.1 dev.redis.java110.com <br/> |
| | | 127.0.0.1 api.java110.com <br/> |
| | | 127.0.0.1 dev.java110.com <br/><br/> |
| | | 3、安装mysql 导入TT.sql 和 hc_community.sql (文件在docs/db下)<br/><br/> |
| | | 4、安装redis 指定redis密码<br/><br/> |
| | | 5、修改模块service-开头的服务下的 application-dev.yml 和 dataSource.yml<br/> |
| | | application-dev.yml 中主要修改redis密码 |
| | | 1、[Development environment installation](docs/installHcDev_en.md) <br/> |
| | | 2、[Production environment installation](docs/installHcProd.md)<br/> |
| | | |
| | | ```yaml |
| | | jedis: |
| | | pool: |
| | | config: |
| | | maxTotal: 100 |
| | | maxIdle: 20 |
| | | maxWaitMillis: 20000 |
| | | host: dev.redis.java110.com |
| | | port: 6379 |
| | | timeout: 3000 |
| | | password: hc |
| | | ``` |
| | | 将 password: hc 中的hc 修改为redis 指定的密码 |
| | | ```yaml |
| | | spring: |
| | | profiles: |
| | | active: share |
| | | http: |
| | | encoding: |
| | | charset: UTF-8 |
| | | enabled: true |
| | | force: true |
| | | application: |
| | | name: community-service |
| | | redis: |
| | | database: 0 |
| | | host: dev.redis.java110.com |
| | | port: 6379 |
| | | password: hc |
| | | pool: |
| | | max-active: 300 |
| | | max-wait: 10000 |
| | | max-idle: 100 |
| | | min-idle: 0 |
| | | timeout: 0 |
| | | ``` |
| | | 将 password: hc 中的hc 修改为redis 指定的密码<br/> |
| | | dataSource.yml 中修改password密码<br/> |
| | | 注意 比如 service-api服务中是没有dataSource.yml 文件<br/> |
| | | 6、启动模块service-开头服务下的*ServiceApplicationStart.java文件中的main方法<br/> |
| | | 注意启动是没有顺序的,但是我们优先推荐您启动service-eureka<br/> |
| | | 7、下载前段代码 <br/> |
| | | git clone https://github.com/java110/MicroCommunityWeb.git <br/> |
| | | 8、修改app.js 中的地址<br/> |
| | | ```shell script |
| | | app.use('/callComponent', proxy('http://192.168.100.108:8008', opts)); |
| | | app.use('/app', proxy('http://192.168.100.108:8008', opts)); |
| | | ``` |
| | | 将192.168.100.108 修改为你后端的ip<br/> |
| | | 9、启动并且访问<br/> |
| | | npm start |
| | | ```shell script |
| | | PS C:\project\vip\MicroCommunityWeb> npm start |
| | | > micrcommunityweb@0.0.0 start C:\project\vip\MicroCommunityWeb |
| | | > node ./bin/www |
| | | ``` |
| | | 表示启动成功<br/> |
| | | 访问地址:http://localhost:3000 |
| | | ## how to use |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | ### 操作文档 |
| | | |
| | | [操作文档](http://www.homecommunity.cn/operateDoc) |
| | | |
| | | ### 技术文档 |
| | | |
| | | [技术文档](http://www.homecommunity.cn/devDoc) |
| | | |
| | | |
| | | ### 产品 |
| | | |
| | |  |
| | | |
| | | |
| | | ### 系统功能(function) |
| | | |
| | |  |
| | | [Operation Manual](https://github.com/java110/MicroCommunity/wiki) |
| | | |
| | | 主要系统功能请查看 |
| | | ## product |
| | | |
| | | 1、Mobile demonstration environment demo |
| | | |
| | |  |
| | | |
| | | 2、computer demo<br/> |
| | | url :http://demo.homecommunity.cn <br/> |
| | | admin account:admin/admin<br/> |
| | | property account:wuxw/admin<br/> |
| | | dev account:dev/Change the password yourself [How to modify](http://bbs.homecommunity.cn/pages/bbs/topic.html?topicId=102021110520080050) |
| | | |
| | | ## System functions |
| | | |
| | | Please check the main system functions |
| | | |
| | | [http://www.homecommunity.cn/devDoc/#/func/funcation](http://www.homecommunity.cn/devDoc/#/func/funcation) |
| | | [Feature list](http://bbs.homecommunity.cn/pages/bbs/topic.html?topicId=102022042459860343) |
| | | |
| | | ## running result(view) |
| | | 1.Type in the browser http://demo.homecommunity.cn/ As shown below |
| | | |
| | | ### 演示地址(demo) |
| | |  |
| | | |
| | | [http://www.homecommunity.cn/](http://www.homecommunity.cn/) |
| | | username: wuxw password: admin As shown below |
| | | |
| | | 物业 账号/密码:wuxw/admin |
| | | Click to log in to enter the following picture: |
| | | |
| | | 运维团队 账号/密码:admin/admin |
| | |  |
| | | |
| | | 开发团队 账号/密码:dev/(由于开发者权限较大,删除数据会影响稳定性,查看具体功能,可以单独部署在u_user 表中修改) |
| | |  |
| | | |
| | | ### 运行效果(view) |
| | | 1.在浏览器输入 http://localhost:3000/ 如下图 |
| | |  |
| | | |
| | |  |
| | | ## Participate and contribute |
| | | |
| | | 用户名为 wuxw 密码为 admin 如下图 |
| | | You can fork the code and pull request to merge the code after commit |
| | | |
| | | 点击登录,进入如下图: |
| | | |
| | |  |
| | | |
| | |  |
| | | |
| | |  |
| | | |
| | | |
| | | ### 加入我们(join) |
| | | |
| | | |
| | | 加入微小区交流群随时了解项目进度,和java110开发者零距离沟通 qq群号 857791253、1038870655、770542020、274026637 邮箱:928255095@qq.com |
| | | |
| | |  |
| | | |
| | | |
| | | |