Merge branch 'hi-ucs-dev' of http://192.168.124.50:3000/wuhongjian/hi-ucs into hi-ucs-dev
# Conflicts: # front/src/views/instructionManual/components/menuBook.vue
This commit is contained in:
commit
466e9b510d
|
@ -136,7 +136,15 @@ export default {
|
|||
return this.$message.error(this.$t('task.detailError'))
|
||||
}
|
||||
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>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="wrapper">
|
||||
<el-form :model="dataView">
|
||||
<el-form>
|
||||
<div v-for="(item, index) in dataView.children" :key="item">
|
||||
<!-- <div class="dataTitle">{{ item.name }}</div> -->
|
||||
<div v-for="itemson in item.children" :key="itemson.name">
|
||||
|
@ -234,8 +234,68 @@ export default {
|
|||
if (item) {
|
||||
this.dataList = item
|
||||
}
|
||||
}
|
||||
},
|
||||
insertList (val) {
|
||||
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 + ';'
|
||||
})
|
||||
})
|
||||
}
|
||||
},
|
||||
insertListFunction (val) {
|
||||
if (val) {
|
||||
if (this.dataForm.type === '应用资源') {
|
||||
this.dataView = val.filter(
|
||||
|
@ -423,69 +483,10 @@ 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 () {},
|
||||
mounted () {
|
||||
this.deptName()
|
||||
this.insertListFunction(this.insertList)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -37,8 +37,8 @@
|
|||
<h3>审批</h3>
|
||||
<div>
|
||||
<el-button type="primary" @click="showDialog('同意')">同意</el-button>
|
||||
<el-button type="danger" plain @click="showDialog('拒绝')"
|
||||
>拒绝</el-button
|
||||
<el-button type="danger" plain @click="showDialog('驳回')"
|
||||
>驳回</el-button
|
||||
>
|
||||
<!-- <el-radio-group v-model="agreeOrList" style="width: 230px">
|
||||
<el-radio-button label="同意" class="blueAll">同意</el-radio-button>
|
||||
|
@ -135,16 +135,16 @@ export default {
|
|||
this.init()
|
||||
console.log('fromList', this.$router.currentRoute.params.businessKey)
|
||||
// this.dataForm = this.$router.currentRoute.params.params.params.resourceDTO
|
||||
var callbacks = {
|
||||
startProcessSuccessCallback: this.closeCurrentTab,
|
||||
startProcessErrorCallback: this.startProcessErrorCallback,
|
||||
taskHandleSuccessCallback: this.closeCurrentTab,
|
||||
taskHandleErrorCallback: this.taskHandleErrorCallback,
|
||||
formSaveSuccessCallback: null,
|
||||
formSaveErrorCallback: null
|
||||
}
|
||||
// 初始化综合组件
|
||||
this.initProcessMultiple(callbacks)
|
||||
// var callbacks = {
|
||||
// startProcessSuccessCallback: this.closeCurrentTab,
|
||||
// startProcessErrorCallback: this.startProcessErrorCallback,
|
||||
// taskHandleSuccessCallback: this.closeCurrentTab,
|
||||
// taskHandleErrorCallback: this.taskHandleErrorCallback,
|
||||
// formSaveSuccessCallback: null,
|
||||
// formSaveErrorCallback: null
|
||||
// }
|
||||
// // 初始化综合组件
|
||||
// this.initProcessMultiple(callbacks)
|
||||
},
|
||||
mounted () {
|
||||
const businessKey = this.$router.currentRoute.params.businessKey
|
||||
|
@ -180,9 +180,10 @@ export default {
|
|||
this.input = ''
|
||||
},
|
||||
methodsThree () {
|
||||
this.$http.get('/category/getCategoryTree').then((res) => {
|
||||
this.insertList = res.data.data
|
||||
})
|
||||
// this.$http.get('/category/getCategoryTree').then((res) => {
|
||||
// this.insertList = res.data.data
|
||||
// })
|
||||
this.insertList = JSON.parse(localStorage.getItem('getCategoryTree'))
|
||||
},
|
||||
init () {
|
||||
this.visible = true
|
||||
|
@ -232,13 +233,14 @@ export default {
|
|||
})
|
||||
})
|
||||
.catch(() => {})
|
||||
} else if (this.dialogType === '拒绝') {
|
||||
} else if (this.dialogType === '驳回') {
|
||||
const params = qs.stringify({
|
||||
taskId: this.taskId,
|
||||
comment: this.input
|
||||
})
|
||||
this.$http
|
||||
.post('/act/task/endProcess?', params)
|
||||
// .post('/act/task/endProcess?', params)
|
||||
.post('/act/task/backToFirst?', params)
|
||||
.then(({ data: res }) => {
|
||||
if (res.code !== 0) {
|
||||
this.$message.error(res.msg)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<!--
|
||||
* @Author: hisense.wuhongjian
|
||||
* @Date: 2022-03-29 16:45:25
|
||||
* @LastEditors: hisense.wuhongjian
|
||||
* @LastEditTime: 2022-08-02 09:58:16
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-08-02 11:59:30
|
||||
* @Description: 告诉大家这是什么
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
|
@ -53,17 +53,13 @@
|
|||
// window.SITE_CONFIG['frontUrl'] = 'http://10.134.135.9:9796/document/#/devModelFile/';
|
||||
// window.SITE_CONFIG['apiURL'] = 'http://10.134.135.9:8888/renren-admin';
|
||||
// 开发
|
||||
// window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797';
|
||||
window.SITE_CONFIG['backUrl'] = 'http://localhost:8001';
|
||||
window.SITE_CONFIG['previewUrl'] = 'http://192.168.124.236:9796/';
|
||||
window.SITE_CONFIG['frontUrl'] = 'http://192.168.124.236:9796/document/#/devModelFile/';
|
||||
window.SITE_CONFIG['apiURL'] = 'http://192.168.124.236:8888/renren-admin';
|
||||
window.SITE_CONFIG['websocketURL'] = '192.168.124.236:8888/renren-admin';
|
||||
window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
||||
// window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797';
|
||||
// window.SITE_CONFIG['previewUrl'] = 'http://15.2.21.238:9796/';
|
||||
// window.SITE_CONFIG['frontUrl'] = 'http://15.2.21.238:9796/document/#/devModelFile/';
|
||||
// window.SITE_CONFIG['apiURL'] = 'http://15.2.21.239:8888/renren-admin';
|
||||
// window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
||||
window.SITE_CONFIG['POI_URL'] = 'http://192.168.124.236:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
||||
// 穿透版本
|
||||
// window.SITE_CONFIG['backUrl'] = 'http://124.222.94.39:9797';
|
||||
// window.SITE_CONFIG['previewUrl'] = 'http://124.222.94.39:9796/';
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 571 KiB |
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-13 10:22:27
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 14:35:45
|
||||
* @LastEditTime: 2022-08-02 11:28:00
|
||||
* @Description: 算法上架
|
||||
-->
|
||||
<template>
|
||||
|
@ -266,7 +266,13 @@
|
|||
import { useRouter } from 'vue-router'
|
||||
import { getCategoryTree } from '@/api/personalCenter'
|
||||
import { shangjiainsert, shangjiaapply } from '@/api/personalCenter'
|
||||
import { getUser, getUserInfo } from '@/api/home'
|
||||
import {
|
||||
getUser,
|
||||
getUserInfo,
|
||||
selectOne,
|
||||
updateRes,
|
||||
relaunch,
|
||||
} from '@/api/home'
|
||||
import { message } from 'ant-design-vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
const router = useRouter()
|
||||
|
@ -454,6 +460,7 @@
|
|||
!dataFrom.value.infoList.filter((val) => val.attrType === '应用领域')[0]
|
||||
.attrValue
|
||||
) {
|
||||
console.log('应用领域==========>', dataFrom.value.infoList)
|
||||
notFilled.value.push('应用领域')
|
||||
}
|
||||
if (notFilled.value.length > 0) {
|
||||
|
@ -543,6 +550,34 @@
|
|||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
(item) => item.attrValue !== ''
|
||||
)
|
||||
if (resourceId) {
|
||||
delete dataFrom.value.createDate
|
||||
delete dataFrom.value.updateDate
|
||||
dataFrom.value.infoList.map((del) => {
|
||||
delete del.createDate
|
||||
delete del.updateDate
|
||||
})
|
||||
updateRes(dataFrom.value).then((upres) => {
|
||||
if (upres.data.code == 0) {
|
||||
relaunch({ data: dataFrom.value, taskId: taskId }).then((res) => {
|
||||
console.log('驳回================>', res)
|
||||
if (res.data.code == 0) {
|
||||
message.success('重新发起流程成功!')
|
||||
submitFlag.value = true
|
||||
window.setTimeout(() => {
|
||||
window.close()
|
||||
}, 1000)
|
||||
} else {
|
||||
message.error('重新发起流程失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
message.error('数据更新失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
shangjiainsert(dataFrom.value).then((res) => {
|
||||
const instanceId = res.data.data
|
||||
dataFrom.value.id = res.data.data
|
||||
|
@ -574,6 +609,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const init = () => {
|
||||
getCategoryTree().then((res) => {
|
||||
// console.clear()
|
||||
|
@ -583,7 +619,7 @@
|
|||
navList.value = []
|
||||
navList2.value = []
|
||||
res.data.data.children.forEach((val) => {
|
||||
console.log(val)
|
||||
// console.log('val================>', val, echoData.value)
|
||||
navList.value.push({
|
||||
name: val.name,
|
||||
key: val.name,
|
||||
|
@ -601,14 +637,115 @@
|
|||
}
|
||||
})
|
||||
}
|
||||
// 回填数据
|
||||
if (resourceId) {
|
||||
val.children.map((item) => {
|
||||
if (item.children.length > 0) {
|
||||
item.children.map((child) => {
|
||||
switch (child.name) {
|
||||
case '算法名称':
|
||||
child.note1 = echoData.value.name
|
||||
break
|
||||
case '算法描述':
|
||||
child.note1 = echoData.value.description
|
||||
break
|
||||
case '共享条件':
|
||||
child.note1 = echoData.value.shareCondition
|
||||
break
|
||||
case '归属部门':
|
||||
child.note1 = echoData.value.deptId
|
||||
break
|
||||
case '部门联系人':
|
||||
child.note1 = echoData.value.deptContacts
|
||||
break
|
||||
case '部门联系人电话':
|
||||
child.note1 = echoData.value.deptPhone
|
||||
break
|
||||
case '接口请求方式':
|
||||
child.note1 = echoData.value.apiMethodType
|
||||
break
|
||||
case '应用领域':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
child.note2 = echoData.value.infoList
|
||||
.filter((fil) => fil.attrType == child.name)[0]
|
||||
.attrValue.split(';')
|
||||
}
|
||||
break
|
||||
case '算法介绍视频':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
videoList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
default:
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
}
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log('item================>', item, echoData.value)
|
||||
})
|
||||
}
|
||||
})
|
||||
data.value = res.data.data.children
|
||||
refData.value = data.value.filter(
|
||||
(item) => item.name === showView.value
|
||||
)[0]
|
||||
console.log('所有编目结构==============>', res.data.data)
|
||||
console.log('所有编目结构==============>', data.value)
|
||||
})
|
||||
}
|
||||
const resourceId = router.currentRoute.value.query.id
|
||||
const taskId = router.currentRoute.value.query.taskId
|
||||
const echoData = ref({})
|
||||
if (resourceId) {
|
||||
// 回显数据
|
||||
selectOne(resourceId).then((res) => {
|
||||
echoData.value = res.data.data
|
||||
dataFrom.value = echoData.value
|
||||
init()
|
||||
// console.log('驳回修改===================>', echoData.value)
|
||||
})
|
||||
} else {
|
||||
init()
|
||||
}
|
||||
// 特殊字段处理
|
||||
const refPutOnTheShelf = ref(null)
|
||||
const changeSfys = (type) => {
|
||||
|
@ -624,7 +761,6 @@
|
|||
refPutOnTheShelf.value.add('计费标准信息', true)
|
||||
refPutOnTheShelf.value.add('常见问题', true, type)
|
||||
}
|
||||
init()
|
||||
mybus.on('chageDataFrom', (obj) => {
|
||||
if (obj.attrType == '技术文档' && obj.attrValue != null) {
|
||||
shiyongshouce.value = obj
|
||||
|
@ -698,6 +834,8 @@
|
|||
mybus.off('chageFileList')
|
||||
mybus.off('chageImgList')
|
||||
mybus.off('chageDataFromDwon')
|
||||
mybus.off('chageVideoList')
|
||||
mybus.off('chagePackageList')
|
||||
})
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-13 10:22:27
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 14:41:26
|
||||
* @LastEditTime: 2022-08-02 11:40:41
|
||||
* @Description: 应用上架
|
||||
-->
|
||||
<template>
|
||||
|
@ -196,7 +196,13 @@
|
|||
import { useRouter } from 'vue-router'
|
||||
import { getCategoryTree } from '@/api/personalCenter'
|
||||
import { shangjiainsert, shangjiaapply } from '@/api/personalCenter'
|
||||
import { getUser, getUserInfo } from '@/api/home'
|
||||
import {
|
||||
getUser,
|
||||
getUserInfo,
|
||||
selectOne,
|
||||
updateRes,
|
||||
relaunch,
|
||||
} from '@/api/home'
|
||||
import { message } from 'ant-design-vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
const showView = ref('基本信息')
|
||||
|
@ -394,6 +400,34 @@
|
|||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
(item) => item.attrValue !== ''
|
||||
)
|
||||
if (resourceId) {
|
||||
delete dataFrom.value.createDate
|
||||
delete dataFrom.value.updateDate
|
||||
dataFrom.value.infoList.map((del) => {
|
||||
delete del.createDate
|
||||
delete del.updateDate
|
||||
})
|
||||
updateRes(dataFrom.value).then((upres) => {
|
||||
if (upres.data.code == 0) {
|
||||
relaunch({ data: dataFrom.value, taskId: taskId }).then((res) => {
|
||||
console.log('驳回================>', res)
|
||||
if (res.data.code == 0) {
|
||||
message.success('重新发起流程成功!')
|
||||
submitFlag.value = true
|
||||
window.setTimeout(() => {
|
||||
window.close()
|
||||
}, 1000)
|
||||
} else {
|
||||
message.error('重新发起流程失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
message.error('数据更新失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
shangjiainsert(dataFrom.value).then((res) => {
|
||||
const instanceId = res.data.data
|
||||
dataFrom.value.id = res.data.data
|
||||
|
@ -424,6 +458,7 @@
|
|||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
// 预览
|
||||
const preview = () => {
|
||||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
|
@ -451,6 +486,121 @@
|
|||
key: val.name,
|
||||
})
|
||||
navList2.value.push(val.name)
|
||||
// 回填数据
|
||||
if (resourceId) {
|
||||
val.children.map((item) => {
|
||||
if (item.children.length > 0) {
|
||||
item.children.map((child) => {
|
||||
switch (child.name) {
|
||||
case '应用名称':
|
||||
child.note1 = echoData.value.name
|
||||
break
|
||||
case '应用描述':
|
||||
child.note1 = echoData.value.description
|
||||
break
|
||||
case '共享条件':
|
||||
child.note1 = echoData.value.shareCondition
|
||||
break
|
||||
case '归属部门':
|
||||
child.note1 = echoData.value.deptId
|
||||
break
|
||||
case '部门联系人':
|
||||
child.note1 = echoData.value.deptContacts
|
||||
break
|
||||
case '部门联系人电话':
|
||||
child.note1 = echoData.value.deptPhone
|
||||
break
|
||||
case '接口请求方式':
|
||||
child.note1 = echoData.value.apiMethodType
|
||||
break
|
||||
case '应用领域':
|
||||
case '发布端':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
child.note2 = echoData.value.infoList
|
||||
.filter((fil) => fil.attrType == child.name)[0]
|
||||
.attrValue.split(';')
|
||||
}
|
||||
break
|
||||
case '应用展示视频':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
videoList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
case '应用图片':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
imgList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
default:
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
}
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log('item================>', item, echoData.value)
|
||||
})
|
||||
}
|
||||
})
|
||||
data.value = res.data.data.children
|
||||
refData.value = data.value.filter(
|
||||
|
@ -459,6 +609,20 @@
|
|||
console.log('所有编目结构==============>', res.data.data)
|
||||
})
|
||||
}
|
||||
const resourceId = router.currentRoute.value.query.id
|
||||
const taskId = router.currentRoute.value.query.taskId
|
||||
const echoData = ref({})
|
||||
if (resourceId) {
|
||||
// 回显数据
|
||||
selectOne(resourceId).then((res) => {
|
||||
echoData.value = res.data.data
|
||||
dataFrom.value = echoData.value
|
||||
init()
|
||||
// console.log('驳回修改===================>', echoData.value)
|
||||
})
|
||||
} else {
|
||||
init()
|
||||
}
|
||||
// 特殊字段处理
|
||||
const refPutOnTheShelf = ref(null)
|
||||
const changeGnjs = (type) => {
|
||||
|
@ -469,7 +633,6 @@
|
|||
console.log(refPutOnTheShelf)
|
||||
refPutOnTheShelf.value.add('常见问题', true, type)
|
||||
}
|
||||
init()
|
||||
mybus.on('chageDataFrom', (obj) => {
|
||||
if (obj.attrType == '技术文档' && obj.attrValue != null) {
|
||||
shiyongshouce.value = obj
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-20 09:35:51
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 14:36:31
|
||||
* @LastEditTime: 2022-08-02 11:47:32
|
||||
* @Description: 业务组件
|
||||
-->
|
||||
<template>
|
||||
|
@ -229,7 +229,13 @@
|
|||
import { useRouter } from 'vue-router'
|
||||
import { getCategoryTree } from '@/api/personalCenter'
|
||||
import { shangjiainsert, shangjiaapply } from '@/api/personalCenter'
|
||||
import { getUser, getUserInfo } from '@/api/home'
|
||||
import {
|
||||
getUser,
|
||||
getUserInfo,
|
||||
selectOne,
|
||||
updateRes,
|
||||
relaunch,
|
||||
} from '@/api/home'
|
||||
import { message } from 'ant-design-vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
const router = useRouter()
|
||||
|
@ -486,6 +492,35 @@
|
|||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
(item) => item.attrValue !== ''
|
||||
)
|
||||
|
||||
if (resourceId) {
|
||||
delete dataFrom.value.createDate
|
||||
delete dataFrom.value.updateDate
|
||||
dataFrom.value.infoList.map((del) => {
|
||||
delete del.createDate
|
||||
delete del.updateDate
|
||||
})
|
||||
updateRes(dataFrom.value).then((upres) => {
|
||||
if (upres.data.code == 0) {
|
||||
relaunch({ data: dataFrom.value, taskId: taskId }).then((res) => {
|
||||
console.log('驳回================>', res)
|
||||
if (res.data.code == 0) {
|
||||
message.success('重新发起流程成功!')
|
||||
submitFlag.value = true
|
||||
window.setTimeout(() => {
|
||||
window.close()
|
||||
}, 1000)
|
||||
} else {
|
||||
message.error('重新发起流程失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
message.error('数据更新失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
shangjiainsert(dataFrom.value).then((res) => {
|
||||
const instanceId = res.data.data
|
||||
dataFrom.value.id = res.data.data
|
||||
|
@ -517,6 +552,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// 特殊字段处理
|
||||
const refPutOnTheShelf = ref(null)
|
||||
const changeGnjs = (type) => {
|
||||
|
@ -545,6 +581,121 @@
|
|||
key: val.name,
|
||||
})
|
||||
navList2.value.push(val.name)
|
||||
|
||||
// 回填数据
|
||||
if (resourceId) {
|
||||
val.children.map((item) => {
|
||||
if (item.children.length > 0) {
|
||||
item.children.map((child) => {
|
||||
switch (child.name) {
|
||||
case '组件名称':
|
||||
child.note1 = echoData.value.name
|
||||
break
|
||||
case '组件描述':
|
||||
child.note1 = echoData.value.description
|
||||
break
|
||||
case '共享条件':
|
||||
child.note1 = echoData.value.shareCondition
|
||||
break
|
||||
case '归属部门':
|
||||
child.note1 = echoData.value.deptId
|
||||
break
|
||||
case '部门联系人':
|
||||
child.note1 = echoData.value.deptContacts
|
||||
break
|
||||
case '部门联系人电话':
|
||||
child.note1 = echoData.value.deptPhone
|
||||
break
|
||||
case '接口请求方式':
|
||||
child.note1 = echoData.value.apiMethodType
|
||||
break
|
||||
case '应用领域':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
child.note2 = echoData.value.infoList
|
||||
.filter((fil) => fil.attrType == child.name)[0]
|
||||
.attrValue.split(';')
|
||||
}
|
||||
break
|
||||
case '组件视频介绍':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
videoList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
case '组件图片':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
imgList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
default:
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
}
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log('item================>', item, echoData.value)
|
||||
})
|
||||
}
|
||||
})
|
||||
data.value = res.data.data.children
|
||||
refData.value = data.value.filter(
|
||||
|
@ -553,7 +704,21 @@
|
|||
console.log('所有编目结构==============>', res.data.data)
|
||||
})
|
||||
}
|
||||
|
||||
const resourceId = router.currentRoute.value.query.id
|
||||
const taskId = router.currentRoute.value.query.taskId
|
||||
const echoData = ref({})
|
||||
if (resourceId) {
|
||||
// 回显数据
|
||||
selectOne(resourceId).then((res) => {
|
||||
echoData.value = res.data.data
|
||||
dataFrom.value = echoData.value
|
||||
init()
|
||||
// console.log('驳回修改===================>', echoData.value)
|
||||
})
|
||||
} else {
|
||||
init()
|
||||
}
|
||||
mybus.on('chageDataFrom', (obj) => {
|
||||
if (obj.attrType == '技术文档' && obj.attrValue != null) {
|
||||
shiyongshouce.value = obj
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-20 09:35:17
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 14:37:17
|
||||
* @LastEditTime: 2022-08-02 11:51:50
|
||||
* @Description: 开发组件
|
||||
-->
|
||||
<template>
|
||||
|
@ -228,7 +228,13 @@
|
|||
import { useRouter } from 'vue-router'
|
||||
import { getCategoryTree } from '@/api/personalCenter'
|
||||
import { shangjiainsert, shangjiaapply } from '@/api/personalCenter'
|
||||
import { getUser, getUserInfo } from '@/api/home'
|
||||
import {
|
||||
getUser,
|
||||
getUserInfo,
|
||||
selectOne,
|
||||
updateRes,
|
||||
relaunch,
|
||||
} from '@/api/home'
|
||||
import { message } from 'ant-design-vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
const router = useRouter()
|
||||
|
@ -498,6 +504,34 @@
|
|||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
(item) => item.attrValue !== ''
|
||||
)
|
||||
if (resourceId) {
|
||||
delete dataFrom.value.createDate
|
||||
delete dataFrom.value.updateDate
|
||||
dataFrom.value.infoList.map((del) => {
|
||||
delete del.createDate
|
||||
delete del.updateDate
|
||||
})
|
||||
updateRes(dataFrom.value).then((upres) => {
|
||||
if (upres.data.code == 0) {
|
||||
relaunch({ data: dataFrom.value, taskId: taskId }).then((res) => {
|
||||
console.log('驳回================>', res)
|
||||
if (res.data.code == 0) {
|
||||
message.success('重新发起流程成功!')
|
||||
submitFlag.value = true
|
||||
window.setTimeout(() => {
|
||||
window.close()
|
||||
}, 1000)
|
||||
} else {
|
||||
message.error('重新发起流程失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
message.error('数据更新失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
shangjiainsert(dataFrom.value).then((res) => {
|
||||
const instanceId = res.data.data
|
||||
dataFrom.value.id = res.data.data
|
||||
|
@ -529,6 +563,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const init = () => {
|
||||
getCategoryTree().then((res) => {
|
||||
// console.clear()
|
||||
|
@ -544,6 +579,121 @@
|
|||
key: val.name,
|
||||
})
|
||||
navList2.value.push(val.name)
|
||||
|
||||
// 回填数据
|
||||
if (resourceId) {
|
||||
val.children.map((item) => {
|
||||
if (item.children.length > 0) {
|
||||
item.children.map((child) => {
|
||||
switch (child.name) {
|
||||
case '组件名称':
|
||||
child.note1 = echoData.value.name
|
||||
break
|
||||
case '组件描述':
|
||||
child.note1 = echoData.value.description
|
||||
break
|
||||
case '共享条件':
|
||||
child.note1 = echoData.value.shareCondition
|
||||
break
|
||||
case '归属部门':
|
||||
child.note1 = echoData.value.deptId
|
||||
break
|
||||
case '部门联系人':
|
||||
child.note1 = echoData.value.deptContacts
|
||||
break
|
||||
case '部门联系人电话':
|
||||
child.note1 = echoData.value.deptPhone
|
||||
break
|
||||
case '接口请求方式':
|
||||
child.note1 = echoData.value.apiMethodType
|
||||
break
|
||||
case '应用领域':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
child.note2 = echoData.value.infoList
|
||||
.filter((fil) => fil.attrType == child.name)[0]
|
||||
.attrValue.split(';')
|
||||
}
|
||||
break
|
||||
case '组件视频介绍':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
videoList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
case '组件图片':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
imgList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
default:
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
}
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log('item================>', item, echoData.value)
|
||||
})
|
||||
}
|
||||
})
|
||||
data.value = res.data.data.children
|
||||
refData.value = data.value.filter(
|
||||
|
@ -552,7 +702,20 @@
|
|||
console.log('所有编目结构==============>', res.data.data)
|
||||
})
|
||||
}
|
||||
const resourceId = router.currentRoute.value.query.id
|
||||
const taskId = router.currentRoute.value.query.taskId
|
||||
const echoData = ref({})
|
||||
if (resourceId) {
|
||||
// 回显数据
|
||||
selectOne(resourceId).then((res) => {
|
||||
echoData.value = res.data.data
|
||||
dataFrom.value = echoData.value
|
||||
init()
|
||||
// console.log('驳回修改===================>', echoData.value)
|
||||
})
|
||||
} else {
|
||||
init()
|
||||
}
|
||||
mybus.on('chageDataFrom', (obj) => {
|
||||
if (obj.attrType == '技术文档' && obj.attrValue != null) {
|
||||
shiyongshouce.value = obj
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-20 09:35:17
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 14:37:38
|
||||
* @LastEditTime: 2022-08-02 11:58:16
|
||||
* @Description: 图层服务
|
||||
-->
|
||||
<template>
|
||||
|
@ -177,7 +177,13 @@
|
|||
import { useRouter } from 'vue-router'
|
||||
import { getCategoryTree } from '@/api/personalCenter'
|
||||
import { shangjiainsert, shangjiaapply } from '@/api/personalCenter'
|
||||
import { getUser, getUserInfo } from '@/api/home'
|
||||
import {
|
||||
getUser,
|
||||
getUserInfo,
|
||||
selectOne,
|
||||
updateRes,
|
||||
relaunch,
|
||||
} from '@/api/home'
|
||||
import { message } from 'ant-design-vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
const router = useRouter()
|
||||
|
@ -395,6 +401,34 @@
|
|||
dataFrom.value.infoList = dataFrom.value.infoList.filter(
|
||||
(item) => item.attrValue !== ''
|
||||
)
|
||||
if (resourceId) {
|
||||
delete dataFrom.value.createDate
|
||||
delete dataFrom.value.updateDate
|
||||
dataFrom.value.infoList.map((del) => {
|
||||
delete del.createDate
|
||||
delete del.updateDate
|
||||
})
|
||||
updateRes(dataFrom.value).then((upres) => {
|
||||
if (upres.data.code == 0) {
|
||||
relaunch({ data: dataFrom.value, taskId: taskId }).then((res) => {
|
||||
console.log('驳回================>', res)
|
||||
if (res.data.code == 0) {
|
||||
message.success('重新发起流程成功!')
|
||||
submitFlag.value = true
|
||||
window.setTimeout(() => {
|
||||
window.close()
|
||||
}, 1000)
|
||||
} else {
|
||||
message.error('重新发起流程失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
message.error('数据更新失败!')
|
||||
submitFlag.value = true
|
||||
}
|
||||
})
|
||||
} else {
|
||||
shangjiainsert(dataFrom.value).then((res) => {
|
||||
const instanceId = res.data.data
|
||||
dataFrom.value.id = res.data.data
|
||||
|
@ -426,6 +460,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const init = () => {
|
||||
getCategoryTree().then((res) => {
|
||||
// console.clear()
|
||||
|
@ -441,6 +476,94 @@
|
|||
key: val.name,
|
||||
})
|
||||
navList2.value.push(val.name)
|
||||
|
||||
// 回填数据
|
||||
if (resourceId) {
|
||||
val.children.map((item) => {
|
||||
if (item.children.length > 0) {
|
||||
item.children.map((child) => {
|
||||
switch (child.name) {
|
||||
case '图层名称':
|
||||
child.note1 = echoData.value.name
|
||||
break
|
||||
case '图层描述':
|
||||
child.note1 = echoData.value.description
|
||||
break
|
||||
case '共享条件':
|
||||
child.note1 = echoData.value.shareCondition
|
||||
break
|
||||
case '归属部门':
|
||||
child.note1 = echoData.value.deptId
|
||||
break
|
||||
case '部门联系人':
|
||||
child.note1 = echoData.value.deptContacts
|
||||
break
|
||||
case '部门联系人电话':
|
||||
child.note1 = echoData.value.deptPhone
|
||||
break
|
||||
case '接口请求方式':
|
||||
child.note1 = echoData.value.apiMethodType
|
||||
break
|
||||
case '应用领域':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
child.note2 = echoData.value.infoList
|
||||
.filter((fil) => fil.attrType == child.name)[0]
|
||||
.attrValue.split(';')
|
||||
}
|
||||
break
|
||||
case '图层缩略图':
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
imgList.value = [
|
||||
{
|
||||
uid: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].id,
|
||||
name:
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].note3 || '--',
|
||||
status: 'done',
|
||||
url: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
thumbUrl: echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue,
|
||||
},
|
||||
]
|
||||
}
|
||||
break
|
||||
default:
|
||||
if (
|
||||
echoData.value.infoList &&
|
||||
echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0]
|
||||
) {
|
||||
child.note1 = echoData.value.infoList.filter(
|
||||
(fil) => fil.attrType == child.name
|
||||
)[0].attrValue
|
||||
}
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log('item================>', item, echoData.value)
|
||||
})
|
||||
}
|
||||
})
|
||||
data.value = res.data.data.children
|
||||
refData.value = data.value.filter(
|
||||
|
@ -449,7 +572,20 @@
|
|||
console.log('所有编目结构==============>', res.data.data)
|
||||
})
|
||||
}
|
||||
const resourceId = router.currentRoute.value.query.id
|
||||
const taskId = router.currentRoute.value.query.taskId
|
||||
const echoData = ref({})
|
||||
if (resourceId) {
|
||||
// 回显数据
|
||||
selectOne(resourceId).then((res) => {
|
||||
echoData.value = res.data.data
|
||||
dataFrom.value = echoData.value
|
||||
init()
|
||||
// console.log('驳回修改===================>', echoData.value)
|
||||
})
|
||||
} else {
|
||||
init()
|
||||
}
|
||||
mybus.on('chageDataFrom', (obj) => {
|
||||
if (obj.attrType == '技术文档' && obj.attrValue != null) {
|
||||
shiyongshouce.value = obj
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-17 14:11:08
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-07-26 16:29:25
|
||||
* @LastEditTime: 2022-08-02 11:31:43
|
||||
* @Description: 上架
|
||||
-->
|
||||
<template>
|
||||
|
@ -671,6 +671,8 @@
|
|||
console.log('默认部门=========>', item, res1.data)
|
||||
data.value.list.push(item)
|
||||
})
|
||||
} else {
|
||||
data.value.list.push(item)
|
||||
}
|
||||
})
|
||||
} else if (item.name === '部门联系人') {
|
||||
|
@ -680,6 +682,8 @@
|
|||
item.note1 = res1.data.realName || ''
|
||||
})
|
||||
data.value.list.push(item)
|
||||
} else {
|
||||
data.value.list.push(item)
|
||||
}
|
||||
} else if (item.name === '部门联系人电话') {
|
||||
if (!item.note1) {
|
||||
|
@ -688,6 +692,8 @@
|
|||
item.note1 = res1.data.mobile || ''
|
||||
})
|
||||
data.value.list.push(item)
|
||||
} else {
|
||||
data.value.list.push(item)
|
||||
}
|
||||
} else if (item.name === '来源应用') {
|
||||
queryApplicationRelByResourceId({
|
||||
|
@ -707,6 +713,7 @@
|
|||
data.value.list.push(item)
|
||||
}
|
||||
})
|
||||
console.log('props.dataFrom', data.value.list)
|
||||
})
|
||||
if (props.dataFrom) {
|
||||
// console.log(props.dataFrom, data.value.list)
|
||||
|
@ -1012,7 +1019,7 @@
|
|||
showTypeClick('调用接口')
|
||||
|
||||
watch(data.value.list, (newProps, oldProps) => {
|
||||
// console.log(newProps, oldProps)
|
||||
console.log('数据发生改变==========>', newProps, oldProps)
|
||||
newProps.forEach((val) => {
|
||||
// console.log('数据发生改变==========>', val)
|
||||
if (
|
||||
|
@ -1032,6 +1039,7 @@
|
|||
if (val.options) {
|
||||
note2 = val.options.filter((item) => item.value == val.note1)[0]
|
||||
}
|
||||
console.log('chageDataFromDwon===================>', val)
|
||||
mybus.emit('chageDataFromDwon', {
|
||||
attrType: val.name,
|
||||
attrValue: val.note1,
|
||||
|
@ -1040,6 +1048,15 @@
|
|||
})
|
||||
} else {
|
||||
if (val.name !== '应用领域' && val.name !== '发布端') {
|
||||
if (val.name == '算法介绍视频') {
|
||||
console.log('变更视频==================>', val)
|
||||
mybus.emit('chageDataFrom', {
|
||||
attrType: val.name,
|
||||
attrValue: val.note1,
|
||||
delFlag: 0,
|
||||
note3: val.note3,
|
||||
})
|
||||
} else {
|
||||
mybus.emit('chageDataFrom', {
|
||||
attrType: val.name,
|
||||
attrValue: val.note1,
|
||||
|
@ -1047,6 +1064,7 @@
|
|||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
const applicationsChange = (value) => {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-09 15:41:19
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-06-20 16:38:35
|
||||
* @LastEditTime: 2022-08-02 11:30:50
|
||||
* @Description: 上传组件
|
||||
-->
|
||||
<template>
|
||||
|
@ -89,12 +89,22 @@
|
|||
return flag || Upload.LIST_IGNORE
|
||||
}
|
||||
const handlePreview = (file) => {
|
||||
// console.log(file)
|
||||
console.log(file)
|
||||
if (file.response && file.response.data) {
|
||||
window.open(
|
||||
window.SITE_CONFIG.previewUrl +
|
||||
'hisense_office/onlinePreview?url=' +
|
||||
btoa(encodeURI(file.response.data))
|
||||
)
|
||||
} else if (file.url) {
|
||||
window.open(
|
||||
window.SITE_CONFIG.previewUrl +
|
||||
'hisense_office/onlinePreview?url=' +
|
||||
btoa(encodeURI(file.url))
|
||||
)
|
||||
} else {
|
||||
message.warning('预览失败!')
|
||||
}
|
||||
}
|
||||
const handleChange = (info) => {
|
||||
if (info.file.status !== 'uploading') {
|
||||
|
@ -104,6 +114,8 @@
|
|||
message.success(`${info.file.name}上传成功`)
|
||||
// eslint-disable-next-line vue/no-mutating-props
|
||||
props.data.note1 = info.file.response.data
|
||||
// eslint-disable-next-line vue/no-mutating-props
|
||||
props.data.note3 = info.file.name
|
||||
console.log(props.data, fileList.value)
|
||||
if (props.type === '图片') {
|
||||
if (!props.emitFlag) {
|
||||
|
@ -120,6 +132,7 @@
|
|||
} else if (props.type === '压缩包') {
|
||||
mybus.emit('chagePackageList', fileList.value)
|
||||
} else if (props.type === '视频') {
|
||||
console.log(fileList.value)
|
||||
mybus.emit('chageVideoList', fileList.value)
|
||||
}
|
||||
} else if (info.file.status === 'error') {
|
||||
|
|
|
@ -0,0 +1,171 @@
|
|||
<template>
|
||||
<div class="TheOverallProcess">
|
||||
<div class="TheOverallProcess-title">
|
||||
<div class="TheOverallProcess-title-text">总体流程</div>
|
||||
<div class="TheOverallProcess-title-line"></div>
|
||||
</div>
|
||||
<div class="TheOverallProcess-content">
|
||||
<span class="neng-li-ji-shi">能力集市</span>
|
||||
<span class="neng-li-cha-yue">能力查阅</span>
|
||||
<span class="shen-he-fa-bu-xia-jia">审核发布/下架</span>
|
||||
<span class="shen-qing">申请</span>
|
||||
<span class="neng-li-shang-jia-xia-jia">能力上架/下架</span>
|
||||
<span class="shen-he">审核</span>
|
||||
<span class="xin-xv-qui-fa-bu">新需求发布</span>
|
||||
<span class="neng-li-gong-xiang-fang">能力共享方(区市委办局)</span>
|
||||
<span class="UCS-neng-li-gong-xiang-ping-tai">UCS-能力共享平台</span>
|
||||
<span class="neng-li-shi-yong-fang">能力使用方(区市委办局)</span>
|
||||
<span class="shen-he-fa-bu">审核发布</span>
|
||||
<span class="xiang-ying-ping-lun">响应评论</span>
|
||||
<span class="shen-he-ti-gong">审核提供</span>
|
||||
<span class="xv-qui-zhong-xin">需求中心</span>
|
||||
<span class="neng-li-shen-qing-liu-cheng">能力申请流程</span>
|
||||
<span class="neng-li-xv-qiu-liu-cheng">能力需求流程</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup></script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.TheOverallProcess {
|
||||
width: 100%;
|
||||
.TheOverallProcess-title {
|
||||
margin: 57px 0 24px 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
.TheOverallProcess-title-text {
|
||||
font-size: 26px;
|
||||
line-height: 26px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.TheOverallProcess-title-line {
|
||||
width: 50px;
|
||||
height: 3px;
|
||||
background: #0058e1;
|
||||
}
|
||||
}
|
||||
.TheOverallProcess-content {
|
||||
height: 855px;
|
||||
background: url('~@/assets/menu/TheOverallProcess-bg.png');
|
||||
position: relative;
|
||||
& > span {
|
||||
position: absolute;
|
||||
}
|
||||
.neng-li-ji-shi {
|
||||
left: 50%;
|
||||
top: 155px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
margin-left: -36px;
|
||||
margin-top: -9px;
|
||||
}
|
||||
.neng-li-cha-yue {
|
||||
top: 85px;
|
||||
right: 658px;
|
||||
font-size: 16px;
|
||||
color: #ffc183;
|
||||
margin-top: -8px;
|
||||
margin-right: -32px;
|
||||
}
|
||||
.shen-he-fa-bu-xia-jia {
|
||||
top: 232px;
|
||||
left: 810px;
|
||||
font-size: 16px;
|
||||
color: #c1b3ff;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.shen-qing {
|
||||
right: 890px;
|
||||
top: 232px;
|
||||
font-size: 16px;
|
||||
margin-top: -8px;
|
||||
color: #ffc183;
|
||||
}
|
||||
.neng-li-shang-jia-xia-jia {
|
||||
top: 329px;
|
||||
left: 650px;
|
||||
font-size: 16px;
|
||||
color: #c1b3ff;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.shen-he {
|
||||
left: 693px;
|
||||
bottom: 409px;
|
||||
font-size: 16px;
|
||||
margin-top: -8px;
|
||||
color: #ffc183;
|
||||
}
|
||||
.xin-xv-qui-fa-bu {
|
||||
right: 650px;
|
||||
bottom: 487px;
|
||||
font-size: 16px;
|
||||
margin-top: -8px;
|
||||
color: #85edff;
|
||||
}
|
||||
.neng-li-gong-xiang-fang {
|
||||
left: 350px;
|
||||
top: 442px;
|
||||
font-size: 18px;
|
||||
margin-top: -9px;
|
||||
color: #fff;
|
||||
}
|
||||
.UCS-neng-li-gong-xiang-ping-tai {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
margin-top: 15px;
|
||||
margin-left: -74px;
|
||||
}
|
||||
.neng-li-shi-yong-fang {
|
||||
top: 442px;
|
||||
right: 350px;
|
||||
font-size: 18px;
|
||||
margin-top: -9px;
|
||||
color: #fff;
|
||||
}
|
||||
.shen-he-fa-bu {
|
||||
bottom: 321px;
|
||||
right: 50%;
|
||||
font-size: 16px;
|
||||
margin-bottom: -8px;
|
||||
color: #85edff;
|
||||
margin-right: -77px;
|
||||
}
|
||||
.xiang-ying-ping-lun {
|
||||
bottom: 230px;
|
||||
left: 679px;
|
||||
font-size: 16px;
|
||||
color: #85edff;
|
||||
}
|
||||
.shen-he-ti-gong {
|
||||
left: 50%;
|
||||
bottom: 47px;
|
||||
font-size: 16px;
|
||||
margin-bottom: -8px;
|
||||
color: #ffc183;
|
||||
margin-left: -32px;
|
||||
}
|
||||
.xv-qui-zhong-xin {
|
||||
font-size: 18px;
|
||||
left: 50%;
|
||||
margin-left: -36px;
|
||||
bottom: 147px;
|
||||
color: #fff;
|
||||
margin-bottom: -9px;
|
||||
}
|
||||
.neng-li-shen-qing-liu-cheng {
|
||||
color: #fff;
|
||||
left: 125px;
|
||||
top: 64px;
|
||||
}
|
||||
.neng-li-xv-qiu-liu-cheng {
|
||||
color: #fff;
|
||||
left: 125px;
|
||||
top: 102px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -21,6 +21,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 总体流程 -->
|
||||
<TheOverallProcess></TheOverallProcess>
|
||||
<!-- imgList -->
|
||||
<div class="img-box" v-for="(item, i) in imgList" :key="i">
|
||||
<div class="title">
|
||||
|
@ -58,6 +60,7 @@
|
|||
import HomeHeader from '@/views/home/components/header'
|
||||
import HomeFooter from '@/views/newHome/components/Footer'
|
||||
import { ref, onMounted } from 'vue'
|
||||
import TheOverallProcess from './TheOverallProcess.vue'
|
||||
|
||||
const seviceList = ref([
|
||||
{
|
||||
|
|
|
@ -159,9 +159,9 @@
|
|||
</div>
|
||||
<div class="button-box">
|
||||
<div class="button" @click="showDetail(item)">查看详情</div>
|
||||
<!-- <div class="button" @click="showAdd(item)" v-if="item.backToFirst">
|
||||
<div class="button" @click="showAdd(item)" v-if="item.backToFirst">
|
||||
修改
|
||||
</div> -->
|
||||
</div>
|
||||
<!-- <div
|
||||
v-if="
|
||||
!(
|
||||
|
@ -450,12 +450,21 @@
|
|||
// abilitydemandapply 需求申请
|
||||
// abilityprocess 能力申请
|
||||
if (item.processDefinitionKey == 'resourcemountapply') {
|
||||
const newpage = router.resolve({
|
||||
path: '/nenglishangjia', // 跳转的页面路由
|
||||
query: {
|
||||
const data = {
|
||||
id: item.resourceId,
|
||||
taskId: item.currentTaskList[0].taskId,
|
||||
},
|
||||
}
|
||||
if (item.dto.type == '组件服务') {
|
||||
data.abilityToType = '组件服务'
|
||||
data.componentTypeValue = item.dto.infoList.filter(
|
||||
(val) => val.attrType == '组件类型'
|
||||
)[0].attrValue
|
||||
} else if (item.dto.type == '应用资源') {
|
||||
data.abilityToType = '应用资源'
|
||||
}
|
||||
const newpage = router.resolve({
|
||||
path: '/nenglishangjia', // 跳转的页面路由
|
||||
query: data,
|
||||
})
|
||||
console.log('上架申请修改=================》', item)
|
||||
window.open(newpage.href, '_blank')
|
||||
|
|
Loading…
Reference in New Issue