|
@@ -61,7 +61,8 @@ export default {
|
|
|
tasData: [],
|
|
|
type: 'add',
|
|
|
nodeIndex: '',
|
|
|
- lowers: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
|
|
|
+ lowers: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'],
|
|
|
+ lowerItems: []
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -169,16 +170,39 @@ export default {
|
|
|
},
|
|
|
//步骤新增
|
|
|
handleAdd (obj) {
|
|
|
+ this.nodeIndex = ''
|
|
|
+ this.lowerItems = []
|
|
|
if (Object.keys(this.msgContent).length) {
|
|
|
const index = obj.index
|
|
|
const len = this.nodeItems.length - 2
|
|
|
if (len == -1 || len == index) {
|
|
|
- this.nodeIndex = this.lowers[index] + 1
|
|
|
+ const { targetsource } = this.nodeItems[index]
|
|
|
+ if (targetsource) {
|
|
|
+ const [a, b] = targetsource.split('')
|
|
|
+ const lowerIndex = this.lowers.indexOf(a)
|
|
|
+ if (lowerIndex > -1) {
|
|
|
+ this.nodeIndex = this.lowers[lowerIndex + 1] + 1
|
|
|
+ } else {
|
|
|
+ this.nodeIndex = this.lowers[index] + 1
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.nodeIndex = this.lowers[index] + 1
|
|
|
+ }
|
|
|
} else {
|
|
|
const { targetsource } = this.nodeItems[index]
|
|
|
+ const nextItems = _.cloneDeep(this.nodeItems)
|
|
|
if (!targetsource) return
|
|
|
const [a, b] = targetsource.split('')
|
|
|
this.nodeIndex = a + (Number(b) + 1)
|
|
|
+ nextItems.map(item => {
|
|
|
+ if (item.targetsource) {
|
|
|
+ const [c, d] = item.targetsource.split('')
|
|
|
+ if (c == a && Number(d) > Number(b)) {
|
|
|
+ item.targetsource = c + (Number(d) + 1)
|
|
|
+ this.lowerItems.push(item)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
this.type = 'add'
|
|
|
this.advancedDrawer = true
|
|
@@ -262,6 +286,18 @@ export default {
|
|
|
)
|
|
|
return res
|
|
|
},
|
|
|
+ //新增时编辑数据
|
|
|
+ addAndEditData () {
|
|
|
+ const items = []
|
|
|
+ if (this.lowerItems.length) {
|
|
|
+ this.lowerItems.forEach(item => {
|
|
|
+ const itemData = formatChange(this.formatDataNull(item), 2, 'algorithmlibraryid')
|
|
|
+ const nitem = itemData[0] || {}
|
|
|
+ items.push(nitem)
|
|
|
+ })
|
|
|
+ this.tableColumnData(2, items, 'algorithmlibraryid')
|
|
|
+ }
|
|
|
+ },
|
|
|
//状态清除
|
|
|
clearState () {
|
|
|
this.advancedDrawer = false
|
|
@@ -281,8 +317,8 @@ export default {
|
|
|
}
|
|
|
return obj
|
|
|
},
|
|
|
- async tableColumnData (event = 2, key = 'algorithmparametersid') {
|
|
|
- const res = this.$refs['nodeTable'].tableData
|
|
|
+ async tableColumnData (event = 2, msgs = [], key = 'algorithmparametersid') {
|
|
|
+ const res = msgs.length == 0 ? this.$refs['nodeTable'].tableData : msgs
|
|
|
if (!res.length) return
|
|
|
// this.tabLoadFlag = true
|
|
|
const items = _.cloneDeep(res)
|
|
@@ -300,8 +336,8 @@ export default {
|
|
|
datas.push(nitem)
|
|
|
})
|
|
|
const params = {
|
|
|
- serviceid: this.pageTableId,
|
|
|
- datacontent: datas,
|
|
|
+ serviceid: msgs.length == 0 ? this.pageTableId : this.pageServiceId,
|
|
|
+ datacontent: msgs.length == 0 ? datas : msgs,
|
|
|
event: `${event}`
|
|
|
}
|
|
|
const { code } =
|
|
@@ -333,6 +369,7 @@ export default {
|
|
|
: await moveData(params);
|
|
|
if (code == 0) {
|
|
|
if (this.type == 'add') {
|
|
|
+ this.addAndEditData()
|
|
|
this.addDataColTable()
|
|
|
} else {
|
|
|
this.$message.success("操作成功")
|