|
|
|
@ -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"> |
|
|
|
@ -83,22 +126,30 @@
|
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
v-model="details.columnList" |
|
|
|
|
></edittablehead> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup> |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList } from '@/option/storagecost/OrderTotalWarehouse.js'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { processRowProperty,setNodeHeight } from '@/utils/util'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { ElMessageBox,ElMessage } from 'element-plus'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
const $router = useRouter();//跳转 |
|
|
|
|
const $useStore = useStore();//权限 |
|
|
|
|
const $route = useRoute();//获取地址栏参数 |
|
|
|
|
const details = reactive({ |
|
|
|
|
<script setup> |
|
|
|
|
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'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
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 */ |
|
|
|
@ -174,9 +225,9 @@
|
|
|
|
|
/** 包明细 */ |
|
|
|
|
packageOrderListlVisited: false, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { |
|
|
|
|
const { |
|
|
|
|
search, |
|
|
|
|
query, |
|
|
|
|
shortcuts, |
|
|
|
@ -190,25 +241,22 @@
|
|
|
|
|
zeroAdditionalRecordingInfo, |
|
|
|
|
popUpShow, |
|
|
|
|
recorddata, |
|
|
|
|
} = toRefs(details); |
|
|
|
|
} = toRefs(details); |
|
|
|
|
|
|
|
|
|
/** 展开列表控件 */ |
|
|
|
|
const showdrawer = _flag => { |
|
|
|
|
/** 展开列表控件 */ |
|
|
|
|
const showdrawer = _flag => { |
|
|
|
|
details.drawerShow = _flag; |
|
|
|
|
}; |
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
|
const inputsc = (index, row) => { |
|
|
|
|
}; |
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
|
const inputsc = (index, row) => { |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
test(details.query); |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 实例函数 |
|
|
|
|
const test=(val)=>{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
const timesc = (index, row) => { |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 实例函数 |
|
|
|
|
const test = val => {}; |
|
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
const timesc = (index, row) => { |
|
|
|
|
console.log(index, row); |
|
|
|
|
if (!!index) { |
|
|
|
|
index = dayjs(index).format('YYYY-MM-DD'); |
|
|
|
@ -217,46 +265,67 @@
|
|
|
|
|
if (!index) { |
|
|
|
|
delete details.query[row.prop]; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
|
const btnsc = val => { |
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
|
const btnsc = val => { |
|
|
|
|
console.log(val); |
|
|
|
|
}; |
|
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
|
const selectsc = (index, row) => { |
|
|
|
|
}; |
|
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
|
const selectsc = (index, row) => { |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
}; |
|
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
|
const selectionChange = list => { |
|
|
|
|
}; |
|
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
|
const selectionChange = list => { |
|
|
|
|
console.log(list); |
|
|
|
|
details.selectionList = list; |
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
}; |
|
|
|
|
// 每页多少条 |
|
|
|
|
const sizeChange = val => { |
|
|
|
|
page.value.pageSize = val; |
|
|
|
|
}; |
|
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
|
const currentChange = val => { |
|
|
|
|
page.value.currentPage = val; |
|
|
|
|
}; |
|
|
|
|
// 刷新按钮 |
|
|
|
|
const searchChangeS = () => { |
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
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 => { |
|
|
|
|
details.page.pageSize = val; |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
|
const currentChange = val => { |
|
|
|
|
details.page.currentPage = val; |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 刷新按钮 |
|
|
|
|
const searchChangeS = () => { |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
}; |
|
|
|
|
// 顶部搜索 |
|
|
|
|
const searchHide = () => { |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 顶部搜索 |
|
|
|
|
const searchHide = () => { |
|
|
|
|
console.log(details); |
|
|
|
|
details.search = !details.search; |
|
|
|
|
const _node = document.querySelector('.tableNode'); |
|
|
|
|
setNodeHeight(_node, '', true); |
|
|
|
|
}; |
|
|
|
|
// 字典公共函数 |
|
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
|
}; |
|
|
|
|
// 字典公共函数 |
|
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
|
getDictionaryBiz(dictionaryType).then(res => { |
|
|
|
|
console.log(res, '字典'); |
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
@ -266,39 +335,123 @@
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 页面初始化 |
|
|
|
|
// 页面初始化 |
|
|
|
|
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=()=>{ |
|
|
|
|
|
|
|
|
|
// 页面初始化方法 |
|
|
|
|
</script> |
|
|
|
|
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"> |
|
|
|
|
.ElBtnClass button { |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.ElBtnClass button { |
|
|
|
|
border: none; |
|
|
|
|
padding: 0; |
|
|
|
|
background-color: transparent; |
|
|
|
|
} |
|
|
|
|
:deep(.el-card) { |
|
|
|
|
} |
|
|
|
|
:deep(.el-card) { |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
:deep(.el-card__body) { |
|
|
|
|
} |
|
|
|
|
:deep(.el-card__body) { |
|
|
|
|
height: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.el-fy { |
|
|
|
|
} |
|
|
|
|
.el-fy { |
|
|
|
|
flex: 1; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: flex-end; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
} |
|
|
|
|
.avue-crud { |
|
|
|
|
} |
|
|
|
|
.avue-crud { |
|
|
|
|
height: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.el-fr-d { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.el-btn { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|