|
|
|
@ -6,6 +6,45 @@
|
|
|
|
|
<el-row v-if="search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query" class="el-fr-d"> |
|
|
|
|
<div> |
|
|
|
|
<el-form-item label="客户名称"> |
|
|
|
|
<el-input v-model="queryTop.orderNo" placeholder="请输入客户名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="目的仓"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="queryTop.warehouse" |
|
|
|
|
multiple |
|
|
|
|
placeholder="请选择仓库" |
|
|
|
|
style="min-width: 340px" |
|
|
|
|
> |
|
|
|
|
<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-date-picker |
|
|
|
|
v-model="queryTop.costSettlementYear" |
|
|
|
|
type="year" |
|
|
|
|
placeholder="请选择年份" |
|
|
|
|
value-format="YYYY" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="结算月"> |
|
|
|
|
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in monthList" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item class="el-btn"> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
|
|
@ -19,8 +58,12 @@
|
|
|
|
|
<div class="avue-crud__header"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" @click="AddInfo"><el-icon><Plus /></el-icon>导入</el-button> |
|
|
|
|
<el-button type="primary" @click="AddInfo"><el-icon><Download /></el-icon>导出</el-button> |
|
|
|
|
<el-button type="primary" @click="ImportExcel" |
|
|
|
|
><el-icon><Upload /></el-icon>导入</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" @click="exportExcel" |
|
|
|
|
><el-icon><Download /></el-icon>导出</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -89,6 +132,11 @@
|
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList } from '@/option/storagecost/OrderTotalWarehouse.js'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { |
|
|
|
|
$_getMyWarehouseList, |
|
|
|
|
$_OrderTotalWarehouse, |
|
|
|
|
$_expenseOrderWarehouseTotal, |
|
|
|
|
} from '@/api/storagecost/index.js'; |
|
|
|
|
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
@ -98,6 +146,9 @@
|
|
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
|
const queryTop = ref({}); |
|
|
|
|
const monthList = ref([]); |
|
|
|
|
const warehouseList = ref([]); |
|
|
|
|
const details = reactive({ |
|
|
|
|
/** 是否开启搜索 */ |
|
|
|
|
search: false, |
|
|
|
@ -139,7 +190,7 @@
|
|
|
|
|
columnList, |
|
|
|
|
|
|
|
|
|
/** 列表数据 */ |
|
|
|
|
data: [{}], |
|
|
|
|
data: [], |
|
|
|
|
/** 页面loading */ |
|
|
|
|
loadingObj: { |
|
|
|
|
/** 列表加载loading */ |
|
|
|
@ -200,13 +251,10 @@
|
|
|
|
|
const inputsc = (index, row) => { |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
test(details.query); |
|
|
|
|
|
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 实例函数 |
|
|
|
|
const test=(val)=>{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
const test = val => {}; |
|
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
const timesc = (index, row) => { |
|
|
|
|
console.log(index, row); |
|
|
|
@ -234,19 +282,40 @@
|
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
if (queryTop.value.warehouse?.length) { |
|
|
|
|
queryTop.value.warehouseName = queryTop.value.warehouse.join(','); |
|
|
|
|
} else { |
|
|
|
|
delete details.query.warehouseName; |
|
|
|
|
delete queryTop.value.warehouseName; |
|
|
|
|
} |
|
|
|
|
if (queryTop.value.costSettlementMonth) { |
|
|
|
|
if (!queryTop.value.costSettlementYear) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请选择年份', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
details.query = { ...details.query, ...queryTop.value }; |
|
|
|
|
delete details.query.warehouse; //删除多余字段 |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 每页多少条 |
|
|
|
|
const sizeChange = val => { |
|
|
|
|
page.value.pageSize = val; |
|
|
|
|
details.page.pageSize = val; |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
|
const currentChange = val => { |
|
|
|
|
page.value.currentPage = val; |
|
|
|
|
details.page.currentPage = val; |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 刷新按钮 |
|
|
|
|
const searchChangeS = () => { |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 顶部搜索 |
|
|
|
|
const searchHide = () => { |
|
|
|
@ -268,11 +337,88 @@
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 页面初始化 |
|
|
|
|
const onLoad=()=>{ |
|
|
|
|
|
|
|
|
|
// 页面初始化 |
|
|
|
|
const onLoad = value => { |
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
|
...details.query, |
|
|
|
|
...value, |
|
|
|
|
}; |
|
|
|
|
details.loadingObj.list = true; |
|
|
|
|
$_OrderTotalWarehouse(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '初始化参数'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
details.data = res.data.data.records || []; |
|
|
|
|
details.page.total = res.data.data.total; //页码 |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
const monthFn = () => { |
|
|
|
|
for (let i = 0; i < 12; i++) { |
|
|
|
|
monthList.value.push({ |
|
|
|
|
value: i + 1, |
|
|
|
|
label: i + 1 + '月', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
// 获取仓库 |
|
|
|
|
const MyWarehouseList = () => { |
|
|
|
|
$_getMyWarehouseList().then(res => { |
|
|
|
|
console.log(res, '仓库列表'); |
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
|
warehouseList.value.push({ |
|
|
|
|
value: item.name, |
|
|
|
|
label: item.name, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 页面初始化方法 |
|
|
|
|
const PageOnload = () => { |
|
|
|
|
onLoad(); //获取列表参数 |
|
|
|
|
MyWarehouseList(); //获取仓库 |
|
|
|
|
monthFn(); //月份初始化 |
|
|
|
|
}; |
|
|
|
|
PageOnload(); |
|
|
|
|
// 导入 |
|
|
|
|
const ImportExcel=()=>{ |
|
|
|
|
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
// 导出 |
|
|
|
|
const exportExcel = () => { |
|
|
|
|
ElMessageBox.confirm('是否导出数据?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
console.log(details.query, '搜索参数'); |
|
|
|
|
details.loadingObj.list = true; |
|
|
|
|
let data = { |
|
|
|
|
...details.query, |
|
|
|
|
}; |
|
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
|
$_expenseOrderWarehouseTotal(data).then(res => { |
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
downloadXls(res.data, `月度订单仓储成本明细.xlsx`); |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '导出成功', |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
@ -300,5 +446,12 @@ const onLoad=()=>{
|
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.el-fr-d { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.el-btn { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|