From a06e1cbc8d9cc5d2b962545f3ea94514bc823011 Mon Sep 17 00:00:00 2001
From: xzg <4727863@qq.com>
Date: Fri, 15 Nov 2024 17:40:34 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?=
=?UTF-8?q?=EF=BC=8C=E5=A2=9E=E5=8A=A0=E9=A1=B5=E9=9D=A2=E5=A4=9A=E6=9D=A1?=
=?UTF-8?q?=E4=BB=B6=E6=90=9C=E7=B4=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../MultiConditionSearch.vue | 227 ++++++++++++++++++
src/components/edittablehead/index.vue | 1 -
src/option/aftersales/vueTvemp.js | 22 +-
src/views/aftersales/aftersalesWorkOrder.vue | 44 ++--
.../delivery/distributionStockArticle.vue | 65 ++++-
src/views/waybill/WaybillOrderList.vue | 54 ++++-
src/views/waybill/orderPackageList.vue | 43 +++-
7 files changed, 406 insertions(+), 50 deletions(-)
create mode 100644 src/components/MultiConditionSearch/MultiConditionSearch.vue
diff --git a/src/components/MultiConditionSearch/MultiConditionSearch.vue b/src/components/MultiConditionSearch/MultiConditionSearch.vue
new file mode 100644
index 00000000..0cfd7951
--- /dev/null
+++ b/src/components/MultiConditionSearch/MultiConditionSearch.vue
@@ -0,0 +1,227 @@
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/edittablehead/index.vue b/src/components/edittablehead/index.vue
index 9dad8268..f76ef101 100644
--- a/src/components/edittablehead/index.vue
+++ b/src/components/edittablehead/index.vue
@@ -50,7 +50,6 @@ import { getTableSeting, postSaveTableSeting } from '@/api/basic/table';
const functions = inject('functions') as any;
import Sortable from 'sortablejs';
import { getObjType, handleClearTableQuery } from '@/utils/util';
-import { it } from 'element-plus/es/locale';
interface TableColumnType {
/** 表格列的key */
prop: string;
diff --git a/src/option/aftersales/vueTvemp.js b/src/option/aftersales/vueTvemp.js
index 90da4b46..520ba6d2 100644
--- a/src/option/aftersales/vueTvemp.js
+++ b/src/option/aftersales/vueTvemp.js
@@ -41,17 +41,17 @@ export const columnList = [
sortable: true,
head: false,
},
- // {
- // prop: 'a',
- // label: '工单创建仓',
- // type: 1,
- // values: '',
- // width: '140',
- // checkarr: [],
- // fixed: false,
- // sortable: true,
- // head: false,
- // },
+ {
+ prop: 'warehouseName',
+ label: '工单创建仓',
+ type: 1,
+ values: '',
+ width: '140',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'workOrderNumber',
label: '异常工单号',
diff --git a/src/views/aftersales/aftersalesWorkOrder.vue b/src/views/aftersales/aftersalesWorkOrder.vue
index fc2ba1c3..ef3c46d9 100644
--- a/src/views/aftersales/aftersalesWorkOrder.vue
+++ b/src/views/aftersales/aftersalesWorkOrder.vue
@@ -388,7 +388,7 @@
@@ -1007,7 +1007,7 @@ const details = reactive({
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
- columnListPublic:columnList, //公共列表
+ columnListPublic: columnList, //公共列表
/** 列表数据 */
data: [],
/** 页面loading */
@@ -1023,7 +1023,7 @@ const details = reactive({
/** 分页参数 */
page: {
currentPage: 1,
- pageSize: 2,
+ pageSize: 30,
total: 0,
},
@@ -2494,25 +2494,25 @@ const exportReport = () => {
if (details.selectionList.length) {
dataID.ids = details.selectionList.map(item => item.id).join(',');
}
- JExportAll(dataID);
- // switch (TabPermissions.value) {
- // case 0:
- // ExportAll(dataID); //全部
- // break;
- // case 1:
- // ExportingDuringProcessing(dataID);
- // break;
- // case 2:
- // ProcessedExported(dataID);
- // break;
- // case 4:
- // // 理赔金额未出
- // ExportClaimAmount(dataID);
- // break;
- // default:
- // ExportAll(dataID);
- // break;
- // }
+ // JExportAll(dataID);
+ switch (TabPermissions.value) {
+ case 0:
+ ExportAll(dataID); //全部
+ break;
+ case 1:
+ ExportingDuringProcessing(dataID);
+ break;
+ case 2:
+ ProcessedExported(dataID);
+ break;
+ case 4:
+ // 理赔金额未出
+ ExportClaimAmount(dataID);
+ break;
+ default:
+ ExportAll(dataID);
+ break;
+ }
})
.catch(() => {});
};
diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue
index f7ec5bcb..379331c2 100644
--- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue
+++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue
@@ -6,15 +6,26 @@