diff --git a/src/api/distribution/distributionSignfor.js b/src/api/distribution/distributionSignfor.js
index ff3c9113..2b9385cb 100644
--- a/src/api/distribution/distributionSignfor.js
+++ b/src/api/distribution/distributionSignfor.js
@@ -351,7 +351,16 @@ export const $_distributionSignforPackageList = data => {
responseType: 'blob',
});
};
+// 库存品导出(3-1)
+export const $_distributionSignforDetailExcel = params => {
+ return request({
+ url: '/api/logpm-distribution/signfor/export-distributionSignforDetailExcel',
+ method: 'get',
+ params,
+ responseType: 'blob',
+ });
+};
// 订单导出
export const $_distributionSignforOrderList = data => {
return request({
diff --git a/src/views/aftersales/aftersalesWorkOrderAdd.vue b/src/views/aftersales/aftersalesWorkOrderAdd.vue
index bcf4aa8b..5021c5ab 100644
--- a/src/views/aftersales/aftersalesWorkOrderAdd.vue
+++ b/src/views/aftersales/aftersalesWorkOrderAdd.vue
@@ -558,6 +558,7 @@
:max="9999999"
:controls="false"
:value-on-clear="0"
+ :precision="2"
@change="Totalamount"
/>
diff --git a/src/views/aftersales/aftersalesWorkOrderInfo.vue b/src/views/aftersales/aftersalesWorkOrderInfo.vue
index d3d837f2..a369307d 100644
--- a/src/views/aftersales/aftersalesWorkOrderInfo.vue
+++ b/src/views/aftersales/aftersalesWorkOrderInfo.vue
@@ -214,7 +214,7 @@
label="调查经过"
v-if="displaySettings.investigationPocess"
>
-
+
@@ -1728,7 +1728,8 @@ const ResultDetermination = () => {
align-items: center;
justify-content: space-between;
:deep(.el-form-item) {
- width: 16%;
+ width: 17%;
+ margin-right: 4px;
align-items: flex-start;
.el-form-item__label {
margin-left: 0;
diff --git a/src/views/aftersales/aftersalesWorkOrderend.vue b/src/views/aftersales/aftersalesWorkOrderend.vue
index 60d44775..88d64fcd 100644
--- a/src/views/aftersales/aftersalesWorkOrderend.vue
+++ b/src/views/aftersales/aftersalesWorkOrderend.vue
@@ -47,21 +47,20 @@
{
menuData.value = menuData1.value; //页面初始化默认显示第一个表格
data.value = InitializeTable.value; //默认显示第一个表格数据
+ pageRow.value=JSON.parse(route.query.row)
};
console.log(route.query,'route.query');
@@ -2217,11 +2218,13 @@ function InventoryList() {
editLoading.value = true; //表格加载开启
data.value = [];
signforInventoryList(RouterId.value).then(res => {
+ console.log(res,'库存品');
+
if (res.data.code !== 200) return;
console.log(res, '库存品列表');
// data.value = res.data.data || [];
- Tabs.value[2].data = data || [];
- Tabs.value[2].renderData = data || [];
+ Tabs.value[2].data = res.data.data || [];
+ Tabs.value[2].renderData = res.data.data || [];
editLoading.value = false; //表格加载结束
});
}
@@ -2252,13 +2255,6 @@ const tabClick = val => {
// 导出
const Signforexport = () => {
- if (SignforMenu.value.label == '库存品列表') {
- ElMessage({
- message: '库存品导出维护中',
- type: 'warning',
- });
- return;
- }
console.log(SignforMenu.value);
ElMessageBox.confirm(`是否导出${SignforMenu.value.label}`, '提示', {
confirmButtonText: '确定',
@@ -2267,30 +2263,12 @@ const Signforexport = () => {
})
.then(() => {
let data = {
- signforId: RouterId.value,
- };
+ id: RouterId.value,
+ };
editLoading.value = true;
- // 订单列表
- if (SignforMenu.value.label == '订单列表') {
- return $_distributionSignforOrderList(data)
- .then(res => {
- downloadXls(res.data, `订单列表.xlsx`);
- ElMessage({
- type: 'success',
- message: '导出成功',
- });
- })
- .catch(() => {})
- .finally(() => {
- editLoading.value = false;
- });
- }
-
- // 包件列表
- if (SignforMenu.value.label == '包件列表') {
- return $_distributionSignforPackageList(data)
+ return $_distributionSignforDetailExcel(data)
.then(res => {
- downloadXls(res.data, `包件列表.xlsx`);
+ downloadXls(res.data, `${SignforMenu.value.label}.xlsx`);
ElMessage({
type: 'success',
message: '导出成功',
@@ -2300,10 +2278,52 @@ const Signforexport = () => {
.finally(() => {
editLoading.value = false;
});
- }
- // 库存品列表
- if (SignforMenu.value.label == '库存品列表') {
- }
+ // 订单列表
+ // if (SignforMenu.value.label == '订单列表') {
+ // return $_distributionSignforOrderList(data)
+ // .then(res => {
+ // downloadXls(res.data, `订单列表.xlsx`);
+ // ElMessage({
+ // type: 'success',
+ // message: '导出成功',
+ // });
+ // })
+ // .catch(() => {})
+ // .finally(() => {
+ // editLoading.value = false;
+ // });
+ // }
+
+ // // 包件列表
+ // if (SignforMenu.value.label == '包件列表') {
+ // return $_distributionSignforPackageList(data)
+ // .then(res => {
+ // downloadXls(res.data, `包件列表.xlsx`);
+ // ElMessage({
+ // type: 'success',
+ // message: '导出成功',
+ // });
+ // })
+ // .catch(() => {})
+ // .finally(() => {
+ // editLoading.value = false;
+ // });
+ // }
+ // // 库存品列表
+ // if (SignforMenu.value.label == '库存品列表') {
+ // return $_distributionSignforDetailExcel(data)
+ // .then(res => {
+ // downloadXls(res.data, `库存品列表.xlsx`);
+ // ElMessage({
+ // type: 'success',
+ // message: '导出成功',
+ // });
+ // })
+ // .catch(() => {})
+ // .finally(() => {
+ // editLoading.value = false;
+ // });
+ // }
})
.catch(() => {});
};
diff --git a/src/views/distribution/signfor/distributionSignfortreat.vue b/src/views/distribution/signfor/distributionSignfortreat.vue
index bb3e20c1..9c127bbb 100644
--- a/src/views/distribution/signfor/distributionSignfortreat.vue
+++ b/src/views/distribution/signfor/distributionSignfortreat.vue
@@ -2088,6 +2088,7 @@ export default {
id: row.id,
reservationId: row.reservationId,
name: '待签收查看',
+ row: JSON.stringify(row),
},
});
},
diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue
index e4758bd7..1ce2c8c7 100644
--- a/src/views/distribution/turndelivery/deliveryDiscuss.vue
+++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue
@@ -1220,9 +1220,10 @@ const menuData = ref([
statistics: true, //开启统计
isshowSummary: true,
},
+
{
- prop: 'reservationNum',
- label: '计划数量',
+ prop: 'handQuantity',
+ label: '在库件数',
type: 1,
values: '',
width: '110',
@@ -1234,8 +1235,8 @@ const menuData = ref([
isshowSummary: true,
},
{
- prop: 'handQuantity',
- label: '在库件数',
+ prop: 'reservationNum',
+ label: '计划数量',
type: 1,
values: '',
width: '110',