|
|
@@ -241,7 +241,7 @@ export default {
|
|
|
// 查询【工艺管理】列表数据
|
|
|
this.$refs.technology.fetch({bomId: this.currentRow.id, bomVersionId: this.currentRow.id})
|
|
|
},
|
|
|
- // 跳转【产线管理】-;列表上的Btn事件
|
|
|
+ // 跳转【版本管理】-;列表上的Btn事件
|
|
|
factoryMgr() {
|
|
|
if (!this.currentRow) {
|
|
|
this.$message({
|
|
|
@@ -254,17 +254,18 @@ export default {
|
|
|
this.$store.dispatch('tagsView/delView', this.$route).then(res => {
|
|
|
let obj = {
|
|
|
bomId: this.currentRow.id,
|
|
|
- bomName: this.currentRow.name
|
|
|
+ bomName: this.currentRow.name,
|
|
|
+ partsAlias: this.currentRow.partsAlias
|
|
|
}
|
|
|
this.$router.push({ path: '/prepareProductMgr/technologyVersion', query: obj}) //带参跳转
|
|
|
})
|
|
|
|
|
|
},
|
|
|
- // 跳转【产线管理-Row】-table的操作;
|
|
|
+ // 跳转【版本管理-Row】-table的操作;
|
|
|
factoryRowMgr(row){
|
|
|
// 调用全局挂载的方法
|
|
|
this.$store.dispatch('tagsView/delView', this.$route).then(res => {
|
|
|
- this.$router.push({ path: '/prepareProductMgr/technologyVersion', query: {bomId: row.id}}) //带参跳转
|
|
|
+ this.$router.push({ path: '/prepareProductMgr/technologyVersion', query: {bomId: row.id, bomName: row.name, partsAlias: row.partsAlias}}) //带参跳转
|
|
|
})
|
|
|
},
|
|
|
// 【启用/冻结】按钮-事件
|