274 lines
9.7 KiB
Java
Raw Normal View History

2025-04-18 14:58:41 +08:00
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
2025-04-22 14:39:18 +08:00
<!-- <div class="table-page-search-wrapper">
2025-04-18 14:58:41 +08:00
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="用车需求编号">
<a-input placeholder="请输入用车需求编号" v-model="queryParam.vdNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="发货类型">
<a-input placeholder="请输入发货类型" v-model="queryParam.shipType"></a-input>
</a-form-item>
</a-col>
<template v-if="toggleSearchStatus">
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="车型">
<a-input placeholder="请输入车型" v-model="queryParam.carType"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="送货地点">
<a-input placeholder="请输入送货地点" v-model="queryParam.deliveryAddress"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="取货仓库">
<a-input placeholder="请输入取货仓库" v-model="queryParam.pickUpHub"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="审核结果">
<a-input placeholder="请输入审核结果" v-model="queryParam.auditResult"></a-input>
</a-form-item>
</a-col>
</template>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<a @click="handleToggleSearch" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
</a>
</span>
</a-col>
</a-row>
</a-form>
2025-04-22 14:39:18 +08:00
</div> -->
2025-04-18 14:58:41 +08:00
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
2025-04-22 14:39:18 +08:00
<!-- <div class="table-operator">
2025-04-18 14:58:41 +08:00
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('用车需求计算')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
2025-04-22 14:39:18 +08:00
</a-upload> -->
2025-04-18 14:58:41 +08:00
<!-- 高级查询区域 -->
2025-04-22 14:39:18 +08:00
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
2025-04-18 14:58:41 +08:00
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
</a-dropdown>
2025-04-22 14:39:18 +08:00
</div> -->
2025-04-18 14:58:41 +08:00
<!-- table区域-begin -->
<div>
2025-04-22 14:39:18 +08:00
<!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
2025-04-18 14:58:41 +08:00
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
2025-04-22 14:39:18 +08:00
</div> -->
2025-04-18 14:58:41 +08:00
<a-table
ref="table"
2025-04-22 14:39:18 +08:00
size="small"
:scroll="{ y: 300, x:true }"
2025-04-18 14:58:41 +08:00
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
2025-04-22 14:39:18 +08:00
:pagination="false"
2025-04-18 14:58:41 +08:00
:loading="loading"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text,record">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a-dropdown>
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<vehicle-demand-count-modal ref="modalForm" @ok="modalFormOk"></vehicle-demand-count-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
2025-04-22 14:39:18 +08:00
import { getAction } from '@/api/manage'
2025-04-18 14:58:41 +08:00
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import VehicleDemandCountModal from './modules/VehicleDemandCountModal'
export default {
name: 'VehicleDemandCountList',
mixins:[JeecgListMixin, mixinDevice],
components: {
VehicleDemandCountModal
},
data () {
return {
description: '用车需求计算管理页面',
// 表头
columns: [
2025-04-22 14:39:18 +08:00
// {
// title: '#',
// dataIndex: '',
// key:'rowIndex',
// width:60,
// align:"center",
// customRender:function (t,r,index) {
// return parseInt(index)+1;
// }
// },
2025-04-18 14:58:41 +08:00
{
title:'用车需求编号',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'vdNo',
width: 120
2025-04-18 14:58:41 +08:00
},
{
title:'发货类型',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'shipType_dictText',
width: 80
2025-04-18 14:58:41 +08:00
},
{
title:'车型',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'carType',
width: 80
2025-04-18 14:58:41 +08:00
},
{
title:'车长',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'carLong',
width: 100
2025-04-18 14:58:41 +08:00
},
{
title:'送货区域',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'deliveryArea',
width: 100
2025-04-18 14:58:41 +08:00
},
{
title:'送货地点',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'deliveryAddress',
width: 100
2025-04-18 14:58:41 +08:00
},
{
title:'取货仓库',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'pickUpHub',
width: 100
2025-04-18 14:58:41 +08:00
},
{
title:'审核结果',
align:"center",
2025-04-22 14:39:18 +08:00
dataIndex: 'auditResult_dictText',
width: 100
2025-04-18 14:58:41 +08:00
},
2025-04-22 14:39:18 +08:00
// {
// title: '操作',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' }
// }
2025-04-18 14:58:41 +08:00
],
url: {
list: "/vehicledemandcount/vehicleDemandCount/list",
delete: "/vehicledemandcount/vehicleDemandCount/delete",
deleteBatch: "/vehicledemandcount/vehicleDemandCount/deleteBatch",
exportXlsUrl: "/vehicledemandcount/vehicleDemandCount/exportXls",
importExcelUrl: "vehicledemandcount/vehicleDemandCount/importExcel",
2025-04-22 14:39:18 +08:00
getByVdNo: "vehicledemandcount/vehicleDemandCount/getByVdNo",
2025-04-18 14:58:41 +08:00
},
dictOptions:{},
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
methods: {
2025-04-22 14:39:18 +08:00
getByVdNo(vdNo){
getAction(this.url.getByVdNo,{vdNo: vdNo}).then(res => {
if (res.success) {
this.dataSource = res.result.records||res.result;
} else {
this.$message.warning(res.message)
}
})
},
loadData(){},
2025-04-18 14:58:41 +08:00
initDictConfig(){
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'string',value:'vdNo',text:'用车需求编号'})
fieldList.push({type:'string',value:'shipType',text:'发货类型'})
fieldList.push({type:'string',value:'carType',text:'车型'})
fieldList.push({type:'int',value:'carLong',text:'车长'})
fieldList.push({type:'string',value:'deliveryArea',text:'送货区域'})
fieldList.push({type:'string',value:'deliveryAddress',text:'送货地点'})
fieldList.push({type:'string',value:'pickUpHub',text:'取货仓库'})
fieldList.push({type:'string',value:'auditResult',text:'审核结果'})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>