diff --git a/klp-ui/src/views/mes/eqp/auxiliary/index.vue b/klp-ui/src/views/mes/eqp/auxiliary/index.vue index 50692f9a..0cf19fc8 100644 --- a/klp-ui/src/views/mes/eqp/auxiliary/index.vue +++ b/klp-ui/src/views/mes/eqp/auxiliary/index.vue @@ -33,11 +33,9 @@ @keyup.enter.native="handleQuery" /> - + + + 搜索 重置 @@ -91,6 +89,7 @@ + @@ -147,11 +146,9 @@ - + + + @@ -196,11 +193,13 @@ import { listAuxiliaryMaterial, getAuxiliaryMaterial, delAuxiliaryMaterial, addAuxiliaryMaterial, updateAuxiliaryMaterial } from "@/api/mes/eqp/auxiliaryMaterial"; import { changeStock } from "@/api/mes/eqp/auxiliaryMaterialChange"; import auxiliaryChange from '../components/pages/auxiliaryChange.vue'; +import dictSelect from '@/components/DictSelect'; export default { name: "Auxiliary", components: { - auxiliaryChange + auxiliaryChange, + dictSelect }, data() { return { diff --git a/klp-ui/src/views/mes/eqp/ready/index.vue b/klp-ui/src/views/mes/eqp/ready/index.vue index 87200548..a7b5ca2d 100644 --- a/klp-ui/src/views/mes/eqp/ready/index.vue +++ b/klp-ui/src/views/mes/eqp/ready/index.vue @@ -38,6 +38,9 @@ + + + 搜索 重置 @@ -92,6 +95,7 @@ + @@ -147,6 +151,9 @@ + + + @@ -197,11 +204,14 @@ import { listSparePart, getSparePart, delSparePart, addSparePart, updateSparePar import { listEquipmentManagement } from "@/api/mes/eqp/equipmentManagement"; import { changeStock } from "@/api/mes/eqp/sparePartsChange"; import partChange from '../components/pages/partChange.vue'; +import dictSelect from '@/components/DictSelect'; + export default { name: "SparePart", components: { - partChange + partChange, + dictSelect }, data() { return { diff --git a/klp-ui/src/views/wms/hrm/apply/leave.vue b/klp-ui/src/views/wms/hrm/apply/leave.vue index c2881e38..f4ebd8ad 100644 --- a/klp-ui/src/views/wms/hrm/apply/leave.vue +++ b/klp-ui/src/views/wms/hrm/apply/leave.vue @@ -331,7 +331,7 @@ export default { // 2. 循环处理每个时段,逐个发送请求 for (let i = 0; i < list.length; i++) { const item = list[i]; - const approvalType = parseInt(item.leaveDays) > 3 ? 'multi' : 'single'; + const approvalType = parseInt(item.leaveDays) > 72 ? 'multi' : 'single'; const singleRequestData = { ...commonFields, startTime: item.startTime, diff --git a/klp-ui/src/views/wms/report/components/coilTable/index.vue b/klp-ui/src/views/wms/report/components/coilTable/index.vue index e9eeb17c..5bd75853 100644 --- a/klp-ui/src/views/wms/report/components/coilTable/index.vue +++ b/klp-ui/src/views/wms/report/components/coilTable/index.vue @@ -81,6 +81,17 @@ export default { showPagination() { return this.totalPage > 1 } + }, + methods: { + // 分页大小改变时触发 + handleSizeChange(val) { + this.pageSize = val + this.pageNum = 1 + }, + // 分页当前页改变时触发 + handleCurrentChange(val) { + this.pageNum = val + }, } } \ No newline at end of file diff --git a/klp-ui/src/views/wms/report/js/column.js b/klp-ui/src/views/wms/report/js/column.js index 8c3a6767..9a35b44c 100644 --- a/klp-ui/src/views/wms/report/js/column.js +++ b/klp-ui/src/views/wms/report/js/column.js @@ -248,22 +248,22 @@ const defaultColumns = { align: "center", }, { - title: "发货绑定车牌号", + title: "车牌号", prop: "bindLicensePlate", align: "center", }, { - title: "发货绑定目标客户", + title: "目标客户", prop: "bindConsigneeUnit", align: "center", }, { - title: "发货绑定单位", + title: "发货单位", prop: "bindSenderUnit", align: "center", }, { - title: "发货绑定负责人", + title: "发货负责人", prop: "bindPrincipal", align: "center", },