Преглед на файлове

修复已盘点数不显示

liuyanpeng преди 3 години
родител
ревизия
95db87b402
променени са 2 файла, в които са добавени 17 реда и са изтрити 11 реда
  1. 1 1
      src/components/customer/InventoryDataProcessingStep4.vue
  2. 16 10
      webpack.dev.js

+ 1 - 1
src/components/customer/InventoryDataProcessingStep4.vue

@@ -94,7 +94,7 @@ const columns = reactive(
       title: '盘点总数',
       key: 'totalCount',
       dataIndex: 'totalCount',
-      width:180,
+      width:170,
     },
     {
       title: '已盘点数量',

+ 16 - 10
webpack.dev.js

@@ -9,7 +9,7 @@ module.exports = WebpackMerge.merge(baseConfig, {
   //避免其他模块修改,但是该模块未修改时候,重新构建,能够更快的进行增量构建
   //属于空间换时间的做法
   cache: true,
-  
+
   // 代码入口
   entry: {
     // 注册界面
@@ -57,49 +57,55 @@ module.exports = WebpackMerge.merge(baseConfig, {
       // eslint-disable-next-line max-len
       //'Content-Security-Policy': 'upgrade-insecure-requests; default-src \'none\'; base-uri \'self\'; frame-ancestors \'none\'; script-src \'self\' \'nonce-11111\'; connect-src \'self\'; form-action \'self\'; frame-src \'self\'; img-src \'self\'; font-src \'self\'; style-src \'self\' \'nonce-11111\'; manifest-src \'none\'; worker-src \'self\'; media-src \'self\'; object-src \'self\';',
     },
-    
+
     proxy: {
       '/api': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/static': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
+      },
+      '/content': {
+        target: 'http://localhost:83/',
+        ws: false,
+        changeOrigin: true,
+        secure: true,
       },
       '/dashboard': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/mock': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/authApi': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/Dictionary': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/Files': {
         target: 'http://localhost:83/',
         ws: false,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
       '/WebSocket': {
         target: 'http://localhost:83/',
@@ -115,7 +121,7 @@ module.exports = WebpackMerge.merge(baseConfig, {
         target: 'http://localhost:83/',
         ws: true,
         changeOrigin: true,
-        secure:true,
+        secure: true,
       },
     },
   },