|
|
|
@ -1,8 +1,13 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div class="check-page">
|
|
|
|
<div class="check-page">
|
|
|
|
|
|
|
|
<div class="button-box">
|
|
|
|
<a-button type="primary" @click="exportStock" class="export-all">
|
|
|
|
<a-button type="primary" @click="exportStock" class="export-all">
|
|
|
|
导出巷道盘点数据
|
|
|
|
导出巷道盘点数据
|
|
|
|
</a-button>
|
|
|
|
</a-button>
|
|
|
|
|
|
|
|
<a-button type="primary" @click="exportAllStock" class="export-all">
|
|
|
|
|
|
|
|
导出全部巷道盘点数据
|
|
|
|
|
|
|
|
</a-button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="title-info">
|
|
|
|
<div class="title-info">
|
|
|
|
<span class="explain">颜色说明:</span>
|
|
|
|
<span class="explain">颜色说明:</span>
|
|
|
|
<span class="info-text">
|
|
|
|
<span class="info-text">
|
|
|
|
@ -221,6 +226,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
exportAllStock() {
|
|
|
|
|
|
|
|
this.$utils.downloadFileUrl('盘点列表.xls', '/api/stock/exportAll');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {Subsection}
|
|
|
|
components: {Subsection}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
@ -228,7 +237,7 @@ export default {
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.check-page {
|
|
|
|
.check-page {
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
.title-info {
|
|
|
|
.title-info {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
align-items: center;
|
|
|
|
@ -296,9 +305,21 @@ export default {
|
|
|
|
width: 200px;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.export-all {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.button-box{
|
|
|
|
position: absolute;
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
top:20px;
|
|
|
|
|
|
|
|
right: 40px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.export-all {
|
|
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
|