管理员账号:admin 密码:123456
- nodejs v14.21.3、v12.22.12
- vue 2.6
- elementUI 2.15
npm run dev
npm run build
编译后项目文件 dist
yarn
yarn dev
yarn build
src/views/front
src/views/admin
src/config/index.js
src/utils/request.js
src/router/index.js
每新增一个页面,需要在路由中配置该页面的跳转路由
// 商品详情
{
path: '/product/:id',
name: 'ProductDetail',
component: () => import('@/views/front/components/ProductDetail.vue'),
props: true
}
src/views/admin/Index.vue
切换菜单,自动加载对应的视图
src/views/admin/Index.vue
src/config/index.js
vue.config.js
修改前端跨域请求后端的域名地址
module.exports = {
publicPath: './',
devServer: {
disableHostCheck: true,
port: 9000,
proxy: {
'/api/': {
target: 'http://127.0.0.1:8088', // 测试环境
changeOrigin: true, // 是否跨域
pathRewrite: {
'^/api/': ''
}
},
},
},
chainWebpack: config => {
config.plugin('html')
.tap(args => {
args[0].title = '智慧其心';
return args;
})
}
}
每个请求路径,会自动带上/api/
http://localhost:9000/api/v1/carousels/getAllCarousels
src/api/index.js
-
常见问题:文件上传请求地址是在indo.vue代码中,而不是引用index.js里面定义的,所以导致跨域问题
-
解决办法: 为了确保文件上传请求也通过代理进行,你可以将文件上传的 URL 修改为相对路径,并确保它符合代理配置
com/cows/config/WebConfig.java
package com.cows.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
*
* @Description: 启用跨域资源共享
*
* */
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://127.0.0.1:9000") // 前端项目的地址
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true);
}
};
}
}
src/store/modules/user.js
- 配置新增页面到路由中
src/router/index.js
node版本 16 18 可能会有问题
npm 版本 6.14.18
src/config/index.js
// const baseUrl = 'http://127.0.0.1:8088' // 测试环境地址
const baseUrl = 'http://81.71.17.188:8088' // 产线地址
export {
baseUrl
}
vue.config.js
module.exports = {
publicPath: './',
devServer: {
disableHostCheck: true,
port: 9000,
proxy: {
'/api/': {
// target: 'http://127.0.0.1:8088', // 测试环境
target: 'http://81.71.17.188:8088', // 产线地址
changeOrigin: true, // 是否跨域
pathRewrite: {
'^/api/': ''
}
},
},
},
chainWebpack: config => {
config.plugin('html')
.tap(args => {
args[0].title = '智慧其心';
return args;
})
}
}
npm run build
将dist文件夹下的文件,放到服务器上
npm install
npm run serve