Merge branch 'hi-ucs-dev' of http://192.168.124.50:3000/wuhongjian/hi-ucs into hi-ucs-dev
# Conflicts: # front/src/api/personalCenter.js # front/src/views/personalCenter/components/ApplyDetails.vue # front/src/views/personalCenter/components/MyApply.vue
This commit is contained in:
commit
65d35e4501
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -53,9 +53,6 @@
|
|||
let dataList = ref([])
|
||||
const getList = () => {
|
||||
selectRecommend().then((res) => {
|
||||
if (res.data.data.records.length > 9) {
|
||||
res.data.data.records.length = 9
|
||||
}
|
||||
dataList.value = res.data.data.records
|
||||
dataList.value.map((item, index) => {
|
||||
// debugger
|
||||
|
@ -98,7 +95,7 @@
|
|||
router.push({
|
||||
path: '/DetailsPageconetent',
|
||||
query: {
|
||||
select: DETAIL_PAGE_CONTENT_DEFAULT_TAB,
|
||||
select: DETAIL_PAGE_CONTENT_DEFAULT_TAB
|
||||
},
|
||||
})
|
||||
}
|
||||
|
|
|
@ -31,12 +31,7 @@
|
|||
<div class="title">审批详情</div>
|
||||
<template v-for="item in dataSource.data" :key="item">
|
||||
<div class="oddNumbers">子单号:{{ item[0] }}</div>
|
||||
<a-table
|
||||
:dataSource="item[1]"
|
||||
:columns="dataSourceColumns"
|
||||
v-if="showType === '数据资源申请'"
|
||||
></a-table>
|
||||
<a-table :dataSource="item[1]" :columns="columns" v-else>
|
||||
<a-table :dataSource="item[1]" :columns="columns">
|
||||
<template #bodyCell="{ column, text }">
|
||||
<template v-if="column.dataIndex === 'name'">
|
||||
<a>{{ text }}</a>
|
||||
|
@ -174,33 +169,8 @@
|
|||
width: '180px',
|
||||
},
|
||||
]
|
||||
const dataSourceColumns = [
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'cz',
|
||||
key: 'cz',
|
||||
width: '180px',
|
||||
},
|
||||
{
|
||||
title: '处理用户',
|
||||
dataIndex: 'czyh',
|
||||
key: 'czyh',
|
||||
width: '180px',
|
||||
},
|
||||
{
|
||||
title: '处理时间',
|
||||
dataIndex: 'clsj',
|
||||
key: 'clsj',
|
||||
width: '180px',
|
||||
},
|
||||
{
|
||||
title: '备注',
|
||||
dataIndex: 'remark',
|
||||
key: 'remark',
|
||||
width: '180px',
|
||||
},
|
||||
]
|
||||
const getInfo = () => {
|
||||
console.log(props.processInstanceId, '============================')
|
||||
if (props.processDefinitionName == '能力申请') {
|
||||
// getTaskVariables({ taskId: props.processInstanceId }).then((res) => {
|
||||
// console.log('获取数据====================>', res.data.data)
|
||||
|
@ -245,6 +215,7 @@
|
|||
shifoushizujian.value = false
|
||||
console.log(res.data.data.resourceDTO)
|
||||
res.data.data.resourceDTO.infoList.forEach((val) => {
|
||||
console.log(val, '111111111111111111111111')
|
||||
if (val.attrValue === '智能算法') {
|
||||
nameNotShow.value = true
|
||||
algorithmShow.value = false
|
||||
|
@ -252,6 +223,7 @@
|
|||
}
|
||||
})
|
||||
}
|
||||
console.log('222222222222', dataForm.data)
|
||||
})
|
||||
}
|
||||
if (props.processDefinitionName == '能力资源下架') {
|
||||
|
@ -293,6 +265,7 @@
|
|||
})
|
||||
|
||||
const getResourceURL = () => {
|
||||
console.log('111111111111111111111111111111', Cookies.get('token'))
|
||||
const params = qs.stringify({
|
||||
token: Cookies.get('token'),
|
||||
// processInstanceId: this.dataForm.processInstanceId
|
||||
|
|
|
@ -72,10 +72,7 @@
|
|||
</div>
|
||||
</a-tooltip>
|
||||
<div class="content-body-content">
|
||||
<p
|
||||
class="content-body-content-son"
|
||||
v-if="typeName !== '设备申请' && typeName !== '数据资源申请'"
|
||||
>
|
||||
<p class="content-body-content-son" v-if="typeName !== '设备申请'">
|
||||
审核结果:{{ item.ended ? '审核完成' : '审核中' }}
|
||||
</p>
|
||||
<p
|
||||
|
@ -90,11 +87,6 @@
|
|||
>
|
||||
审核结果:{{ item.STATUS }}
|
||||
</p>
|
||||
<p class="content-body-content-son" v-else>
|
||||
审核结果:{{ item.bmyijian ? '审核完成' : '审核中' }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-body-bottom">
|
||||
<div>
|
||||
申请日期:{{
|
||||
item.createDate ||
|
||||
|
@ -355,7 +347,6 @@
|
|||
|
||||
// 选择类型
|
||||
const changeType = (item, index) => {
|
||||
contentList.data = []
|
||||
console.log('item, index-----选择类型------->', item, index)
|
||||
numFlag.value = true
|
||||
num.value = []
|
||||
|
|
Loading…
Reference in New Issue