From a3a93036271c3d0bd8ce93e3f024a6baa81d2b4e Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Thu, 8 Aug 2024 18:17:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=9B=BE=E7=89=87=E5=8E=8B?= =?UTF-8?q?=E7=BC=A9=E5=8A=9F=E8=83=BD=EF=BC=8C=E4=BF=AE=E5=A4=8D=E5=B7=B2?= =?UTF-8?q?=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/storagecost/index.js | 25 + src/components/IMGcompressor/imgcompressor.js | 46 + .../Deliverymaintenancecosts.vue | 817 ++++++++++++------ .../signfor/distributionSignfortreat.vue | 14 + 4 files changed, 642 insertions(+), 260 deletions(-) create mode 100644 src/components/IMGcompressor/imgcompressor.js diff --git a/src/api/storagecost/index.js b/src/api/storagecost/index.js index 052cd5ec..fd2beba2 100644 --- a/src/api/storagecost/index.js +++ b/src/api/storagecost/index.js @@ -261,3 +261,28 @@ export const $_expenseDispatchPricedetail = params => { params, }); }; + +// 配送-模板-车型计费配置-修改 +export const $_expenseDispatchPriceupdate = data => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPrice/update', + method: 'post', + data, + }); +}; +// 配送-模板-车型计费配置-删除 +export const $_expenseDispatchPriceremove = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPrice/remove', + method: 'post', + params, + }); +}; +// 配送-模板-超区删除 +export const $_expenseDispatchPriceOverZoneremove = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPriceOverZone/remove', + method: 'post', + params, + }); +}; \ No newline at end of file diff --git a/src/components/IMGcompressor/imgcompressor.js b/src/components/IMGcompressor/imgcompressor.js new file mode 100644 index 00000000..03cb13fb --- /dev/null +++ b/src/components/IMGcompressor/imgcompressor.js @@ -0,0 +1,46 @@ +export async function compressImageBlob(blob) { + return new Promise((resolve, reject) => { + const img = new Image(); + const reader = new FileReader(); + + reader.onload = e => { + img.src = e.target.result; + }; + + img.onload = () => { + const width = img.width; + const height = img.height; + const maxWidth = 800; // 最大宽度 + const maxHeight = 800; // 最大高度 + let newWidth = width; + let newHeight = height; + + // 计算缩放比例 + if (width > height) { + if (width > maxWidth) { + newHeight *= maxWidth / newWidth; + newWidth = maxWidth; + } + } else { + if (height > maxHeight) { + newWidth *= maxHeight / newHeight; + newHeight = maxHeight; + } + } + + // 创建离屏 canvas + const offScreenCanvas = new OffscreenCanvas(newWidth, newHeight); + const ctx = offScreenCanvas.getContext('2d'); + ctx.drawImage(img, 0, 0, newWidth, newHeight); + + // 压缩图片 + offScreenCanvas + .convertToBlob({ type: 'image/jpeg', quality: 0.8 }) + .then(resolve) + .catch(reject); + }; + + reader.onerror = reject; + reader.readAsDataURL(blob); + }); +} diff --git a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue index dc77db4d..0702c95a 100644 --- a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue +++ b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue @@ -18,7 +18,7 @@ 编辑 - + 删除 @@ -27,211 +27,217 @@ +
+ + +
+
+
+ 车型 + + + +
+
- - -
-
- 车型 - - - + 品类按件计费 + + +
-
-
- 品类按件计费 - - - -
+
+ 品类按方计费 + + + +
-
- 品类按方计费 - - - -
+
+ 品类按重量计费 + + + +
-
- 品类按重量计费 - - - +
+ 品类按吨计费 + + + +
- -
- 品类按吨计费 - - - +
+ +
+ 是否附加费 + + + +
-
-
- -
- 是否附加费 +
+
+ 公里数单价 + +
+
+ 补贴起步公里数(km) + +
+
+ 补贴单价(元/km) + +
+
+
+ 超区区域计费 + 新增
-
-
-
- 公里数单价 - -
-
- 补贴起步公里数(km) - -
-
- 补贴单价(元/km) - -
-
-
- 超区区域计费 - - - -
-
-
- 统一超区公里数(km) - -
-
- 统一超区后单价(元/km) - -
-
- 点位补贴单价(元/点) - -
-
- 保底费(元) - -
-
- 油费(元/km) - +
+
+ 统一超区公里数(km) + +
+
+ 统一超区后单价(元/km) + +
+
+ 点位补贴单价(元/点) + +
+
+ 保底费(元) + +
+
+ 油费(元/km) + +
-
- - + + +