|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="accessPageNode">
|
|
|
<div style="height: 100%;" class="accessPageNode-items">
|
|
|
- <node-btn v-for="(item,index) in nodeItems" :nodeIndex="index" :nodeItem="item" :nodeTxt="item.algorithmname" :isLine="item.isLine" :isDel="item.isDel" :key="index" @handleAdd="handleAdd" @handleDel="handleDel" @handleEdit="handleEdit" />
|
|
|
+ <node-btn v-for="(item,index) in nodeItems" :nodeIndex="index" :nodeItem="item" :nodeTxt="item.algorithmdescription" :isLine="item.isLine" :isDel="item.isDel" :key="index" @handleAdd="handleAdd" @handleDel="handleDel" @handleEdit="handleEdit" />
|
|
|
</div>
|
|
|
<PublicPageDialog class="advancedNode" :dialog-title="dialogTitle" :dialogLoading="tabLoadFlag" dialogSize="600px" :dialog-drawer="advancedDrawer" @handleClose="advancedClose" @handleSubmit="advancedTable">
|
|
|
<template v-if="!tabFlag">
|
|
@@ -44,7 +44,7 @@ export default {
|
|
|
tabLoadFlag: false,
|
|
|
nodeItems: [
|
|
|
{
|
|
|
- algorithmname: '开始',
|
|
|
+ algorithmdescription: '开始',
|
|
|
isLine: true,
|
|
|
isDel: false
|
|
|
}
|
|
@@ -133,9 +133,9 @@ export default {
|
|
|
break
|
|
|
case 'nodedata':
|
|
|
//executionorder
|
|
|
- const newItems = _.orderBy([...returnData], ['targetsource'], ['asc'])
|
|
|
+ const newItems = _.orderBy([...returnData], ['executionorder'], ['asc'])
|
|
|
this.nodeItems = [...this.nodeItems, ...newItems, {
|
|
|
- algorithmname: '结束',
|
|
|
+ algorithmdescription: '结束',
|
|
|
isLine: false,
|
|
|
isDel: false
|
|
|
}]
|
|
@@ -177,9 +177,9 @@ export default {
|
|
|
const index = obj.index
|
|
|
const len = this.nodeItems.length - 2
|
|
|
if (len == -1 || len == index) {
|
|
|
- const { targetsource } = this.nodeItems[index]
|
|
|
- if (targetsource) {
|
|
|
- const [a, b] = targetsource.split('')
|
|
|
+ const { executionorder } = this.nodeItems[index]
|
|
|
+ if (executionorder) {
|
|
|
+ const [a, b] = executionorder.split('')
|
|
|
const lowerIndex = this.lowers.indexOf(a)
|
|
|
if (lowerIndex > -1) {
|
|
|
this.nodeIndex = this.lowers[lowerIndex + 1] + 1
|
|
@@ -190,16 +190,16 @@ export default {
|
|
|
this.nodeIndex = this.lowers[index] + 1
|
|
|
}
|
|
|
} else {
|
|
|
- const { targetsource } = this.nodeItems[index]
|
|
|
+ const { executionorder } = this.nodeItems[index]
|
|
|
const nextItems = _.cloneDeep(this.nodeItems)
|
|
|
- if (targetsource) {
|
|
|
- const [a, b] = targetsource.split('')
|
|
|
+ if (executionorder) {
|
|
|
+ const [a, b] = executionorder.split('')
|
|
|
this.nodeIndex = a + (Number(b) + 1)
|
|
|
nextItems.map(item => {
|
|
|
- if (item.targetsource) {
|
|
|
- const [c, d] = item.targetsource.split('')
|
|
|
+ if (item.executionorder) {
|
|
|
+ const [c, d] = item.executionorder.split('')
|
|
|
if (c == a && Number(d) > Number(b)) {
|
|
|
- item.targetsource = c + (Number(d) + 1)
|
|
|
+ item.executionorder = c + (Number(d) + 1)
|
|
|
this.lowerItems.push(item)
|
|
|
}
|
|
|
}
|
|
@@ -228,8 +228,8 @@ export default {
|
|
|
handleDel (obj) {
|
|
|
this.type = 'del'
|
|
|
const item = _.cloneDeep(obj)
|
|
|
- const { algorithmname } = item
|
|
|
- this.$confirm(`确认要删除 ${algorithmname} 这条信息吗?`, '提示', {
|
|
|
+ const { algorithmdescription } = item
|
|
|
+ this.$confirm(`确认要删除 ${algorithmdescription} 这条信息吗?`, '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
@@ -260,9 +260,21 @@ export default {
|
|
|
data.algorithmname = sessionStorage.getItem('nodeTreeTxt') || ''
|
|
|
data.algorithmtype = this.selectCode
|
|
|
data.algorithmsourcelibraryid = this.groupId
|
|
|
- data.targetsource = this.nodeIndex
|
|
|
+ data.executionorder = this.nodeIndex
|
|
|
}
|
|
|
- this.generalDataReception(event, this.formatDataNull(data), 'algorithmlibraryid')
|
|
|
+ this.generalDataReception(event, this.formatDataNull(this.deleteObjKey(data)), 'algorithmlibraryid')
|
|
|
+ },
|
|
|
+ deleteObjKey (obj) {
|
|
|
+ const delKeys = ['algorithmtype', 'algorithmname', 'datasourceid', 'targetsource', 'datasourcename', 'preparameterset']
|
|
|
+ const nKey = _.cloneDeep(obj)
|
|
|
+ for (const key in nKey) {
|
|
|
+ if (Object.hasOwnProperty.call(nKey, key)) {
|
|
|
+ if (delKeys.includes(key)) {
|
|
|
+ delete nKey[key]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return nKey
|
|
|
},
|
|
|
//新增数据时操作table
|
|
|
async addDataColTable () {
|