37 changed files with 4441 additions and 2148 deletions
@ -0,0 +1,365 @@
|
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseName', |
||||
label: '仓库', |
||||
type: 1, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'deliveryType', |
||||
label: '配送类型', |
||||
type: 3, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [ |
||||
{ |
||||
label: '商配', |
||||
value: '商配' |
||||
}, |
||||
{ |
||||
label: '市配', |
||||
value: '市配' |
||||
} |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'reviewStatus', |
||||
label: '文员复核状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [ |
||||
{ |
||||
label: '已复核', |
||||
value: '已复核' |
||||
}, |
||||
{ |
||||
label: '未复核', |
||||
value: '未复核' |
||||
} |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'planReservationCode', |
||||
label: '预约单编号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'planTrainNumber', |
||||
label: '车次号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'mallName', |
||||
label: '商场/承运商', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'reservationConsignee', |
||||
label: '收货人', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'driverName', |
||||
label: '司机/提货人', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'vehicleName', |
||||
label: '车辆', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'deliveryTime', |
||||
label: '配送日期', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'deliveryCreateUserName', |
||||
label: '任务创建人', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'planNum', |
||||
label: '计划件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'loadNum', |
||||
label: '装车件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'signNum', |
||||
label: '签收件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'planStockNum', |
||||
label: '库存品计划数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'loadStockNum', |
||||
label: '库存品装车数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'signStockNum', |
||||
label: '库存品签收数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
// {
|
||||
// prop: 'signStatus',
|
||||
// label: '签收状态',
|
||||
// type: 1,
|
||||
// values: '',
|
||||
// width: '150',
|
||||
// checkarr: [],
|
||||
// fixed: false,
|
||||
// sortable: true,
|
||||
// head: false,
|
||||
// },
|
||||
{ |
||||
prop: 'signTime', |
||||
label: '签收时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'signUserName', |
||||
label: '签收人', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'reviewUserName', |
||||
label: '审核人', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'reviewTime', |
||||
label: '审核时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'exceptionLoadNum', |
||||
label: '异常装车数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'exceptionSignNum', |
||||
label: '异常签收数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
{ |
||||
prop: 'deliveryMode', |
||||
label: '送货方式', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'startCarTime', |
||||
label: '发车时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'arriveCarTime', |
||||
label: '到达时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'unLoadNum', |
||||
label: '卸车件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true,//开启统计
|
||||
}, |
||||
// {
|
||||
// prop: 'createUserName',
|
||||
// label: '操作',
|
||||
// type: 6,
|
||||
// values: '',
|
||||
// width: '200',
|
||||
// checkarr: [],
|
||||
// fixed: 'right',
|
||||
// sortable: false,
|
||||
// },
|
||||
]; |
@ -0,0 +1,215 @@
|
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseName', |
||||
label: '仓库', |
||||
type: 3, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'deliveryType', |
||||
label: '配送类型', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: true, |
||||
}, |
||||
{ |
||||
prop: 'planNum', |
||||
label: '预约总数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
|
||||
{ |
||||
prop: 'loadNum', |
||||
label: '装车总数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'signNum', |
||||
label: '签收总数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
|
||||
{ |
||||
prop: 'signRate', |
||||
label: '签收率', |
||||
type: 6, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'planStockNum', |
||||
label: '预约库存品数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'stockingQuantity', |
||||
label: '库存品备货件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'loadStockNum', |
||||
label: '库存品装车数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'signStockNum', |
||||
label: '库存品签收数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'signStockRate', |
||||
label: '库存品签收率', |
||||
type: 6, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'exceptionNum', |
||||
label: '异常数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'planAccuracy', |
||||
label: '计划准确率', |
||||
type: 6, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'customerCount', |
||||
label: '客户数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'reviewCustomerCount', |
||||
label: '已审核客户数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
isshowSummary: true, //开启统计
|
||||
}, |
||||
{ |
||||
prop: 'reviewRate', |
||||
label: '审核率', |
||||
type: 6, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'createUserName', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
sortable: false, |
||||
}, |
||||
]; |
@ -0,0 +1,361 @@
|
||||
<template> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud" v-loading="Pageloading" element-loading-text="Loading..."> |
||||
<!-- 搜索模块 --> |
||||
<div v-h5uShow="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="TopQuery" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<!-- <el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> --> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</div> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="exportReport" |
||||
><el-icon><Download /></el-icon>导出</el-button |
||||
> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-text @click="view(slotProps.scope)">查看</el-text> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
<script> |
||||
// 缓存要引入当前页面地址 |
||||
export default { |
||||
name: '/reportforms/DeliveryDetailsReport', |
||||
}; |
||||
</script> |
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { processRowPropertyName, setNodeHeight } from '@/utils/util'; |
||||
import { columnList } from '@/option/reportforms/DeliveryDetailsReport.js'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls, handleClearTableQuery } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import dayjs from 'dayjs'; |
||||
import { $_getDeliveryDetailsReport, $_expDeliveryDetailsReport } from '@/api/reportforms/index.js'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const TopQuery = ref({}); //查询顶部 |
||||
const Pageloading = ref(false); |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00' |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 列表数据 */ |
||||
data: [{}], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
defaultTime2, |
||||
} = toRefs(details); |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
processRowPropertyName(index, row, details.query); |
||||
|
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowPropertyName(index, row, details.query); |
||||
onLoad(); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
onLoad(); |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
onLoad(); |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
onLoad(); |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
onLoad(); |
||||
}; |
||||
//清空 |
||||
const searchReset = () => { |
||||
details.query = {}; |
||||
details.page.currentPage = 1; |
||||
handleClearTableQuery(details.columnList); |
||||
onLoad(); |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
|
||||
// 页面初始化 |
||||
const onLoad = async () => { |
||||
console.log($route, '地址栏数据'); |
||||
try { |
||||
details.loadingObj.list = true; |
||||
let submit = { |
||||
current: details.page.currentPage, |
||||
size: details.page.pageSize, |
||||
...$route.query, |
||||
...details.query, |
||||
}; |
||||
let res = await $_getDeliveryDetailsReport(submit); |
||||
const { code, data } = res.data; |
||||
if (code != 200) { |
||||
return; |
||||
} |
||||
details.page.total = data.total; |
||||
details.data = data.records; |
||||
console.log(res, '列表数据'); |
||||
} catch (e) { |
||||
console.log(e); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}; |
||||
onLoad(); |
||||
// 导出 |
||||
const exportReport = () => { |
||||
ElMessageBox.confirm('是否导出报表?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
Pageloading.value = true; |
||||
let data = { |
||||
...$route.query, |
||||
...details.query, |
||||
}; |
||||
delete data.name; |
||||
$_expDeliveryDetailsReport(data) |
||||
.then(res => { |
||||
downloadXls(res.data, `${$route.query.name}配送统计报表数据详情.xlsx`); |
||||
}) |
||||
.catch(() => {}) |
||||
.finally(() => { |
||||
Pageloading.value = false; |
||||
}); |
||||
}) |
||||
.catch(() => {}); |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
</style> |
@ -0,0 +1,565 @@
|
||||
<template> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud" v-loading="Pageloading" element-loading-text="Loading..."> |
||||
<!-- 搜索模块 --> |
||||
<div v-h5uShow="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="TopQuery" class="el-fr-d"> |
||||
<el-form-item label="仓库"> |
||||
<el-select |
||||
multiple |
||||
v-model="TopQuery.warehouseNameRange" |
||||
filterable |
||||
clearable |
||||
collapse-tags |
||||
popper-class="custom-header" |
||||
:max-collapse-tags="1" |
||||
placeholder="多选仓库搜索" |
||||
style="width: 240px" |
||||
> |
||||
<template #header> |
||||
<el-checkbox |
||||
v-model="checkAll" |
||||
:indeterminate="indeterminate" |
||||
@change="handleCheckAll" |
||||
> |
||||
全选 |
||||
</el-checkbox> |
||||
</template> |
||||
<el-option |
||||
v-for="item in warehouseList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item label="配送类型"> |
||||
<el-select |
||||
v-model="TopQuery.deliveryType" |
||||
clearable |
||||
popper-class="custom-header" |
||||
placeholder="请选择配送类型" |
||||
style="width: 240px" |
||||
> |
||||
<el-option |
||||
v-for="item in DeliveryTypeList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item label="配送日期"> |
||||
<el-date-picker |
||||
v-model="TopQuery.time" |
||||
type="daterange" |
||||
unlink-panels |
||||
range-separator="至" |
||||
start-placeholder="开始时间" |
||||
end-placeholder="结束时间" |
||||
:shortcuts="shortcuts" |
||||
format="YYYY-MM-DD" |
||||
value-format="YYYY-MM-DD" |
||||
/> |
||||
</el-form-item> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</div> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="exportReport" |
||||
><el-icon><Download /></el-icon>导出</el-button |
||||
> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template |
||||
v-if=" |
||||
['审核率', '签收率', '库存品签收率', '计划准确率'].includes( |
||||
slotProps.scope.column.label |
||||
) |
||||
" |
||||
> |
||||
<span |
||||
:class="getColorClass(slotProps.scope.column.label, slotProps.scope.row)" |
||||
:key="slotProps.scope.column.label" |
||||
> |
||||
{{ getRateValue(slotProps.scope.column.label, slotProps.scope.row) }}% |
||||
</span> |
||||
</template> |
||||
<template v-else-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-text @click="view(slotProps.scope.row)">查看</el-text> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<!-- <el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> --> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { processRowPropertyName, setNodeHeight } from '@/utils/util'; |
||||
import { columnList } from '@/option/reportforms/DeliveryStatisticsReport.js'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls, handleClearTableQuery } from '@/utils/util'; |
||||
import { |
||||
$_getDeliveryStatisticsReport, |
||||
$_expDeliveryStatisticsReport, |
||||
} from '@/api/reportforms/index.js'; |
||||
import { useStore } from 'vuex'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import dayjs from 'dayjs'; |
||||
import { $_getMyWarehouseList } from '@/api/reportforms/index.js'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const checkAll = ref(false); |
||||
const Pageloading = ref(false); |
||||
const indeterminate = ref(false); |
||||
const warehouseList = ref([]); |
||||
const queryCarn = ref({}); |
||||
const DeliveryTypeList = ref([ |
||||
{ |
||||
label: '全部', |
||||
value: '商配,市配', |
||||
}, |
||||
{ |
||||
label: '商配', |
||||
value: '商配', |
||||
}, |
||||
{ |
||||
label: '市配', |
||||
value: '市配', |
||||
}, |
||||
]); |
||||
const TopQuery = ref({ |
||||
warehouseNameRange: [], |
||||
time: [], |
||||
}); //查询顶部 |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00' |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 列表数据 */ |
||||
data: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
defaultTime2, |
||||
} = toRefs(details); |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
processRowPropertyName(index, row, details.query); |
||||
searchChange(); |
||||
}; |
||||
|
||||
/** 表格表头时间选择 */ |
||||
const timesc = async (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowPropertyName(index, row, details.query); |
||||
searchChange(); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
console.log(columnList, 'columnList'); |
||||
// 仓库处理 |
||||
if (TopQuery.value.warehouseNameRange?.length) { |
||||
queryCarn.value.warehouseName = TopQuery.value.warehouseNameRange.join(','); |
||||
} else { |
||||
delete queryCarn.value.warehouseName; |
||||
} |
||||
// 配送类型 |
||||
if (TopQuery.value.deliveryType) { |
||||
queryCarn.value.deliveryType = TopQuery.value.deliveryType; |
||||
columnList.find(item => item.prop == 'deliveryType').head = false; |
||||
} else { |
||||
delete queryCarn.value.deliveryType; |
||||
|
||||
columnList.find(item => item.prop == 'deliveryType').head = true; |
||||
} |
||||
// 日期处理 |
||||
if (TopQuery.value.time?.length) { |
||||
queryCarn.value.startTaskTime = TopQuery.value.time[0]; //开始日期 |
||||
queryCarn.value.endTaskTime = TopQuery.value.time[1]; //结束日期 |
||||
} else { |
||||
delete queryCarn.value.startTaskTime; |
||||
delete queryCarn.value.endTaskTime; |
||||
} |
||||
onLoad(); |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
onLoad(); |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
onLoad(); |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
onLoad(); |
||||
}; |
||||
//清空 |
||||
const searchReset = () => { |
||||
details.query = {}; |
||||
queryCarn.value = {}; |
||||
TopQuery.value = { |
||||
time: [], |
||||
deliveryType: '', |
||||
warehouseNameRange: [], |
||||
}; |
||||
handleClearTableQuery(details.columnList); |
||||
details.data = []; |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
const handleCheckAll = val => { |
||||
console.log(val, 'val'); |
||||
indeterminate.value = false; |
||||
if (val) { |
||||
TopQuery.value.warehouseNameRange = warehouseList.value.map(_ => _.value); |
||||
} else { |
||||
TopQuery.value.warehouseNameRange = []; |
||||
} |
||||
}; |
||||
const Dictionaryinitialization = () => { |
||||
// 获取仓库 |
||||
|
||||
$_getMyWarehouseList().then(res => { |
||||
console.log(res, '仓库列表'); |
||||
if (res.data.data.length) { |
||||
console.log(columnList, 'columnList'); |
||||
|
||||
res.data.data.forEach(item => { |
||||
warehouseList.value.push({ |
||||
value: item.name, |
||||
label: item.name, |
||||
}); |
||||
}); |
||||
|
||||
columnList.find(item => item.prop == 'warehouseName').checkarr = warehouseList.value; |
||||
} |
||||
}); |
||||
}; |
||||
Dictionaryinitialization(); |
||||
// 页面初始化 |
||||
const onLoad = async () => { |
||||
try { |
||||
details.loadingObj.list = true; |
||||
const submit = { |
||||
...details.query, |
||||
...queryCarn.value, |
||||
}; |
||||
const res = await $_getDeliveryStatisticsReport(submit); |
||||
const { code, data } = res.data; |
||||
|
||||
if (code !== 200) { |
||||
return; |
||||
} |
||||
|
||||
// 定义一个处理数据的函数 |
||||
const parsePercentage = value => (value ? Number(value.slice(0, -1)) : 0); |
||||
|
||||
// 直接修改原数组,避免创建新数组 |
||||
for (let i = 0; i < data.records.length; i++) { |
||||
const item = data.records[i]; |
||||
item.reviewRate = parsePercentage(item.reviewRate); |
||||
item.signRate = parsePercentage(item.signRate); |
||||
item.signStockRate = parsePercentage(item.signStockRate); |
||||
item.planAccuracy = parsePercentage(item.planAccuracy); |
||||
} |
||||
|
||||
details.data = data.records; |
||||
details.page.total = data.total; |
||||
} catch (e) { |
||||
console.error(e); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}; |
||||
|
||||
const getColorClass = (label, row) => { |
||||
const rateValue = getRateValue(label, row); |
||||
return rateValue === 100 ? 'rate-black' : 'rate-red'; |
||||
}; |
||||
|
||||
const getRateValue = (label, row) => { |
||||
switch (label) { |
||||
case '审核率': |
||||
return row.reviewRate; |
||||
case '签收率': |
||||
return row.signRate; |
||||
case '库存品签收率': |
||||
return row.signStockRate; |
||||
case '计划准确率': |
||||
return row.planAccuracy; |
||||
default: |
||||
return 0; |
||||
} |
||||
}; |
||||
// 查看详情 |
||||
const view = async row => { |
||||
let QueryData = { |
||||
deliveryType: row.deliveryType, |
||||
warehouseName: row.warehouseName, |
||||
name: `${row.warehouseName}-配送详情`, |
||||
}; |
||||
$useStore.commit('DEL_ONCE_TAG', '/reportforms/DeliveryDetailsReport'); |
||||
if (TopQuery.value.time?.length) { |
||||
QueryData.startTaskTime = dayjs(TopQuery.value.time[0]).format('YYYY-MM-DD HH:mm:ss'); //开始日期 |
||||
QueryData.endTaskTime = dayjs(TopQuery.value.time[1]).format('YYYY-MM-DD HH:mm:ss'); //结束日期 |
||||
} |
||||
$router.push({ |
||||
path: '/reportforms/DeliveryDetailsReport', |
||||
query: { |
||||
...QueryData, |
||||
}, |
||||
}); |
||||
}; |
||||
// 导出 |
||||
const exportReport = () => { |
||||
ElMessageBox.confirm('是否导出报表?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
Pageloading.value = true; |
||||
let data = { |
||||
...details.query, |
||||
...queryCarn.value, |
||||
}; |
||||
$_expDeliveryStatisticsReport(data) |
||||
.then(res => { |
||||
downloadXls(res.data, `配送统计报表数据.xlsx`); |
||||
}) |
||||
.catch(() => {}) |
||||
.finally(() => { |
||||
Pageloading.value = false; |
||||
}); |
||||
}) |
||||
.catch(() => {}); |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el_textBtn { |
||||
color: #ff1100 !important ; |
||||
} |
||||
.rate-black { |
||||
color: black !important; |
||||
} |
||||
|
||||
.rate-red { |
||||
color: red !important; |
||||
} |
||||
</style> |
Loading…
Reference in new issue