feat(订单明细): 添加删除订单明细功能

feat(辅料管理): 新增辅料变动记录功能

feat(仪表拓扑): 在仪表标签中显示上次抄表记录

fix(设备管理): 修复图片预览空值问题

refactor(员工管理): 部门树显示负责人信息

style(备件变动): 优化备件变动页面布局

docs(订单记录): 更新操作类型映射表

test(销售异议): 新增销售异议管理模块

chore: 更新.gitignore文件
This commit is contained in:
砂糖
2026-01-04 14:42:51 +08:00
parent aeecf4bcf7
commit 42dbbf79ae
16 changed files with 1724 additions and 316 deletions

View File

@@ -1,16 +1,32 @@
<template>
<div>
<partChange />
<el-tabs v-model="activeTab" type="border-card">
<el-tab-pane label="备件变动" name="partChange">
<partChange v-if="activeTab === 'partChange'"/>
</el-tab-pane>
<el-tab-pane label="辅料变动" name="auxiliaryChange">
<auxiliaryChange v-if="activeTab === 'auxiliaryChange'"/>
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import partChange from '../components/pages/partChange.vue';
import auxiliaryChange from '../components/pages/auxiliaryChange.vue';
export default {
name: "ReadyChange",
data() {
return {
activeTab: 'partChange'
}
},
components: {
partChange
partChange,
auxiliaryChange
}
}
</script>

View File

@@ -243,25 +243,12 @@ export default {
changeOpen: false,
changeTitle: '',
changeForm: {},
changes: [],
};
},
created() {
this.getList();
this.getEquipmentList();
},
watch: {
currentRow: {
handler(newVal) {
if (newVal.partId) {
listSparePartsChange({ partId: newVal.partId, pageNum: 1, pageSize: 1000 }).then(response => {
this.changes = response.rows;
})
}
},
deep: true
}
},
methods: {
/** 查询备品备件列表 */
getEquipmentList() {