能力上架
This commit is contained in:
parent
5673d88047
commit
a9e500490d
|
@ -136,15 +136,7 @@ export default {
|
||||||
return this.$message.error(this.$t('task.detailError'))
|
return this.$message.error(this.$t('task.detailError'))
|
||||||
}
|
}
|
||||||
this.getProcDefRouteSet(row, this.forwardDetail)
|
this.getProcDefRouteSet(row, this.forwardDetail)
|
||||||
},
|
|
||||||
methodsThree () {
|
|
||||||
this.$http.get('/category/getCategoryTree').then((res) => {
|
|
||||||
localStorage.setItem('getCategoryTree', JSON.stringify(res.data.data))
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.methodsThree()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<el-form>
|
<el-form :model="dataView">
|
||||||
<div v-for="(item, index) in dataView.children" :key="item">
|
<div v-for="(item, index) in dataView.children" :key="item">
|
||||||
<!-- <div class="dataTitle">{{ item.name }}</div> -->
|
<!-- <div class="dataTitle">{{ item.name }}</div> -->
|
||||||
<div v-for="itemson in item.children" :key="itemson.name">
|
<div v-for="itemson in item.children" :key="itemson.name">
|
||||||
|
@ -234,68 +234,8 @@ export default {
|
||||||
if (item) {
|
if (item) {
|
||||||
this.dataList = item
|
this.dataList = item
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {},
|
|
||||||
methods: {
|
|
||||||
videoAndImg (link) {
|
|
||||||
if (link) {
|
|
||||||
window.open(link)
|
|
||||||
} else {
|
|
||||||
this.$message({
|
|
||||||
message: '未上传',
|
|
||||||
type: 'warning'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
deptName () {
|
insertList (val) {
|
||||||
console.log(this.dataForm.deptId)
|
|
||||||
this.$http
|
|
||||||
.get(`/sys/dept/${this.dataForm.deptId}`)
|
|
||||||
.then(({ data: res }) => {
|
|
||||||
console.log(res.data.name, 'res')
|
|
||||||
this.unit = res.data.name
|
|
||||||
})
|
|
||||||
},
|
|
||||||
queryPartAppByKeyIdFunction (index, indexSon, indexSonSon) {
|
|
||||||
if (this.dataForm.type === '组件服务') {
|
|
||||||
this.$http
|
|
||||||
.get(
|
|
||||||
'/dataResourceRel/queryApp4PartByKeyId' +
|
|
||||||
'?keyId=' +
|
|
||||||
this.dataForm.id
|
|
||||||
)
|
|
||||||
.then(({ data: res }) => {
|
|
||||||
this.dataView.children[index].children[indexSon].children[
|
|
||||||
indexSonSon
|
|
||||||
].note1 = ''
|
|
||||||
res.data.map((item) => {
|
|
||||||
this.dataView.children[index].children[indexSon].children[
|
|
||||||
indexSonSon
|
|
||||||
].note1 += item.name + ';'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.$http
|
|
||||||
.get(
|
|
||||||
'/dataResourceRel/queryPart4AppByKeyId?keyId=' +
|
|
||||||
this.dataForm.id +
|
|
||||||
'&type=' +
|
|
||||||
'组件服务'
|
|
||||||
)
|
|
||||||
.then(({ data: res }) => {
|
|
||||||
this.dataView.children[index].children[indexSon].children[
|
|
||||||
indexSonSon
|
|
||||||
].note1 = ''
|
|
||||||
res.data.map((item) => {
|
|
||||||
this.dataView.children[index].children[indexSon].children[
|
|
||||||
indexSonSon
|
|
||||||
].note1 += item.name + ';'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
insertListFunction (val) {
|
|
||||||
if (val) {
|
if (val) {
|
||||||
if (this.dataForm.type === '应用资源') {
|
if (this.dataForm.type === '应用资源') {
|
||||||
this.dataView = val.filter(
|
this.dataView = val.filter(
|
||||||
|
@ -483,10 +423,69 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {
|
||||||
|
videoAndImg (link) {
|
||||||
|
if (link) {
|
||||||
|
window.open(link)
|
||||||
|
} else {
|
||||||
|
this.$message({
|
||||||
|
message: '未上传',
|
||||||
|
type: 'warning'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deptName () {
|
||||||
|
console.log(this.dataForm.deptId)
|
||||||
|
this.$http
|
||||||
|
.get(`/sys/dept/${this.dataForm.deptId}`)
|
||||||
|
.then(({ data: res }) => {
|
||||||
|
console.log(res.data.name, 'res')
|
||||||
|
this.unit = res.data.name
|
||||||
|
})
|
||||||
|
},
|
||||||
|
queryPartAppByKeyIdFunction (index, indexSon, indexSonSon) {
|
||||||
|
if (this.dataForm.type === '组件服务') {
|
||||||
|
this.$http
|
||||||
|
.get(
|
||||||
|
'/dataResourceRel/queryApp4PartByKeyId' +
|
||||||
|
'?keyId=' +
|
||||||
|
this.dataForm.id
|
||||||
|
)
|
||||||
|
.then(({ data: res }) => {
|
||||||
|
this.dataView.children[index].children[indexSon].children[
|
||||||
|
indexSonSon
|
||||||
|
].note1 = ''
|
||||||
|
res.data.map((item) => {
|
||||||
|
this.dataView.children[index].children[indexSon].children[
|
||||||
|
indexSonSon
|
||||||
|
].note1 += item.name + ';'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.$http
|
||||||
|
.get(
|
||||||
|
'/dataResourceRel/queryPart4AppByKeyId?keyId=' +
|
||||||
|
this.dataForm.id +
|
||||||
|
'&type=' +
|
||||||
|
'组件服务'
|
||||||
|
)
|
||||||
|
.then(({ data: res }) => {
|
||||||
|
this.dataView.children[index].children[indexSon].children[
|
||||||
|
indexSonSon
|
||||||
|
].note1 = ''
|
||||||
|
res.data.map((item) => {
|
||||||
|
this.dataView.children[index].children[indexSon].children[
|
||||||
|
indexSonSon
|
||||||
|
].note1 += item.name + ';'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
created () {},
|
created () {},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.deptName()
|
this.deptName()
|
||||||
this.insertListFunction(this.insertList)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -135,16 +135,16 @@ export default {
|
||||||
this.init()
|
this.init()
|
||||||
console.log('fromList', this.$router.currentRoute.params.businessKey)
|
console.log('fromList', this.$router.currentRoute.params.businessKey)
|
||||||
// this.dataForm = this.$router.currentRoute.params.params.params.resourceDTO
|
// this.dataForm = this.$router.currentRoute.params.params.params.resourceDTO
|
||||||
// var callbacks = {
|
var callbacks = {
|
||||||
// startProcessSuccessCallback: this.closeCurrentTab,
|
startProcessSuccessCallback: this.closeCurrentTab,
|
||||||
// startProcessErrorCallback: this.startProcessErrorCallback,
|
startProcessErrorCallback: this.startProcessErrorCallback,
|
||||||
// taskHandleSuccessCallback: this.closeCurrentTab,
|
taskHandleSuccessCallback: this.closeCurrentTab,
|
||||||
// taskHandleErrorCallback: this.taskHandleErrorCallback,
|
taskHandleErrorCallback: this.taskHandleErrorCallback,
|
||||||
// formSaveSuccessCallback: null,
|
formSaveSuccessCallback: null,
|
||||||
// formSaveErrorCallback: null
|
formSaveErrorCallback: null
|
||||||
// }
|
}
|
||||||
// // 初始化综合组件
|
// 初始化综合组件
|
||||||
// this.initProcessMultiple(callbacks)
|
this.initProcessMultiple(callbacks)
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
const businessKey = this.$router.currentRoute.params.businessKey
|
const businessKey = this.$router.currentRoute.params.businessKey
|
||||||
|
@ -180,10 +180,9 @@ export default {
|
||||||
this.input = ''
|
this.input = ''
|
||||||
},
|
},
|
||||||
methodsThree () {
|
methodsThree () {
|
||||||
// this.$http.get('/category/getCategoryTree').then((res) => {
|
this.$http.get('/category/getCategoryTree').then((res) => {
|
||||||
// this.insertList = res.data.data
|
this.insertList = res.data.data
|
||||||
// })
|
})
|
||||||
this.insertList = JSON.parse(localStorage.getItem('getCategoryTree'))
|
|
||||||
},
|
},
|
||||||
init () {
|
init () {
|
||||||
this.visible = true
|
this.visible = true
|
||||||
|
|
Loading…
Reference in New Issue