From 7873202caa28c8d30109c83180bbba3ce38dec7c Mon Sep 17 00:00:00 2001 From: liuhuayong <995058772@qq.com> Date: Wed, 7 May 2025 23:51:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/logistics/quotation/detail.vue | 8 +++++--- src/views/logistics/quotation/index.vue | 1 + src/views/logistics/shipmentDetail/index.vue | 11 ++++++++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/views/logistics/quotation/detail.vue b/src/views/logistics/quotation/detail.vue index 946050d..d94264b 100644 --- a/src/views/logistics/quotation/detail.vue +++ b/src/views/logistics/quotation/detail.vue @@ -4,9 +4,10 @@ - {{ form.custName }} - {{ form.netName }} - {{ form.preChargeNo }} + {{ form.custName }} + {{ form.custNo }} + {{ form.netName }} + {{ form.preChargeNo }} {{ form.priceExecuteTime }} {{ form.netCode }} {{ form.avgOrderNum }} @@ -54,6 +55,7 @@ export default { preChargeNo: '', avgOrderNum: '', priceExecuteTime: '', + custNo: '', weightSegment: {}, quoteType: {}, quiteList: [], diff --git a/src/views/logistics/quotation/index.vue b/src/views/logistics/quotation/index.vue index 025c611..a4065b0 100644 --- a/src/views/logistics/quotation/index.vue +++ b/src/views/logistics/quotation/index.vue @@ -216,6 +216,7 @@ export default { _this.form = { id: data.id, custName: data.custName, + custNo: data.custNo, netName: data.netName, netCode: data.netCode, preChargeNo: data.preChargeNo, diff --git a/src/views/logistics/shipmentDetail/index.vue b/src/views/logistics/shipmentDetail/index.vue index 21f886b..5bf37d8 100644 --- a/src/views/logistics/shipmentDetail/index.vue +++ b/src/views/logistics/shipmentDetail/index.vue @@ -94,11 +94,16 @@ icon="el-icon-download" @click="download">导出 +
+
{{ '总运费:' + this.tjData.totalFee + '元' }}
+
{{ '按照客户统计:' }} {{ item.item + ':' + item.totalFee + '元 ' }}
+
{{ '按照省份统计:' }} {{ item.item + ':' + item.totalFee + '元 ' }}
+
-
+ @@ -148,6 +153,7 @@ import initData from '@/mixins/initData' import { del,calcShipmentFee, downloadShipmentDetail, getShipmentDetailTj } from '@/api/shipmentDetail' import eForm from './form' import { getToken } from "@/utils/auth"; +import { parseTime, downloadFile, parseDate } from '@/utils/index' export default { components: { eForm }, mixins: [initData], @@ -201,8 +207,7 @@ export default { this.params['endTime'] = query.date[1] } getShipmentDetailTj(this.params).then(res => { - this.tjData = res.data - console.log(res.data) + this.tjData = res }) return true },