Ver Fonte

库存管理 补货

ANG YU há 4 anos atrás
pai
commit
00aa30fb73
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      resources/views/inventory/stockOut/index.blade.php

+ 3 - 3
resources/views/inventory/stockOut/index.blade.php

@@ -11,7 +11,7 @@
                 </select>
                 <input placeholder="定位货主" id="ownerName" autocomplete="off" @input="定位货主($event)"
                        class="form-control form-control-sm tooltipTarget" style="width: 100px" title="输入关键字定位货主">
-                <button class="btn btn-sm btn-outline-info ml-3" @click="search()">查询</button>
+                <button class="btn btn-sm btn-outline-info ml-3" @click="search()" >查询</button>
 
                 <button type="button"
                         @click="orderItemExport(true)"
@@ -23,12 +23,12 @@
             <table class="table table-striped table-bordered table-hover card-body td-min-width-80" id="table">
                 <tr v-if="item.amount > 0 " v-for="(item,i) in details" @click="selectTr===i+1?selectTr=0:selectTr=i+1"
                     :class="selectTr===i+1?'focusing' : ''">
-                    <td>@{{ i }}</td>
+                    <td><input type="checkbox"> </td>
                     <td>@{{ item.customerid }}</td>
                     <td>@{{ item.sku }}</td>
                     <td>@{{ item.alternate_sku1 }}</td>
                     <td>
-                        <ul style="list-style: none" v-if="item.eaLocation>0">
+                        <ul style="list-style: none" v-if="item.eaLocation.length>0">
                             <li v-for="(v,k) in item.eaLocation" v-if="k<3 || item.moreEaLocation">@{{ v }}</li>
                             <a v-if="item.eaLocation.length >= 3" href="javascript:;"
                                @click="item.moreEaLocation = !(item.moreEaLocation)">展示更多</a>