退料分析

This commit is contained in:
binbin_pan 2024-04-26 10:56:01 +08:00
parent eb1c5d8d76
commit ba5282063c
4 changed files with 211 additions and 2 deletions

View File

@ -9,6 +9,7 @@ const URL_SCRAP_ANALYSIS = '/screen/base/largeScreen/home/getScrapAnalysisByMont
const URL_TOTAL_OWNERSHIP = '/screen/base/largeScreen/home/getTotalOwnership/details' const URL_TOTAL_OWNERSHIP = '/screen/base/largeScreen/home/getTotalOwnership/details'
const URL_ACCEPTANCE_STORAGE = '/screen/base/largeScreen/home/getAcceptanceStorage/details' const URL_ACCEPTANCE_STORAGE = '/screen/base/largeScreen/home/getAcceptanceStorage/details'
const URL_PICKING_ANALYSIS = '/screen/base/largeScreen/home/getPickingAnalysisByMonth/details' const URL_PICKING_ANALYSIS = '/screen/base/largeScreen/home/getPickingAnalysisByMonth/details'
const URL_MATERIAL_RETURN_BY_MONTH = '/screen/base/largeScreen/home/getMaterialReturnByMonth/details'
// 设备类型 // 设备类型
export const getTypeList = params => GET(URL_TYPE_LIST, params) export const getTypeList = params => GET(URL_TYPE_LIST, params)
@ -35,4 +36,7 @@ export const getTotalOwnership = data => POST(URL_TOTAL_OWNERSHIP, data)
export const getAcceptanceStorage = data => POST(URL_ACCEPTANCE_STORAGE, data) export const getAcceptanceStorage = data => POST(URL_ACCEPTANCE_STORAGE, data)
// 领料分析 // 领料分析
export const getPickingAnalysis = data => POST(URL_PICKING_ANALYSIS, data) export const getPickingAnalysis = data => POST(URL_PICKING_ANALYSIS, data)
// 退料分析
export const getMaterialReturnByMonth = data => POST(URL_MATERIAL_RETURN_BY_MONTH, data)

View File

@ -87,7 +87,6 @@ export default {
materialReqProjectValue: '', materialReqProjectValue: '',
materialReqUnitList: [], materialReqUnitList: [],
materialReqProjectList: [], materialReqProjectList: [],
materialReqTypeList: [],
}, },
tableData: [], tableData: [],
tableColumn: [ tableColumn: [

View File

@ -0,0 +1,199 @@
<template>
<div>
<el-dialog
title=""
:visible.sync="open"
width="85%"
append-to-body
:close-on-click-modal="false"
>
<div class="content">
<el-form :model="formData" ref="form" label-width="80px" :inline="false" size="small" inline>
<el-form-item label="领料单号" size="small" prop="materialReqNo">
<el-input v-model="formData.materialReqNo" placeholder="请输入领料单号" size="small" clearable filterable></el-input>
</el-form-item>
<el-form-item label="单位名称" size="small" prop="materialReqUnitValue">
<el-select v-model="formData.materialReqUnitValue" placeholder="请选择单位" size="small" clearable filterable @change="handleUnit">
<el-option
v-for="item in formData.materialReqUnitList"
:key="item.unitId"
:label="item.unitName"
:value="item.unitId"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="工程名称" size="small" prop="materialReqProjectValue">
<el-select v-model="formData.materialReqProjectValue" placeholder="请选择工程名称" size="small" clearable filterable @change="handleProject">
<el-option
v-for="item in formData.materialReqProjectList"
:key="item.projectId"
:label="item.projectName"
:value="item.projectId"
></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="small" @click="handleSearch">查询</el-button>
<el-button icon="el-icon-refresh" size="small" @click="handleReset">重置</el-button>
</el-form-item>
</el-form>
<el-table :data="tableData" style="width: 100%">
<el-table-column
v-for="item in tableColumn"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="item.prop"
:align="item.align"
:type="item.type"
show-overflow-tooltip
>
</el-table-column>
</el-table>
<Pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="open = false"> </el-button>
</span>
</el-dialog>
</div>
</template>
<script>
import Pagination from '../Pagination/index.vue'
import { getMaterialReturnByMonth, getUnitList, getProjectList } from '../../api/dialog'
export default {
name: 'getMaterialsDialog',
components: {
Pagination
},
data() {
return {
open: false,
formData: {
materialReqNo: '',
materialReqUnitValue: '',
materialReqProjectValue: '',
materialReqUnitList: [],
materialReqProjectList: [],
},
tableData: [],
tableColumn: [
{
label: '序号',
type: 'index',
width: 60,
align: 'center'
},
{
label: '退料单号',
prop: 'materialCode',
align: 'center'
},
{
label: '退料单位',
prop: 'unitName',
align: 'center'
},
{
label: '退料工程',
prop: 'projectName',
align: 'center'
},
{
label: '退料数量',
prop: 'num',
align: 'center'
},
{
label: '申请时间',
prop: 'materialTime',
align: 'center'
},
{
label: '申请状态',
prop: 'statusName',
align: 'center'
}
],
total: 0,
queryParams: {
pageNum: 1,
pageSize: 10
},
maType: 1
};
},
created() {
this.getUnit()
this.getProject()
},
methods: {
setOpen(params) {
this.open = params.open,
this.maType = params.maType,
this.tableData = []
this.total = 0
setTimeout(() => {
this.$refs.form.resetFields()
this.getList()
}, 100)
},
getList() {
const params = {
pageNum: this.queryParams.pageNum,
pageSize: this.queryParams.pageSize,
maType: this.maType,
materialCode: this.formData.materialReqNo.trim(),
unitId: this.formData.materialReqUnitValue,
projectId: this.formData.materialReqProjectValue,
}
getMaterialReturnByMonth(params).then(({data}) => {
this.tableData = data.rows
this.total = data.total
})
},
getUnit() {
getUnitList().then(res => {
this.formData.materialReqUnitList = res.data
})
},
handleUnit(val) {
this.formData.materialReqUnitValue = val
},
getProject() {
getProjectList().then(res => {
this.formData.materialReqProjectList = res.data
})
},
handleProject(val) {
this.formData.materialReqProjectValue = val
},
handleSearch() {
this.queryParams.pageNum = 1
this.getList()
},
handleReset() {
this.$refs.form.resetFields()
this.getList()
}
}
}
</script>
<style lang="scss" scoped>
.content{
padding: 20px;
}
</style>

View File

@ -16,6 +16,8 @@
</div> </div>
</div> </div>
</div> </div>
<returnMaterialAnalysisDialog ref="returnMaterial" />
</div> </div>
</template> </template>
<script> <script>
@ -23,8 +25,11 @@ import ONE from '../../assets/img/myImage/one.png';
import TWO from '../../assets/img/myImage/TWO.png'; import TWO from '../../assets/img/myImage/TWO.png';
import THREE from '../../assets/img/myImage/THREE.png'; import THREE from '../../assets/img/myImage/THREE.png';
import { getMaterialReturnByMonthApi } from "../../api/screen"; import { getMaterialReturnByMonthApi } from "../../api/screen";
import returnMaterialAnalysisDialog from './returnMaterialAnalysisDialog';
export default { export default {
name: 'accessRatePage', name: 'accessRatePage',
components: { returnMaterialAnalysisDialog },
data() { data() {
return { return {
newArr: [ newArr: [
@ -66,6 +71,7 @@ export default {
}, },
handleClick(item) { handleClick(item) {
console.log('点击', item) console.log('点击', item)
this.$refs.returnMaterial.setOpen({ open: true, maType: this.maType })
} }
}, },
} }
@ -73,6 +79,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.access-rate-page { .access-rate-page {
z-index: 2002;
margin-bottom: 31px; margin-bottom: 31px;
.access-rate-box { .access-rate-box {
.access-rate-box-title-bg { .access-rate-box-title-bg {