|
|
|
@ -76,6 +76,8 @@
|
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<!-- <el-text @click="handleShowPackageOrderList(slotProps.scope)"> 包明细 </el-text> --> |
|
|
|
|
<el-text @click="handleComputedPrice(slotProps.scope)"> 计算费用 </el-text> |
|
|
|
|
|
|
|
|
|
<el-text @click="() => ViewTransactionInformation(slotProps.scope)"> |
|
|
|
|
异动信息 |
|
|
|
|
</el-text> |
|
|
|
@ -175,7 +177,8 @@
|
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<!-- <el-text @click="handleShowPackageOrderList(slotProps.scope)"> 包明细 </el-text> --> |
|
|
|
|
<el-text @click="handleComputedPrice(slotProps.scope)"> 计算费用 </el-text> |
|
|
|
|
|
|
|
|
|
<el-text @click="() => ViewTransactionInformation(slotProps.scope)"> |
|
|
|
|
异动信息 |
|
|
|
|
</el-text> |
|
|
|
@ -220,7 +223,7 @@ import dayjs from 'dayjs';
|
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
/** 获取字典 */ |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { postPageList, postCheckBalance } from '@/api/finance/MerchantDepositSlip'; |
|
|
|
|
import { postPageList, postCheckBalance, postReal } from '@/api/finance/MerchantDepositSlip'; |
|
|
|
|
import { |
|
|
|
|
downloadXls, |
|
|
|
|
setNodeHeight, |
|
|
|
@ -486,6 +489,30 @@ const handleConfirm = () => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 计算仓储&配送费用 */ |
|
|
|
|
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; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 导出 */ |
|
|
|
|
const handleExport = () => { |
|
|
|
|
ElMessageBox.confirm('是否确认导出?', '提示', { |
|
|
|
|