Ver Fonte

数字货架vin分析

chenrui há 2 anos atrás
pai
commit
83ea6f8702

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1666236618250
+  "version": 1666658192181
 }

+ 9 - 3
src/views/numsGoodsShelves/customerAnalysis/list.vue

@@ -3,7 +3,7 @@
     <a-card size="small" :bordered="false">
       <a-spin :spinning="spinning" tip="Loading...">
         <div ref="tableSearch" class="table-page-search-wrapper">
-          <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
+          <a-form-model layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
             <a-row :gutter="15">
               <a-col :md="6" :sm="24">
                 <a-form-model-item label="货架名称" prop="providerSn">
@@ -81,8 +81,8 @@
                 </a>
               </a-col>
             </a-row>
-          </a-form>
-        </div>
+            </a-form>
+          </a-form-model></div>
         <div class="table-operator" v-if="statisticsObj">
           <a-alert type="info">
             <div slot="message" class="total-bar">
@@ -193,6 +193,9 @@ export default {
           ]
         }
       ],
+      rules: {
+        'providerSn': [{ required: true, message: '请选择货架', trigger: 'change' }]
+      },
       // 加载数据方法 必须为 Promise 对象
       loadData: parameter => {
         this.spinning = true
@@ -300,4 +303,7 @@ export default {
       margin-bottom: 6px;
     }
   }
+  .ant-select{
+    max-width: 300px !important;
+  }
 </style>