bonus-ui/src/views/materialsStation/toolsBack/back/outRecord.vue

307 lines
11 KiB
Vue
Raw Normal View History

2025-06-24 14:15:53 +08:00
<template>
<div class="app-container" id="">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
<el-form-item label="关键字" prop="keyWord">
<el-input
v-model="queryParams.keyWord"
placeholder="请输入关键字"
clearable
:maxlength="20"
style="width: 240px"
/>
</el-form-item>
<!-- 日期范围 -->
<el-form-item label="退料日期" prop="timeRange">
<el-date-picker
v-model="queryParams.timeRange"
type="daterange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
clearable
value-format="yyyy-MM-dd"
format="yyyy-MM-dd"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出数据</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
2025-08-21 13:37:24 +08:00
<el-table v-loading="loading" :data="tableList" :span-method="objectSpanMethod" :max-height="650">
2025-07-24 14:23:57 +08:00
<el-table-column label="序号" align="center" type="index">
2025-06-24 14:15:53 +08:00
<template scope="scope">
<span v-if="scope.$index == 0">合计</span>
2025-09-11 14:19:04 +08:00
<span v-else>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index }}</span>
2025-06-24 14:15:53 +08:00
</template>
</el-table-column>
<el-table-column label="工器具名称" align="center" prop="materialName" :show-overflow-tooltip="true" />
<el-table-column label="规格型号" align="center" prop="typeName" :show-overflow-tooltip="true" />
<el-table-column label="计量单位" align="center" prop="unitName" :show-overflow-tooltip="true" />
<el-table-column label="退料数量" align="center" prop="backNum" :show-overflow-tooltip="true">
<template slot-scope="scope">
<!-- manageType '编码' 使用可点击的 span -->
<span class="clickText" v-if="scope.row.manageType == '0'" @click="openRecords(scope.row)">
{{ scope.row.backNum }}
</span>
<!-- 否则直接显示数字 -->
<span v-else>
{{ scope.row.backNum }}
</span>
</template>
</el-table-column>
2025-07-24 14:23:57 +08:00
<el-table-column label="退料日期" align="center" prop="backTime" width="100" />
<el-table-column label="退料班组" align="center" prop="teamName" width="200" />
<el-table-column label="退料工程" align="center" prop="proName" width="200" />
2025-06-24 14:15:53 +08:00
<el-table-column label="班组长" align="center" prop="backPerson" :show-overflow-tooltip="true" />
<el-table-column label="操作人" align="center" prop="createBy" :show-overflow-tooltip="true" />
<el-table-column label="退料单号" align="center" prop="code" :show-overflow-tooltip="true" />
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
2025-08-29 17:23:47 +08:00
:page-sizes="[10, 20, 50, 100]"
2025-06-24 14:15:53 +08:00
@pagination="getList"
/>
<!-- 在库编码设备弹窗-->
<el-dialog :title="title" :visible.sync="openRecord" width="1200px" append-to-body>
<el-form :model="dialogQuery" ref="dialogQuery" size="small" :inline="true" label-width="80px">
<el-form-item label="关键字" prop="keyWord">
<el-input
v-model="dialogQuery.keyWord"
placeholder="请输入关键字"
clearable
:maxlength="30"
style="width: 240px"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleDialogQuery">查询</el-button>
</el-form-item>
<el-form-item>
<el-button icon="el-icon-download" size="mini" @click="handleDialogStoreExport">导出</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="dialogList">
<el-table-column
label="序号"
align="center"
width="80"
type="index"
:index="indexContinuation(dialogQuery.pageNum, dialogQuery.pageSize)"
></el-table-column>
<el-table-column label="机具名称" align="center" prop="materialName" :show-overflow-tooltip="true" />
<el-table-column label="规格型号" align="center" prop="typeName" :show-overflow-tooltip="true" />
<!-- <el-table-column label="入库数量" align="center" prop="storeNum" :show-overflow-tooltip="true" /> -->
<!-- <el-table-column label="原值(元)" align="center" prop="buyPrice" :show-overflow-tooltip="true" /> -->
<el-table-column label="设备编码" align="center" prop="maCode" :show-overflow-tooltip="true" />
<!-- <el-table-column label="库管员" align="center" prop="maKeeper" :show-overflow-tooltip="true" /> -->
<el-table-column label="班组长" align="center" prop="backPerson" :show-overflow-tooltip="true" />
<el-table-column label="退料时间" align="center" prop="backTime" :show-overflow-tooltip="true" />
<!-- <el-table-column label="入库方式" align="center" prop="inputType" :show-overflow-tooltip="true" /> -->
</el-table>
<pagination
v-show="dialogTotal > 0"
:total="dialogTotal"
:page.sync="dialogQuery.pageNum"
:limit.sync="dialogQuery.pageSize"
@pagination="getStoreCodeList"
/>
</el-dialog>
</div>
</template>
<script>
import { getBackInfoDetailsApi, getBackInfoDetailsNoPageListApi, getSecondBackInfoApi } from '@/api/materialsStation'
export default {
name: '',
dicts: [],
data() {
return {
// 遮罩层
loading: false,
// 选中数组
ids: [],
// 弹出层标题
title: '查看',
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 主表格数据
tableList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
keyWord: null,
timeRange: null
},
//在库弹窗
openRecord: false,
dialogList: [], //在库编码设备列表
dialogQuery: {
pageNum: 1,
pageSize: 10,
keyWord: undefined
},
dialogTotal: 0
}
},
created() {
2025-08-15 17:31:51 +08:00
const end = new Date()
let start = new Date()
start.setMonth(start.getMonth() - 1)
this.queryParams.timeRange = [this.format(start), this.format(end)]
2025-06-24 14:15:53 +08:00
this.getList()
},
methods: {
2025-08-15 17:31:51 +08:00
format(date) {
const y = date.getFullYear()
const m = String(date.getMonth() + 1).padStart(2, '0')
const day = String(date.getDate()).padStart(2, '0')
return `${y}-${m}-${day}`
},
2025-06-24 14:15:53 +08:00
// 获取列表
async getList() {
this.loading = true
const params = {
keyWord: this.queryParams.keyWord,
startTime: this.queryParams.timeRange ? this.queryParams.timeRange[0] : null,
endTime: this.queryParams.timeRange ? this.queryParams.timeRange[1] : null,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum
}
try {
const res = await getBackInfoDetailsApi(params)
if (res.data.rows.length > 0) {
this.tableList = res.data.rows
} else {
this.tableList = []
}
this.total = res.data.total
console.log(this.tableList)
let param = {
keyWord: this.queryParams.keyWord,
startTime: this.queryParams.timeRange ? this.queryParams.timeRange[0] : null,
endTime: this.queryParams.timeRange ? this.queryParams.timeRange[1] : null
}
const response = await getBackInfoDetailsNoPageListApi(param)
let obj = {
backNum: response.data.backNum || 0
}
this.tableList.unshift(obj)
console.log(this.tableList)
this.loading = false
} catch (error) {
this.loading = false
}
},
indexContinuationForTable(num, size) {
let number = (num - 1) * size
console.log(number)
if (number == 0) {
return '合计'
} else {
return number
}
},
// 合并单元格 rowIndex=行数 columnIndex=列数
// 这里是合并table的除表头外的第一行的第二列 + 除表头外的第二行的第二列
// 注意列数和行数从 0 开始
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
if (rowIndex === 0 && columnIndex == 0) {
let rowspan = 1
let colspan = 3
return { rowspan, colspan }
}
// 解决偏移的重要代码
// 重点在 else if 判断必须加因为合并单元格数据会出现偏移、
// 否则如果是 第二行 的 第二列 那么隐藏原有第二行 的 第二列的数据使他隐藏
else if (rowIndex === 0 && columnIndex < 3) {
return {
rowspan: 0,
colspan: 0
}
}
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1
this.getList()
},
/** 重置按钮操作 */
resetQuery() {
2025-08-15 17:31:51 +08:00
const end = new Date()
let start = new Date()
start.setMonth(start.getMonth() - 1)
this.queryParams.timeRange = [this.format(start), this.format(end)]
2025-06-24 14:15:53 +08:00
this.resetForm('queryForm')
this.handleQuery()
},
/** 导出按钮操作 */
handleExport() {
this.download(
2025-06-27 13:35:34 +08:00
'material/material_back_apply_info/exportBackInfoDetails',
2025-06-24 14:15:53 +08:00
{
...this.queryParams
},
`综合查询_保有设备总量_${new Date().getTime()}.xlsx`
)
},
//查看在库编码数据
openRecords(row) {
this.openRecord = true
this.dialogQuery.keyWord = ''
this.dialogQuery.typeId = row.typeId
this.dialogQuery.parentId = row.parentId
this.getStoreCodeList()
},
/** 查询在库编码列表 */
getStoreCodeList() {
getSecondBackInfoApi(this.dialogQuery).then(response => {
this.dialogList = response.data.rows
this.dialogTotal = response.data.total
})
},
/** 搜索在库按钮操作 */
handleDialogQuery() {
this.dialogQuery.pageNum = 1
this.getStoreCodeList()
},
handleDialogStoreExport() {
this.download(
2025-06-27 13:35:34 +08:00
'material/material_back_apply_info/exportSecondBackInfo',
2025-06-24 14:15:53 +08:00
{ ...this.dialogQuery },
`综合查询_在库设备_${new Date().getTime()}.xlsx`
)
}
}
}
</script>
<style lang="scss" scoped>
::v-deep.el-table .fixed-width .el-button--mini {
width: 60px !important;
margin-bottom: 10px;
}
.clickText {
color: #02a7f0;
cursor: pointer;
}
</style>