Commit 8444d69f7090866787d80e6446df293428ee1427

Authored by boyang
1 parent ccce3814

fix: 修改计算器页面,prod2-45/46

components/EnergyDensityCalculator.vue
... ... @@ -974,9 +974,6 @@
974 974 </div>
975 975 <div class="fri-flex">
976 976 <div class="flex-item">
977   - <div class="dir-title"><span>&nbsp;</span></div>
978   - </div>
979   - <div class="flex-item">
980 977 <div class="dir-span"><span>Aluminum Tab Weight</span></div>
981 978 <div class="value-span">
982 979 <span
... ...
nuxt.config.ts
... ... @@ -50,8 +50,8 @@ export default defineNuxtConfig({
50 50 nitro: {
51 51 devProxy: {
52 52 "/shop": {
53   - //target: "http://47.89.254.121:8002/shop", // 线上代理地址
54   - target: "http://127.0.0.1:8002/shop",
  53 + target: "http://47.89.254.121:8002/shop", // 线上代理地址
  54 + // target: "http://127.0.0.1:8002/shop",
55 55 // target: process.env.BASE_URL || 'http://39.108.227.113:8002/shop', // 目标接口域名
56 56 changeOrigin: true, // 表示是否跨域
57 57 },
... ... @@ -65,8 +65,8 @@ export default defineNuxtConfig({
65 65 // 该配置用于服务端请求转发
66 66 routeRules: {
67 67 "/shop/**": {
68   - //proxy: "http://47.89.254.121:8002/shop/**",
69   - proxy: "http://127.0.0.1:8002/shop/**",
  68 + proxy: "http://47.89.254.121:8002/shop/**",
  69 + // proxy: "http://127.0.0.1:8002/shop/**",
70 70 // proxy: process.env.BASE_URL || 'http://39.108.227.113:8002/shop/**'
71 71 },
72 72  
... ...