| | |
| | | }, { |
| | | label: '方向', |
| | | prop: 'direction', |
| | | width:80, |
| | | formatter:function (row, value) { |
| | | if (row.queryTemplate.direction == 'positive') { |
| | | return '正向' |
| | |
| | | }, { |
| | | label: '业务类型', |
| | | prop: 'btmType', |
| | | width: 130, |
| | | formatter:function (row, value) { |
| | | return row.queryTemplate.btmType; |
| | | } |
| | |
| | | }, { |
| | | label: '查询是否有下级', |
| | | prop: 'queryISLeaf', |
| | | width: 120, |
| | | formatter:function (row, value) { |
| | | return row.queryTemplate.queryISLeaf |
| | | } |
| | | }, { |
| | | label: '子节点层次数', |
| | | prop: 'level', |
| | | width: 100, |
| | | formatter:function (row, value) { |
| | | return row.queryTemplate.level; |
| | | } |
| | |
| | | } |
| | | this.$refs.formRef.openDialog(this.nodeRow.label,'修改','edit',{treeData:this.nodeRow,selectData:this.selectionRow[0]}); |
| | | this.$nextTick(()=>{ |
| | | debugger; |
| | | this.$refs.formRef.formItems[0].disabled = true; |
| | | this.$refs.formRef.$refs.form.getInit(this.$refs.formRef.formItems) |
| | | }); |