This commit is contained in:
刘华勇 2025-05-07 20:01:50 +08:00
parent 0b91c288db
commit c570b6c93c
2 changed files with 38 additions and 3 deletions

View File

@ -22,6 +22,15 @@ export function calcShipmentFee() {
})
}
export function getShipmentDetailTj(params) {
return request({
url: 'api/shipmentDetail/getShipmentDetailTj',
method: 'get',
query: params
})
}
export function edit(data) {
return request({

View File

@ -35,6 +35,18 @@
<!--工具栏-->
<div class="head-container">
<!-- 搜索 -->
<el-date-picker
v-model="query.date"
type="daterange"
range-separator=":"
class="el-range-editor--small filter-item"
style="height: 30.5px;width: 220px"
value-format="yyyy-MM-dd"
start-placeholder="开始日期"
end-placeholder="结束日期"/>
<el-select v-model="query.isCalc" clearable placeholder="计算状态" class="filter-item" style="width: 130px">
<el-option v-for="item in isCalcOptions" :key="item.key" :label="item.display_name" :value="item.key"/>
</el-select>
<el-input v-model="query.value" clearable placeholder="输入搜索内容" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery"/>
<el-select v-model="query.type" clearable placeholder="类型" class="filter-item" style="width: 130px">
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key"/>
@ -86,6 +98,7 @@
<!--表单组件-->
<eForm ref="form" :is-add="isAdd"/>
<!--表格渲染-->
<div></div>
<el-table v-loading="loading" :data="data" size="small" style="width: 100%;">
<el-table-column prop="waybillNo" label="运单编号"/>
<el-table-column prop="custName" label="客户名称"/>
@ -132,7 +145,7 @@
<script>
import checkPermission from '@/utils/permission'
import initData from '@/mixins/initData'
import { del,calcShipmentFee, downloadShipmentDetail } from '@/api/shipmentDetail'
import { del,calcShipmentFee, downloadShipmentDetail, getShipmentDetailTj } from '@/api/shipmentDetail'
import eForm from './form'
import { getToken } from "@/utils/auth";
export default {
@ -140,6 +153,7 @@ export default {
mixins: [initData],
data() {
return {
tjData: {},
upload: {
//
open: false,
@ -154,12 +168,15 @@ export default {
},
calLoading: false,
delLoading: false,
isCalcOptions: [
{ key: '1', display_name: '已计算' },
{ key: '0', display_name: '未计算' },
],
queryTypeOptions: [
{ key: 'waybillNo', display_name: '运单编号' },
{ key: 'custName', display_name: '客户名称' },
{ key: 'custNo', display_name: '客户编号' },
{ key: 'sendTime', display_name: '寄件时间' },
{ key: 'isCalc', display_name: '是否已经计算运费' }
{ key: 'receiveProvince', display_name: '收件省份' },
]
}
},
@ -178,6 +195,15 @@ export default {
const type = query.type
const value = query.value
if (type && value) { this.params[type] = value }
if (this.query.isCalc) { this.params.isCalc = this.query.isCalc }
if (this.query.date) {
this.params['startTime'] = query.date[0]
this.params['endTime'] = query.date[1]
}
getShipmentDetailTj(this.params).then(res => {
this.tjData = res.data
console.log(res.data)
})
return true
},
calcShipmentFee() {