Zhouzhendong 5 vuotta sitten
vanhempi
commit
f2abe19e11
43 muutettua tiedostoa jossa 67 lisäystä ja 63 poistoa
  1. 6 5
      resources/js/queryForm/header.js
  2. 3 0
      resources/sass/text.scss
  3. 4 2
      resources/views/customer/project/area.blade.php
  4. 2 2
      resources/views/customer/project/index.blade.php
  5. 1 1
      resources/views/finance/billConfirmation.blade.php
  6. 1 1
      resources/views/finance/instantBill.blade.php
  7. 2 2
      resources/views/inventory/statement/changeInventory.blade.php
  8. 2 2
      resources/views/inventory/statement/dailyLog.blade.php
  9. 2 2
      resources/views/inventory/statement/inventoryCompare.blade.php
  10. 3 3
      resources/views/inventory/stockInventory/inventoryMission.blade.php
  11. 1 1
      resources/views/inventory/stockInventory/mission.blade.php
  12. 1 1
      resources/views/maintenance/role/index.blade.php
  13. 1 1
      resources/views/maintenance/user/index.blade.php
  14. 2 4
      resources/views/order/index/delivering.blade.php
  15. 1 1
      resources/views/order/index/index.blade.php
  16. 1 1
      resources/views/order/issue/index.blade.php
  17. 1 1
      resources/views/order/issue/performance.blade.php
  18. 2 2
      resources/views/order/issue/workload.blade.php
  19. 1 1
      resources/views/order/tracking/index.blade.php
  20. 1 1
      resources/views/order/wave/search.blade.php
  21. 2 2
      resources/views/package/weigh/index.blade.php
  22. 1 1
      resources/views/package/weigh/statistics.blade.php
  23. 2 2
      resources/views/package/weightExcepted/index.blade.php
  24. 1 1
      resources/views/personnel/laborReport/index.blade.php
  25. 1 1
      resources/views/personnel/report.blade.php
  26. 1 1
      resources/views/process/index.blade.php
  27. 1 1
      resources/views/process/statistic.blade.php
  28. 1 1
      resources/views/procurement/finance/checkBill.blade.php
  29. 1 1
      resources/views/procurement/finance/monthlyBillReport.blade.php
  30. 1 1
      resources/views/procurement/finance/procurementBill.blade.php
  31. 1 1
      resources/views/procurement/procurement/index.blade.php
  32. 2 2
      resources/views/rejected/search/analyze.blade.php
  33. 3 3
      resources/views/rejected/search/general.blade.php
  34. 1 1
      resources/views/store/checkingReceive/mission.blade.php
  35. 1 1
      resources/views/store/checkingReceive/show.blade.php
  36. 1 1
      resources/views/store/deliveryAppointment/list.blade.php
  37. 1 1
      resources/views/store/fast/index.blade.php
  38. 1 1
      resources/views/store/fast/storeItem.blade.php
  39. 1 1
      resources/views/store/inStorage/index.blade.php
  40. 1 1
      resources/views/store/inStorage/storeItem.blade.php
  41. 1 1
      resources/views/transport/waybill/delivering.blade.php
  42. 1 1
      resources/views/transport/waybill/index.blade.php
  43. 2 2
      resources/views/transport/waybill/waybillFinancialSnapshot/index.blade.php

+ 6 - 5
resources/js/queryForm/header.js

@@ -1,4 +1,4 @@
-var checkData = [];
+window.checkData = [];
 window.sort=require('../utilities/sort');
 window.Header = function getHeader(object) {
     let _targetDom = object.el ? document.getElementById(object.el) : document.getElementsByTagName("table")[0];//基点元素
@@ -55,11 +55,12 @@ window.Header = function getHeader(object) {
             let check = document.createElement("input");
             check.type = "checkbox";
             check.id = "checkAll";
-            let trs = _targetDom.getElementsByTagName("tr");
+            let trs = _targetDom.children;
+            while(trs[0].tagName !== 'TR')trs = trs[0].children;
             check.onchange = function () {
                 if (event.target.checked){
                     for (let i=0;i<trs.length;i++){
-                        let checkbox = getTargetChildNode(trs[i].getElementsByTagName("td")[0]);
+                        let checkbox = getTargetChildNode(trs[i].children[0]);
                         if (!checkbox.checked){
                             checkData.push(checkbox.value);
                             checkbox.checked = true;
@@ -68,13 +69,13 @@ window.Header = function getHeader(object) {
                 }else{
                     checkData = [];
                     for (let i=0;i<trs.length;i++){
-                        let checkbox = getTargetChildNode(trs[i].getElementsByTagName("td")[0]);
+                        let checkbox = getTargetChildNode(trs[i].children[0]);
                         if (checkbox.checked)checkbox.checked = false;
                     }
                 }
             };
             for (let i=0;i<trs.length;i++){
-                let checkbox = getTargetChildNode(trs[i].getElementsByTagName("td")[0]);
+                let checkbox = getTargetChildNode(trs[i].children[0]);
                 if (checkbox) checkbox.onchange = function () {
                     if (event.target.checked)checkData.push(checkbox.value);
                     else checkData.splice(checkData.indexOf(checkbox.value),1);

+ 3 - 0
resources/sass/text.scss

@@ -225,4 +225,7 @@
 //规定最小宽度
 .td-min-width-80 tr td{
     min-width: 80px;
+}
+.z-index-1099{
+    z-index: 1099;
 }

+ 4 - 2
resources/views/customer/project/area.blade.php

@@ -16,13 +16,13 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item" @click="areaExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="areaExport(true)" href="javascript:">导出所有页</a>
                 </div>
                 <button class="ml-1 btn btn-sm btn-outline-primary" data-toggle="modal" data-target="#selectedOwner">新 增</button>
             </div>
-            <table class="table table-sm table-striped table-hover table-bordered" id="table">
+            <table class="table table-sm table-striped table-hover table-bordered td-min-width-80" id="table">
                 <tr v-for="(area,i) in areas">
                     <td>
                         <label><input type="checkbox" :value="area.id"></label>
@@ -239,6 +239,8 @@
                     $("#area_"+index).slideToggle();
                 },
                 areaExport(isAll){
+                    console.log(checkData);
+                    return;
                     let url = '{{url('customer/project/area/export')}}';
                     let token='{{ csrf_token() }}';
                     excelExport(isAll,checkData,url,this.sum,token);

+ 2 - 2
resources/views/customer/project/index.blade.php

@@ -47,7 +47,7 @@
                     data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                 导出Excel
             </button>
-            <div class="dropdown-menu">
+            <div class="dropdown-menu z-index-1099">
                 <a class="dropdown-item" @click="executeExport(false)" href="javascript:">导出勾选内容</a>
                 <a class="dropdown-item" @click="executeExport(true)" href="javascript:">导出所有页</a>
             </div>
@@ -56,7 +56,7 @@
         <div class="alert alert-success h1">{{Session::get('successTip')}}</div>
         @endif
         <div>
-            <table class="table table-sm text-nowrap table-striped table-hover" id="table">
+            <table class="table table-sm text-nowrap table-striped table-hover td-min-width-80" id="table">
                 <tr v-for="(owner,i) in owners" :class="owner.id==id ? 'focusing' : ''"  @click="(selectTableRow(owner.id,$event)) && (id=owner.id)">
                     <td>
                         <label><input type="checkbox" :value="owner.id"></label>

+ 1 - 1
resources/views/finance/billConfirmation.blade.php

@@ -18,7 +18,7 @@
             @can("结算管理-账单确认-重置账单确认")<button data-toggle="modal" data-target="#resetBillConfirmation" class="btn btn-sm btn-outline-primary">重置账单确认</button>@endcan
         </div>
         <div>
-            <table class="table table-sm text-nowrap table-striped table-hover" id="table">
+            <table class="table table-sm text-nowrap table-striped table-hover td-min-width-80" id="table">
                 <tr v-for="(bill,i) in bills">
                     <td>
                         <label><input type="checkbox" :value="bill.id"></label>

+ 1 - 1
resources/views/finance/instantBill.blade.php

@@ -36,7 +36,7 @@
             @can("结算管理-即时账单-重置即时账单")<button data-toggle="modal" data-target="#resetInstantBill" class="btn btn-sm btn-outline-primary">重置即时账单</button>@endcan
         </div>
         <div>
-            <table class="table table-sm text-nowrap" id="table">
+            <table class="table table-sm text-nowrap td-min-width-80" id="table">
                 <tbody v-for="(bill,i) in bills" :class="i%2==0 ? 'bg-light-gray' : 'bg-white'">
                 <tr>
                     <td :rowspan="bill.rowspan">

+ 2 - 2
resources/views/inventory/statement/changeInventory.blade.php

@@ -9,12 +9,12 @@
                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
             导出Excel
         </button>
-        <div class="dropdown-menu">
+        <div class="dropdown-menu z-index-1099">
             <a class="dropdown-item" @click="processExport(false)" href="javascript:">导出勾选内容</a>
             <a class="dropdown-item" @click="processExport(true)" href="javascript:">导出所有页</a>
         </div>
     </span>
-    <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2" id="table">
+    <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2 td-min-width-80" id="table">
         <tr v-for="(oracleActTransactingLog,i) in oracleActTransactingLogs" @click="selectedColor(oracleActTransactingLog.id,$event)">
             <td>
                 <input class="checkItem" type="checkbox" :value="oracleActTransactingLog">

+ 2 - 2
resources/views/inventory/statement/dailyLog.blade.php

@@ -32,7 +32,7 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的过滤结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item" @click="dailyLogExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="dailyLogExport(true)" href="javascript:">导出所有页</a>
                 </div>
@@ -40,7 +40,7 @@
             @can('库存管理-库存体积-管理监听货主')<button class="btn btn-outline-info btn-sm tooltipTarget mt-1" @click="openModal()">管理监听货主</button>@endcan
         </div>
         <div class="card-body pt-1">
-            <table class="table table-sm text-nowrap table-striped table-bordered m-0" id="table">
+            <table class="table table-sm text-nowrap table-striped table-bordered m-0 td-min-width-80" id="table">
                 <tr v-for="(inventoryDailyLog,i) in inventoryDailyLogs" @click="selectedColor(i,$event)">
                    <td>
                        <input type="checkbox" :value="inventoryDailyLog.id">

+ 2 - 2
resources/views/inventory/statement/inventoryCompare.blade.php

@@ -83,7 +83,7 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的过滤结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item" @click="inventoryCompareExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="inventoryCompareExport(true)" href="javascript:">导出所有页</a>
                 </div>
@@ -94,7 +94,7 @@
         </div>
     </span>
         <div class="card-body pt-1">
-            <table class="table table-sm text-nowrap table-striped table-bordered m-0" id="table">
+            <table class="table table-sm text-nowrap table-striped table-bordered m-0 td-min-width-80" id="table">
                 <tr v-for="(inventoryCompare,i) in inventoryCompares">
                    <td>
                        <input type="checkbox" :value="inventoryCompare.id">

+ 3 - 3
resources/views/inventory/stockInventory/inventoryMission.blade.php

@@ -30,7 +30,7 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的过滤结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item" @click="inventoryAccountMissionExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="inventoryAccountMissionExport(true)" href="javascript:">导出所有</a>
                 </div>
@@ -314,7 +314,7 @@
 
 
         <div class="card-body pt-1">
-            <table class="table table-sm table-striped d-none d-xl-block p-0 text-nowrap table-bordered"
+            <table class="table table-sm table-striped d-none d-xl-block p-0 text-nowrap table-bordered td-min-width-80"
                    id="table" ref="boxPc">
                 <tr v-for="(inventoryMission, i) in 显示记录列" :key="i"
                     :style="{'opacity': inventoryMission.mark==='跳过'?'0.7':'','opacity': inventoryMission.mark==='确认差异'?'0.7':''}" :class="[
@@ -374,7 +374,7 @@
                         </a>
                         <div
                             style="position: absolute;width:320px;margin-left:-100px;background-color: white;max-height:150px ;overflow-y:auto"
-                            class="small mt-0 dropdown-menu">
+                            class="small mt-0 dropdown-menu z-index-1099">
                             <table class="table table-sm table-striped table-bordered">
                                 <tr>
                                     <th>盘点人</th>

+ 1 - 1
resources/views/inventory/stockInventory/mission.blade.php

@@ -35,7 +35,7 @@
         </div>
         <div id="form_div" class="mt-2"></div>
         <div class=" pt-1">
-            <table class="table table-sm text-nowrap table-striped table-bordered m-0" id="table">
+            <table class="table table-sm text-nowrap table-striped table-bordered m-0 td-min-width-80" id="table">
                 <tr v-for="(inventory,i) in inventoryAccounts" @click="selectedColor(inventory.id,$event)" :style="{'font-weight': inventory.id==selectedStyle?'bold':''}">
                     <td>
                         <input class="checkItem" type="checkbox" :value="inventory.id">

+ 1 - 1
resources/views/maintenance/role/index.blade.php

@@ -13,7 +13,7 @@
                 @if(Session::has('successTip'))
                     <div class="alert alert-success h1">{{Session::get('successTip')}}</div>
                 @endif
-                <table class="table table-striped table-sm" id="table">
+                <table class="table table-striped table-sm td-min-width-80" id="table">
                     <tr v-for="(role,i) in roles"  @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                         <td class="text-muted">@{{role.id}}</td>
                         <td>@{{role.name}}</td>

+ 1 - 1
resources/views/maintenance/user/index.blade.php

@@ -14,7 +14,7 @@
                     <div class="alert alert-success h1">{{Session::get('successTip')}}</div>
                 @endif
                 <div id="list">
-                    <table class="table table-striped table-sm" id="table">
+                    <table class="table table-striped table-sm td-min-width-80" id="table">
                         <tr v-for="(user,i) in users"  @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                             <td class="text-muted">@{{user.id}}</td>
                             <td>@{{user.name}}</td>

+ 2 - 4
resources/views/order/index/delivering.blade.php

@@ -13,7 +13,7 @@
                                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                             导出Excel
                         </button>
-                        <div class="dropdown-menu">
+                        <div class="dropdown-menu z-index-1099">
                             <a class="dropdown-item" @click="orderExport(false)" href="javascript:">导出勾选内容</a>
                             <a class="dropdown-item" @click="orderExport(true)" href="javascript:">导出所有页</a>
                         </div>
@@ -52,7 +52,7 @@
                         </div><!-- /.modal-content -->
                     </div><!-- /.modal -->
                 </div>
-                <table class="table table-sm table-striped table-bordered table-hover card-body mt-2 ml-3" id="table">
+                <table class="table table-sm table-striped table-bordered table-hover card-body mt-2 ml-3 td-min-width-80" id="table">
                     <tr v-for="(order,i) in orders" @click="selectedColor(order.orderno)" :style="{'background-color': order.orderno==selectedStyle?'#aac7ea':''}">
                         <td>
                             <input class="checkItem" type="checkbox" :value="order.orderno">
@@ -99,7 +99,6 @@
                                     <td>
                                         <div class="text-truncate text-primary tooltipTarget" style="width: 100px;cursor:pointer;text-decoration: underline" title="双击展开全部" @dblclick="nowrapText($event)">@{{ oracleDOCOrderDetail.descr_c  }}</div>
                                         <div class="text-nowrap tooltipTarget"  style="display: none;cursor:pointer" @dblclick="truncateText($event)" title="双击收起全部">@{{ oracleDOCOrderDetail.descr_c  }}</div>
-{{--                                        <div :title="oracleDOCOrderDetail.descr_c" class="tooltipTarget" style="width: 180px;overflow: hidden">@{{ oracleDOCOrderDetail.descr_c }}</div>--}}
                                     </td>
                                     <td><div style="min-width: 100px">@{{ oracleDOCOrderDetail.qtyordered }}</div></td>
                                     <td><div style="min-width: 150px">@{{ oracleDOCOrderDetail.lotnum }}</div></td>
@@ -224,7 +223,6 @@
                 </div>
                 <textarea  id="clipboardDiv" style="opacity:0"></textarea>
             </div>
-
         </div>
     </div>
 @endsection

+ 1 - 1
resources/views/order/index/index.blade.php

@@ -8,7 +8,7 @@
     <div class="card">
         <div class="card-body">
             <button class="btn  btn-outline-info mb-1" data-toggle="modal" data-target="#importModal">导入</button>
-            <table class="table table-striped table-hover" id="table">
+            <table class="table table-striped table-hover td-min-width-80" id="table">
                 <tr v-for="(model,i) in models"  @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                     <td>@{{ i+1 }}</td>
                     <td>@{{ model.orderNumber }}</td>

+ 1 - 1
resources/views/order/issue/index.blade.php

@@ -14,7 +14,7 @@
                                 :class="[checkData.length>0?'btn-dark text-light':'']"
                                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">导出Excel
                         </button>
-                        <div class="dropdown-menu">
+                        <div class="dropdown-menu z-index-1099">
                             <a class="dropdown-item" @click="orderIssueExport(false)" href="javascript:">导出勾选内容</a>
                             <a class="dropdown-item" @click="orderIssueExport(true)" href="javascript:">导出所有页</a>
                         </div>

+ 1 - 1
resources/views/order/issue/performance.blade.php

@@ -14,7 +14,7 @@
                             :class="[checkData.length>0?'btn-dark text-light':'']"
                             data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">导出Excel
                     </button>
-                    <div class="dropdown-menu">
+                    <div class="dropdown-menu z-index-1099">
                         <a class="dropdown-item" @click="exportAll()" href="javascript:">导出所有页</a>
                     </div>
                 </span>

+ 2 - 2
resources/views/order/issue/workload.blade.php

@@ -12,13 +12,13 @@
                             class="btn btn-outline-dark btn-sm form-control-sm dropdown-toggle tooltipTarget"
                             data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">导出Excel
                     </button>
-                    <div class="dropdown-menu">
+                    <div class="dropdown-menu z-index-1099">
                         <a class="dropdown-item" @click="exportSelected()" href="javascript:">导出勾选内容</a>
                         <a class="dropdown-item" @click="exportAll()" href="javascript:">导出所有页</a>
                     </div>
                 </span>
             </div>
-            <table class="table table-sm table-striped table-bordered table-hover card-body mt-2 " id="table">
+            <table class="table table-sm table-striped table-bordered table-hover card-body mt-2 td-min-width-80" id="table">
                 <tr v-for="(workLoad,index) in workLoads" class="text-center">
                     <td><input type="checkbox" :value="workLoad.id"></td>
                     <td>@{{ index+1 }}</td>

+ 1 - 1
resources/views/order/tracking/index.blade.php

@@ -35,7 +35,7 @@
                                 :class="[checkData.length>0?'btn-dark text-light':'']"
                                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">导出Excel
                         </button>
-                        <div class="dropdown-menu">
+                        <div class="dropdown-menu z-index-1099">
                             <a class="dropdown-item" @click="exportSelect()" href="javascript:">导出勾选内容</a>
                             <a class="dropdown-item" @click="exportAll()" href="javascript:">导出所有页</a>
                         </div>

+ 1 - 1
resources/views/order/wave/search.blade.php

@@ -17,7 +17,7 @@
                                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                             导出Excel
                         </button>
-                        <div class="dropdown-menu">
+                        <div class="dropdown-menu z-index-1099">
                             <a class="dropdown-item" @click="exportExcel('pitch')" href="javascript:">导出勾选内容</a>
                             <a class="dropdown-item" @click="exportExcel()" href="javascript:">导出所有页</a>
                         </div>

+ 2 - 2
resources/views/package/weigh/index.blade.php

@@ -16,13 +16,13 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item" @click="packageExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="packageExport(true)" href="javascript:">导出所有页</a>
                 </div>
             </span>
             <div>
-                <table class="table table-striped table-sm text-nowrap table-hover" id="table">
+                <table class="table table-striped table-sm text-nowrap table-hover td-min-width-80" id="table">
                     <tr v-for="(package,i) in packages" @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                         <td>
                             <input class="checkItem" type="checkbox" :value="package.id">

+ 1 - 1
resources/views/package/weigh/statistics.blade.php

@@ -15,7 +15,7 @@
                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu z-index-1099">
                     <a class="dropdown-item"  @click="statisticExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item"  @click="statisticExport(true)" href="javascript:">导出所有页</a>
                 </div>

+ 2 - 2
resources/views/package/weightExcepted/index.blade.php

@@ -31,7 +31,7 @@
                                                 data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                                             导出Excel
                                         </button>
-                                        <div class="dropdown-menu">
+                                        <div class="dropdown-menu z-index-1099">
                                             <a class="dropdown-item" @click="weightExport(false)" href="javascript:">导出勾选内容</a>
                                             <a class="dropdown-item" @click="weightExport(true)" href="javascript:">导出所有页</a>
                                         </div>
@@ -43,7 +43,7 @@
                     </form>
                 </div>
             <div class="card-body">
-                <table class="table table-striped table-sm text-nowrap" id="table">
+                <table class="table table-striped table-sm text-nowrap td-min-width-80" id="table">
                     <tr v-for="(weightExcepted,i) in weightExcepteds" :style="weightExcepted.status=='上传异常'||weightExcepted.status=='下发异常'?'':color"
                         @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                         <td>

+ 1 - 1
resources/views/personnel/laborReport/index.blade.php

@@ -17,7 +17,7 @@
                     <a class="dropdown-item" @click="laborReportExport(true)" href="javascript:">导出所有页</a>
                 </div>
             </span>
-        <table class="table table-sm table-hover table-striped d-none d-xl-block p-0 text-nowrap table-bordered" id="table">
+        <table class="table table-sm table-hover table-striped d-none d-xl-block p-0 text-nowrap table-bordered td-min-width-80" id="table">
             <tr v-for="(laborReport,i) in laborReports"  @click="selectedColor(laborReport.id)" :style="{'font-weight': laborReport.id==selectedStyle?'bold':''}" @click="selectTableRow(i,$event)">
                 <td>
                     <input class="checkItem" type="checkbox" :value="laborReport.id"/>

+ 1 - 1
resources/views/personnel/report.blade.php

@@ -35,7 +35,7 @@
             <button class="ml-1 btn btn-sm btn-outline-primary" data-toggle="modal" data-target="#selectedOwner">刷 新</button>
         </div>
         <div>
-            <table class="table table-sm table-striped table-hover" id="table">
+            <table class="table table-sm table-striped table-hover td-min-width-80" id="table">
                 <tr class="text-center">
                     <td colspan="2"></td>
                     <td colspan="2" class="bg-light-purple">日期信息</td>

+ 1 - 1
resources/views/process/index.blade.php

@@ -158,7 +158,7 @@
                 </div><!-- /.modal-content -->
             </div><!-- /.modal -->
         </div>
-        <table class="table table-sm text-nowrap table-bordered" id="table">
+        <table class="table table-sm text-nowrap table-bordered td-min-width-80" id="table">
             <template>
             <tr v-for="(processOne,i) in processes" :class="[(count(i,processes)%2===0?'row-even':'' ),selectTr===i+1?'focusing':'']" :id="processOne.id?processOne.id:processes[i-1].id+'-2'"
                 :name="'process_table_'+count(i,processes)" @mouseover="changeStyle('process_table_'+count(i,processes),true)"

+ 1 - 1
resources/views/process/statistic.blade.php

@@ -18,7 +18,7 @@
                 <a class="dropdown-item" @click="processStatisticExport(true)"  href="javascript:">导出所有页</a>
             </div>
         </span>
-        <table class="table table-striped text-nowrap table-hover" style="background: #fff;" id="table">
+        <table class="table table-striped text-nowrap table-hover td-min-width-80" style="background: #fff;" id="table">
             <tr v-for="(processStatistic,i) in processStatistics" :class="processStatistic.gross_profit_rate?'text-success':''">
                 <td><input class="checkItem" type="checkbox" :value="processStatistic.process_id"></td>
                 <td>@{{ i+1 }}</td>

+ 1 - 1
resources/views/procurement/finance/checkBill.blade.php

@@ -17,7 +17,7 @@
         </div>
         </span>
         </div>
-        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2" id="table">
+        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2 td-min-width-80" id="table">
             <tr v-for="(procurementCheckSheet,i) in procurementCheckSheets">
                 <td>
                     <input class="checkItem" type="checkbox" :value="procurementCheckSheet.id">

+ 1 - 1
resources/views/procurement/finance/monthlyBillReport.blade.php

@@ -17,7 +17,7 @@
         </div>
         </span>
         </div>
-        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2" id="table">
+        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2 td-min-width-80" id="table">
             <tr v-for="(procurementTotalBill,i) in procurementTotalBills">
                 <td>
                     <input class="checkItem" type="checkbox" :value="procurementTotalBill.id">

+ 1 - 1
resources/views/procurement/finance/procurementBill.blade.php

@@ -17,7 +17,7 @@
         </div>
         </span>
         </div>
-        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2" id="table">
+        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2 td-min-width-80" id="table">
             <tr v-for="(procurement,i) in procurements">
                 <td>
                     <input class="checkItem" type="checkbox" :value="procurement.id">

+ 1 - 1
resources/views/procurement/procurement/index.blade.php

@@ -61,7 +61,7 @@
             @endcan
             <span class="btn btn-sm btn-outline-primary ml-2" @click="createAnew()">重新发起</span>
         </div>
-        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2" id="table">
+        <table class="table table-sm table-striped table-bordered table-hover text-nowrap card-body mt-2 td-min-width-80" id="table">
             <tr v-for="(procurement,i) in procurements"  @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                 <td>
                     <input class="checkItem" type="checkbox" :value="procurement.id">

+ 2 - 2
resources/views/rejected/search/analyze.blade.php

@@ -14,14 +14,14 @@
                     data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                 导出Excel
             </button>
-            <div class="dropdown-menu">
+            <div class="dropdown-menu z-index-1099">
                 <a class="dropdown-item" @click="exportExcel(false)"
                    href="javascript:">导出勾选内容</a>
                 <a class="dropdown-item" @click="exportExcel(true)"
                    href="javascript:">导出所有页</a>
             </div>
         </span>
-        <table class="table table-striped table-sm table-bordered table-hover" style="background: #fff;" id="table">
+        <table class="table table-striped table-sm table-bordered table-hover td-min-width-80" style="background: #fff;" id="table">
             <tr v-for="(rejectedBill,index) in rejectedBills " :data-id="rejectedBill.id" @click="selectTableRow(index,$event)">
                 <td>
                     <input type="checkbox" :value="rejectedBill.id_owner">

+ 3 - 3
resources/views/rejected/search/general.blade.php

@@ -17,7 +17,7 @@
                             data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                         导出Excel
                     </button>
-                    <div class="dropdown-menu">
+                    <div class="dropdown-menu z-index-1099">
                         <a class="dropdown-item" @click="exportExcel(false)" href="javascript:">导出勾选内容</a>
                         <a class="dropdown-item" @click="exportExcel(true)" href="javascript:">导出所有页</a>
                     </div>
@@ -33,7 +33,7 @@
                             data-toggle="dropdown" title="将勾选记录的入库状态设定为是或否,仅对未完结状态的记录有效">
                         修改入库
                     </button>
-                    <div class="dropdown-menu">
+                    <div class="dropdown-menu z-index-1099">
                         <a class="dropdown-item" @click="setIsLoaded_batch(1)" href="javascript:">设定为是</a>
                         <a class="dropdown-item" @click="setIsLoaded_batch(0)" href="javascript:">设定为否</a>
                         <a class="dropdown-item" @click="setIsLoaded_batch('null')" href="javascript:">无需入库</a>
@@ -46,7 +46,7 @@
                     <a class="btn btn-sm btn-outline-dark" href="{{url('rejected/importRejectedNumber')}}" style="cursor: pointer">导入修改</a>
                 @endcan
                 <button class="btn btn-sm ml-2 btn-primary" @click="copyLogisticNumber()">复制快递单号</button>
-                <table class="table table-striped table-sm table-bordered table-hover text-nowrap table-body"  style="background: #fff;" id="table">
+                <table class="table table-striped table-sm table-bordered table-hover text-nowrap table-body td-min-width-80"  style="background: #fff;" id="table">
                     <tr v-for="(rejectedBill,i) in rejectedBills" :data-id="rejectedBill.id" @click="selectTableRow(rejectedBill.id,$event)">
                         <td>
                             <input type="checkbox" :value="rejectedBill.id"/>

+ 1 - 1
resources/views/store/checkingReceive/mission.blade.php

@@ -42,7 +42,7 @@
         <button class="btn btn-sm btn-outline-info" @click="openImport()">导入</button>
     </div>
 
-    <table class="table table-striped table-sm text-nowrap table-hover mt-1" id="table">
+    <table class="table table-striped table-sm text-nowrap table-hover mt-1 td-min-width-80" id="table">
         <tr v-for="(storeCheckingReceive,i) in storeCheckingReceives" @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
             <td>@{{ i+1 }}</td>
             <td>@{{ storeCheckingReceive.id }}</td>

+ 1 - 1
resources/views/store/checkingReceive/show.blade.php

@@ -94,7 +94,7 @@
         </div>
         <!-- pc >544 -->
         <div class="d-none d-sm-block">
-            <table class="table table-striped table-sm text-nowrap table-hover mt-1" id="table">
+            <table class="table table-striped table-sm text-nowrap table-hover mt-1 td-min-width-80" id="table">
                 <tr v-for="(storeCheckingReceiveItem,i) in storeCheckingReceiveItems" @click="selectedColor(i,$event)">
                     <td>@{{ i+1 }}</td>
                     <td>@{{ storeCheckingReceiveItem.bin_number }}</td>

+ 1 - 1
resources/views/store/deliveryAppointment/list.blade.php

@@ -18,7 +18,7 @@
                 <a class="dropdown-item" @click="executeExport(true)" href="javascript:">导出所有页</a>
             </div>
         </div>
-        <table class="table table-striped table-hover text-nowrap" id="table">
+        <table class="table table-striped table-hover text-nowrap td-min-width-80" id="table">
             <tr class="text-center">
                 <th>
                     <label for="all" id="cloneCheckAll">

+ 1 - 1
resources/views/store/fast/index.blade.php

@@ -8,7 +8,7 @@
     </span>
     <div class="d-none" id="fast">
         <div class="container-fluid">
-            <table class="table table-striped table-sm text-nowrap table-hover" id="table">
+            <table class="table table-striped table-sm text-nowrap table-hover td-min-width-80" id="table">
                 <tr v-for="(store,i) in stores" @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
                     <td>
                         <input class="checkItem" type="checkbox" :value="store.id">

+ 1 - 1
resources/views/store/fast/storeItem.blade.php

@@ -8,7 +8,7 @@
     </span>
     <div class="d-none" id="item">
         <div class="container-fluid">
-            <table class="table table-striped table-sm text-nowrap table-hover" id="table">
+            <table class="table table-striped table-sm text-nowrap table-hover td-min-width-80" id="table">
                 <tr v-for="(storeItem,i) in storeItems" @click="selectTr===i+1?selectTr=0:selectTr=i+1">
                     <td>
                         <input class="checkItem" type="checkbox" :value="storeItem.id">

+ 1 - 1
resources/views/store/inStorage/index.blade.php

@@ -8,7 +8,7 @@
     </span>
     <div class="d-none container-fluid" id="list">
         <div id="form_div"></div>
-        <table class="table table-striped table-sm text-nowrap table-hover" id="table">
+        <table class="table table-striped table-sm text-nowrap table-hover td-min-width-80" id="table">
             <tr v-for="(store,i) in stores" :id="'data-'+store.id" @click="selectTableRow(i,$event)">
                 <td>
                     <input class="checkItem" type="checkbox" :value="store.id">

+ 1 - 1
resources/views/store/inStorage/storeItem.blade.php

@@ -8,7 +8,7 @@
     </span>
     <div class="d-none" id="item">
         <div class="container-fluid">
-            <table class="table table-striped table-sm text-nowrap table-hover" id="table">
+            <table class="table table-striped table-sm text-nowrap table-hover td-min-width-80" id="table">
                 <tr v-for="(storeItem,i) in storeItems">
                     <td>
                         <input class="checkItem" type="checkbox" :value="storeItem.id">

+ 1 - 1
resources/views/transport/waybill/delivering.blade.php

@@ -47,7 +47,7 @@
             </div>
         </form>
         <div class="card">
-            <table class="card-body table table-sm table-hover table-striped table-bordered d-none d-sm-block p-0 text-nowrap" style="width: 100%" id="table">
+            <table class="card-body table table-sm table-hover table-striped table-bordered d-none d-sm-block p-0 text-nowrap td-min-width-80" style="width: 100%" id="table">
                 <tr v-for="(waybill,i) in waybills">
                     <td>
                         <input class="checkItem" type="checkbox" :value="waybill.id">

+ 1 - 1
resources/views/transport/waybill/index.blade.php

@@ -35,7 +35,7 @@
                         data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                     导出Excel
                 </button>
-                <div class="dropdown-menu">
+                <div class="dropdown-menu" style="z-index: 1099">
                     <a class="dropdown-item" @click="waybillExport(false)" href="javascript:">导出勾选内容</a>
                     <a class="dropdown-item" @click="waybillExport(true)" href="javascript:">导出所有页</a>
                 </div>

+ 2 - 2
resources/views/transport/waybill/waybillFinancialSnapshot/index.blade.php

@@ -48,14 +48,14 @@
                     data-toggle="dropdown" title="导出所有页将会以搜索条件得到的筛选结果,将其全部记录(每一页)导出">
                 导出Excel
             </button>
-            <div class="dropdown-menu">
+            <div class="dropdown-menu z-index-1099">
                 <a class="dropdown-item" @click="waybillExport(false)" href="javascript:">导出勾选内容</a>
                 <a class="dropdown-item" @click="waybillExport(true)" href="javascript:">导出所有页</a>
             </div>
         </span>
     </div>
     @endif
-    <table class="table  table-hover table-bordered text-nowrap " style="width: 1500px;height: auto" id="table">
+    <table class="table  table-hover table-bordered text-nowrap td-min-width-80" style="width: 1500px;height: auto" id="table">
         <tbody>
         <tr v-for="(json_content,i) in json_contents" :style="{background:json_content.type=='直发车'?'#F8F8F8':''}" @click="selectedColor(i,$event)">
             @if(!isset($excepted))