# wawaji_admin **Repository Path**: Yun_WuYu/wawaji_admin ## Basic Information - **Project Name**: wawaji_admin - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 4 - **Created**: 2018-01-05 - **Last Updated**: 2021-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 云+物娱娃娃机后台管理系统 一,基本介绍: 云+物娱娃娃机后台管理系统是基于vue2开发,模块主要包括:登录、轮播图、娃娃机管理、用户管理、充值管理、游戏记录、订单管理模块、数据统计、后台设置、账号设置。 (注:域名配置文件:路径/src/config.js.example,自行将config.js.example文件复制命名为config.js,并在config.js文件中根据项目域名配置API域名) 二,技术栈: vue2+vue-router+webpack+axios 三,项目运行/打包 ``` bash # 安装依赖 npm install # 开发调试 npm run dev # 项目打包,会生成 `dist` 目录(nginx配置时会用到) npm run build ``` For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). # nginx配置 ```nginx server { listen 80; root /path/to/project/dist; server_name admin.domain.com; index index.html; location / { add_header Cache-Control no-store; try_files $uri $uri/ /index.html?$args; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 1d; } location ~ .*\.(js|css)?$ { expires 12h; } } ```