|
@@ -1343,6 +1343,11 @@
|
|
|
class="el-icon-circle-plus marbottom10"
|
|
|
@click="addNodeInfoTable()"
|
|
|
style="font-size:24px;color:rgb(37, 193, 99);cursor: pointer;"
|
|
|
+ ></i>
|
|
|
+ <i
|
|
|
+ class="el-icon-refresh-right marbottom10"
|
|
|
+ @click="refreshnfoTable()"
|
|
|
+ style="font-size: 24px; color: rgb(37, 193, 99); cursor: pointer"
|
|
|
></i>
|
|
|
</div>
|
|
|
<el-table
|
|
@@ -1653,8 +1658,9 @@ import FormulaEditone from '@/views/formula/edit1.vue'
|
|
|
import {
|
|
|
getLazytree, getDetail, update, selectByNodeTable,getParamElements,delParamElements,specifiedParamElements, getAlltree,
|
|
|
saveFormAndElement, selectFormElements, removeTableById, findWbsTreeSameLevel, wbsTreeSort, findWbsTreeTableSameLevel, wbsTreeTableSort, parameters, saveOrUpdateBatch, keymap, importwbsTreeFormBatch, exportBatchTemplate, updateBatchNodeTableInfo,
|
|
|
- importWbsTree, exportTemplate, remove as removeTreeNode,submitFullName
|
|
|
+ importWbsTree, exportTemplate, remove as removeTreeNode,submitFullName,refrehPram
|
|
|
} from "@/api/manager/wbstree";
|
|
|
+
|
|
|
import {
|
|
|
saveElement, remove as removeElement, updateBatchElements, getTemplate,
|
|
|
importWbsElement
|
|
@@ -2660,6 +2666,17 @@ export default {
|
|
|
},
|
|
|
addNodeInfoTable () {//添加节点参数数据
|
|
|
this.nodeInfoTable.unshift({ k: '', v: '', remark: '', nodeId: this.jiedianId,type: 1 })
|
|
|
+ },
|
|
|
+ refreshnfoTable(){
|
|
|
+ //刷新表格
|
|
|
+ let prams={
|
|
|
+ nodeId: this.jiedianId,
|
|
|
+ type: 0,
|
|
|
+
|
|
|
+ }
|
|
|
+ refrehPram(prams).then((res)=>{
|
|
|
+ console.log(res);
|
|
|
+ })
|
|
|
},
|
|
|
delNodeInfo (key,obj) {//设置参数名称中的删除按钮
|
|
|
this.delids.push(obj.id)
|