# message-ui **Repository Path**: laughing_fzh/message-ui ## Basic Information - **Project Name**: message-ui - **Description**: 基于vue+element-ui的短信任务平台前端,可定时发送天气预报短信、生日祝福短信、自定义配置短信等 - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-07-23 - **Last Updated**: 2021-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 短信任务管理平台 ## About 此项目是 vue + element-ui 短信任务平台前端,可定时发送天气预报短信、生日祝福短信、自定义配置短信等。 后台地址:https://github.com/laughingfuzihao/message 短信效果: ![docker1](https://github.com/laughingfuzihao/message/blob/master/src/main/resources/static/pic/pic1.jpg) 界面: ![docker1](https://github.com/laughingfuzihao/message/blob/master/src/main/resources/static/pic/pic2.png) ![docker1](https://github.com/laughingfuzihao/message/blob/master/src/main/resources/static/pic/pic3.png) ![docker1](https://github.com/laughingfuzihao/message/blob/master/src/main/resources/static/pic/pic4.png) ## 技术选型 vue2 + vuex + vue-router + element-ui ## 项目运行 ``` npm install 或 yarn npm run dev 访问: http://localhost:9520/#/ # 暂无开发登录功能,输入任意用户名密码登录 ``` ## 项目部署 ``` npm run build ``` 项目即打包到manage文件夹下,可以用tomcat或nginx进行部署,这边介绍采用nginx. ``` nginx -t nginx: the configuration file /usr/local/webserver/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/webserver/nginx/conf/nginx.conf test is successful vim /usr/local/webserver/nginx/conf/nginx.conf ``` server写入 ``` server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location /manage{ alias /usr/tomcat/manage/; index index.html; try_files $uri $uri/ /index.html last; } } ``` 重启刷新 `nginx -s reload` 如果有帮助,请点亮一颗星,如有问题请联系-微信号:qq619426619