yz 5 days ago
parent
commit
dca352df73

+ 1 - 1
src/router/views/index.js

@@ -381,7 +381,7 @@ export default [
                 },
                 component: () =>
                     import(
-                        /* webpackChunkName: "views" */ "@/views/forecast-summary/index"
+                        /* webpackChunkName: "views" */ "@/views/forecast-summary/index.vue"
                     )
             }
         ]

+ 4 - 0
src/views/forecast-audit/index.vue

@@ -276,6 +276,10 @@ export default {
 </script>
 
 <style scoped>
+
+::v-deep .el-col-md-8 {
+  width: 24.33333% !important;
+}
 .order-expand-content {
   padding: 8px 0 16px 0;
 }

+ 4 - 5
src/views/forecast-summary/index.scss

@@ -3,6 +3,10 @@
  * @description 定义预测汇总页面的样式规则
  */
 
+::v-deep .el-col-md-8 {
+  width: 24.33333% !important;
+}
+
 .forecast-summary {
   .el-tag {
     &.el-tag--success {
@@ -228,8 +232,3 @@
     }
   }
 }
-
-// 修复 el-col-md-8 宽度问题
-::v-deep .el-col-md-8 {
-  width: 24.33333% !important;
-}

+ 3 - 1
src/views/forecast-summary/index.vue

@@ -160,5 +160,7 @@ export default {
 </script>
 
 <style lang="scss">
-@import './index.scss';
+::v-deep .el-col-md-8 {
+  width: 24.33333% !important;
+}
 </style>

+ 5 - 0
src/views/order/factory/index.vue

@@ -89,6 +89,8 @@ export default {
     opt.menu = true
     // 工厂端列表不需要操作列
     opt.menu = false
+    opt.searchMenuSpan = 18;
+    opt.searchIndex = 3;
 
     return {
       option: opt,
@@ -222,6 +224,9 @@ export default {
 </script>
 
 <style scoped>
+::v-deep .el-col-md-8 {
+  width: 24.33333% !important;
+}
 .order-expand-content { padding: 8px 12px; }
 .expand-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
 .order-code { color: #666; font-size: 12px; }