You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

416 lines
11 KiB

11 months ago
<template>
<basic-container v-loading="details.loadingObj.pageLoading">
<div class="avue-crud">
<el-tabs type="border-card" v-model="details.pageStatus" @tab-click="handleClickTab">
<!-- toB -->
<el-tab-pane
v-for="(item, index) in details.pageInfo"
:name="item.name" :label="item.title">
<!-- 搜索模块 -->
<div v-h5uShow="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="item.query" class="header_search">
<!-- 查询按钮 -->
<el-form-item>
<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>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<!-- 审核 -->
<el-button type="primary" icon="Stamp" @click="handleConfirm">生成对账单</el-button>
<!-- 计算费用 -->
<el-button type="primary" icon="Stamp" @click="handleConfirm">计算费用</el-button>
<!-- 导出 -->
<el-button type="primary" icon="Download" @click="handleExport"> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true, item)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
<!-- 表格 -->
<tablecmt
ref="tableNodeRef"
:columnList="item.columnList"
:tableData="details.data"
:loading="details.loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
<!-- 列表配置显示 -->
<edittablehead
@closce="(flag)=> showdrawer(flag, item)"
:drawerShow="item.drawerShow"
v-model="item.columnList"
></edittablehead>
</el-tab-pane>
</el-tabs>
11 months ago
</div>
</basic-container>
</template>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { postPageList, postCheckBalance, postReal } from '@/api/finance/ReconciliationDepositSlip';
11 months ago
import {
downloadXls,
setNodeHeight,
getHtmls,
handleClearTableQuery,
handleInputQuery,
handleSelectQuery,
handleTranslationDataSeclect,
11 months ago
} from '@/utils/util';
import { columnList } from '@/option/finance/ReconciliationDepositSlip';
import { useRouter } from 'vue-router';
import { deepClone } from '@/utils/util';
import { ElMessage, ElMessageBox } from 'element-plus';
// 获取路由实例
const $router = useRouter();
const details = reactive<any>({
/** 是否开启搜索 */
search: true,
pageInfo: [
{
title: 'toB运单对账',
columnList: deepClone(columnList),
query: {},
name: 1
},
{
title: 'toC订单对账',
columnList: deepClone(columnList),
query: {},
name: 2
}
],
11 months ago
/** 表格搜索条件 */
/** 时间快捷选择设置 */
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];
},
},
],
/** 列表 */
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
pageNum: 1,
11 months ago
pageSize: 30,
total: 0,
},
form: {},
/** 页面激活状态 : 1 -- toB; 2 -- toC */
pageStatus: 1 as 1 | 2,
11 months ago
});
const tableNodeRef = ref();
const { search, shortcuts, selectionList, drawerShow, page } = toRefs(details);
11 months ago
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
onMounted(async () => {
await nextTick();
const node = details.pageStatus === 1 ? tableNodeRef.value[0].$el : tableNodeRef.value[1].$el;
setNodeHeight(node, '', true);
11 months ago
});
/** 请求页面数据 */
const onLoad = async (params = {}) => {
try {
// 开启列表loading动画
details.loadingObj.list = true;
const submitData = { ...details.query, ...params, ...details.page };
// listType 1 -- toB ; 2 -- toC
submitData.listType = details.pageStatus;
11 months ago
// 获取暂存单列表
const res = await postPageList(submitData);
11 months ago
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
11 months ago
details.page.total = data.total;
handleTranslationDataSeclect(
details.data,
details.pageStatus === 1 ? details.columnList1 : details.columnList2
);
11 months ago
return res.data;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
const initOnLoad = (params = {}) => {
details.page.pageNum = 1;
details.page.total = 0;
onLoad(params);
};
initOnLoad();
/** 搜索 */
const searchChange = () => {
initOnLoad();
};
/** 清空表单 */
const searchReset = () => {
// details.query = {};
details.pageStatus === 1 ? (details.query1 = {}) : (details.query2 = {});
details.page.pageNum = 1;
handleClearTableQuery(details.pageStatus === 1 ? details.columnList1 : details.columnList2);
11 months ago
initOnLoad();
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean, item) => {
item.drawerShow = _flag;
11 months ago
};
/** 是否开启搜索区 */
const searchHide = () => {
details.search = !details.search;
const node = details.pageStatus === 1 ? tableNodeRef.value[0].$el : tableNodeRef.value[1].$el;
setNodeHeight(node, '', true);
11 months ago
};
/** 表格表头输入框搜索 */
const inputsc = (index, col) => {
handleInputQuery(index, col, details.pageStatus === 1 ? details.query1 : details.query2);
11 months ago
initOnLoad();
};
/** 表格表头时间选择 */
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];
}
initOnLoad();
};
/** 表格表头下拉框选择 */
const selectsc = (index, colors) => {
handleSelectQuery(index, colors, details.pageStatus === 1 ? details.query1 : details.query2);
11 months ago
initOnLoad();
};
/** 表格表头复选框选择 */
const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
initOnLoad();
};
/** 页码改变执行的回调 */
const currentChange = pageNum => {
details.page.pageNum = pageNum;
onLoad();
};
const handleClickTab = async e => {
console.log('e :>> ', e);
await nextTick();
const node = details.pageStatus === 1 ? tableNodeRef.value[0].$el : tableNodeRef.value[1].$el;
setNodeHeight(node, '', true);
console.log('details.pageStatus :>> ', details.pageStatus);
initOnLoad();
};
/** 批量对账单确认 */
const handleConfirm = () => {
if (details.selectionList.length === 0) return ElMessage.warning('请选择需要确认的数据');
const _errorArr = [];
const _arr = [];
for (let index = 0; index < details.selectionList.length; index++) {
const value = details.selectionList[index];
if (Number(value.confirmStatisticsOrder) === 1) _errorArr.push(value.orderNo);
_arr.push(value.orderInfoId);
11 months ago
}
if (_errorArr.length > 0)
return ElMessage.warning(`订单【 ${_errorArr.join('、')} 】-- 已确认,请勿重复确认`);
ElMessageBox.confirm('是否确认对账单?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
try {
details.loadingObj.pageLoading = true;
const submitData = {
orderInfoIds: _arr,
};
const res = await postCheckBalance(submitData);
const { code, msg } = res.data;
if (code !== 200) return msg && ElMessage.warning(msg);
if (msg) ElMessage.success(msg);
} catch (error) {
console.log('error :>> ', error);
} finally {
onLoad();
details.loadingObj.pageLoading = false;
}
});
};
/** 计算仓储&配送费用 */
const handleComputedPrice = ({ row }) => {
ElMessageBox.confirm('确认计算仓储&配送费用?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
try {
details.loadingObj.pageLoading = true;
const res = await postReal(row.orderInfoId);
const { code, msg } = res.data;
if (code !== 200) return msg && ElMessage.warning(msg);
if (msg) ElMessage.success(msg);
} catch (error) {
console.log('error :>> ', error);
} finally {
onLoad();
details.loadingObj.pageLoading = false;
}
});
11 months ago
};
/** 导出 */
const handleExport = () => {
ElMessageBox.confirm('是否确认导出?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
ElMessage({
type: 'success',
message: '导出成功!',
});
});
};
</script>
<style scoped lang="scss">
// 日期选择器
:deep(.el-date-editor.el-input) {
height: 100% !important;
width: 100% !important;
}
:deep(.el-range-editor.el-input__wrapper) {
height: 100% !important;
}
</style>