From fa9d138094e2ffabf7b053e73779d1204097ce75 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期二, 11 二月 2025 11:49:46 +0800 Subject: [PATCH] 产品结构树: 1、实现文档功能的删除功能 设备结构树: 1、实现获取对应设备的已发送的NC程序列表 2、实现设备层级导入NC程序功能 3、实现设备关联的已发送NC程序功能的删除功能 --- src/store/modules/Production.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/modules/Production.js b/src/store/modules/Production.js index 883a3f5..f848422 100644 --- a/src/store/modules/Production.js +++ b/src/store/modules/Production.js @@ -21,9 +21,9 @@ actions: { // 浜х嚎鏍� - QueryProduction({ commit }) { + QueryProduction({ commit },type='MDC') { return new Promise((resolve, reject) => { - getAction("/mdc/mdcEquipment/queryTreeListByProduction").then(response => { + getAction("/mdc/mdcEquipment/queryTreeListByProduction",{type}).then(response => { if(response.success){ const result = response.result Vue.ls.set(SYS_PRODUCTION, result) -- Gitblit v1.9.3