Compare commits

..

No commits in common. "77d94c2d097fcd64c850c63117c4747388a1cb1f" and "27423a3c14dfda63487a51321441e6bbc25c31d1" have entirely different histories.

4 changed files with 33 additions and 29 deletions

View File

@ -1,8 +1,8 @@
/*
* @Author: hisense.liangjunhua
* @Date: 2022-08-19 14:25:45
* @LastEditors: hisense.wuhongjian
* @LastEditTime: 2022-08-27 15:52:54
* @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-08-19 15:25:03
* @Description: 告诉大家这是什么
*/
import request from '@/utils/request'
@ -27,7 +27,7 @@ export function cimImgResources(params) {
method: 'get',
})
}
// CIM+
// cim+
export function cimAssemblyResources() {
return request({
url: '/resource/cimAssemblyResources',

View File

@ -7,7 +7,7 @@
-->
<template>
<div class="algorithm">
<div class="header">CIM+组件</div>
<div class="header">CIM+算法</div>
<div class="main">
<div
class="item"

View File

@ -27,7 +27,7 @@
num: 0,
},
{
name: 'CIM+组件',
name: 'CIM+算法',
img: require('@/assets/cimSpecialArea/algorithm.png'),
num: 0,
},

View File

@ -2,7 +2,7 @@
* @Author: hisense.liangjunhua
* @Date: 2022-06-09 09:29:29
* @LastEditors: hisense.wuhongjian
* @LastEditTime: 2022-08-27 15:43:57
* @LastEditTime: 2022-08-27 10:57:24
* @Description: 应用详情
-->
<template>
@ -19,7 +19,10 @@
</a-tooltip>
<a-tooltip v-else>
<template #title>请申请后查看</template>
<p style="cursor: pointer; filter: blur(4px)">
<p
style="cursor: pointer; filter: blur(4px)"
@click="clickLink(dataFrom.link)"
>
{{ dataFrom.link }}
</p>
</a-tooltip>
@ -86,19 +89,19 @@
let obj = props.dataList.approveStatus
if (obj !== '通过' && whoShow1.value.itShowQingDao) {
flag.value = false
}
dataFrom.value.link = props.dataList.link
props.dataList.infoList.map((item) => {
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
dataFrom.value.number = item.attrValue
} else if (item.attrType == '试用密码') {
dataFrom.value.password2 = item.attrValue
} else {
dataFrom.value.link = props.dataList.link
props.dataList.infoList.map((item) => {
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
dataFrom.value.number = item.attrValue
} else if (item.attrType == '试用密码') {
dataFrom.value.password2 = item.attrValue
}
})
if (dataFrom.value.password2 === '') {
dataFrom.value.password = ''
}
})
if (dataFrom.value.password2 === '') {
dataFrom.value.password = ''
}
// }
}
const clickLink = (link) => {
window.open(link)
@ -134,19 +137,20 @@
(val) => {
if (val) {
let obj = props.dataList.approveStatus
if (obj !== '通过' && whoShow1.value.itShowQingDao) {
if (obj !== '通过') {
flag.value = false
}
dataFrom.value.link = props.dataList.link
props.dataList.infoList.map((item) => {
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
dataFrom.value.number = item.attrValue
} else if (item.attrType == '试用密码') {
dataFrom.value.password2 = item.attrValue
} else {
dataFrom.value.link = props.dataList.link
props.dataList.infoList.map((item) => {
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
dataFrom.value.number = item.attrValue
} else if (item.attrType == '试用密码') {
dataFrom.value.password2 = item.attrValue
}
})
if (dataFrom.value.password2 === '') {
dataFrom.value.password = ''
}
})
if (dataFrom.value.password2 === '') {
dataFrom.value.password = ''
}
}
}