CIM+算法改为CIM+组件
This commit is contained in:
parent
13226c8976
commit
0f7fd813f2
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-08-19 14:25:45
|
* @Date: 2022-08-19 14:25:45
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.wuhongjian
|
||||||
* @LastEditTime: 2022-08-19 15:25:03
|
* @LastEditTime: 2022-08-27 15:52:54
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
@ -27,7 +27,7 @@ export function cimImgResources(params) {
|
||||||
method: 'get',
|
method: 'get',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// cim+算法
|
// CIM+组件
|
||||||
export function cimAssemblyResources() {
|
export function cimAssemblyResources() {
|
||||||
return request({
|
return request({
|
||||||
url: '/resource/cimAssemblyResources',
|
url: '/resource/cimAssemblyResources',
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="algorithm">
|
<div class="algorithm">
|
||||||
<div class="header">CIM+算法</div>
|
<div class="header">CIM+组件</div>
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div
|
<div
|
||||||
class="item"
|
class="item"
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
num: 0,
|
num: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CIM+算法',
|
name: 'CIM+组件',
|
||||||
img: require('@/assets/cimSpecialArea/algorithm.png'),
|
img: require('@/assets/cimSpecialArea/algorithm.png'),
|
||||||
num: 0,
|
num: 0,
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-09 09:29:29
|
* @Date: 2022-06-09 09:29:29
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: hisense.wuhongjian
|
||||||
* @LastEditTime: 2022-08-27 10:57:24
|
* @LastEditTime: 2022-08-27 15:43:57
|
||||||
* @Description: 应用详情
|
* @Description: 应用详情
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -19,10 +19,7 @@
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<a-tooltip v-else>
|
<a-tooltip v-else>
|
||||||
<template #title>请申请后查看</template>
|
<template #title>请申请后查看</template>
|
||||||
<p
|
<p style="cursor: pointer; filter: blur(4px)">
|
||||||
style="cursor: pointer; filter: blur(4px)"
|
|
||||||
@click="clickLink(dataFrom.link)"
|
|
||||||
>
|
|
||||||
{{ dataFrom.link }}
|
{{ dataFrom.link }}
|
||||||
</p>
|
</p>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
|
@ -89,19 +86,19 @@
|
||||||
let obj = props.dataList.approveStatus
|
let obj = props.dataList.approveStatus
|
||||||
if (obj !== '通过' && whoShow1.value.itShowQingDao) {
|
if (obj !== '通过' && whoShow1.value.itShowQingDao) {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
} 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 = ''
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
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 = ''
|
||||||
|
}
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
const clickLink = (link) => {
|
const clickLink = (link) => {
|
||||||
window.open(link)
|
window.open(link)
|
||||||
|
@ -137,20 +134,19 @@
|
||||||
(val) => {
|
(val) => {
|
||||||
if (val) {
|
if (val) {
|
||||||
let obj = props.dataList.approveStatus
|
let obj = props.dataList.approveStatus
|
||||||
if (obj !== '通过') {
|
if (obj !== '通过' && whoShow1.value.itShowQingDao) {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
} else {
|
}
|
||||||
dataFrom.value.link = props.dataList.link
|
dataFrom.value.link = props.dataList.link
|
||||||
props.dataList.infoList.map((item) => {
|
props.dataList.infoList.map((item) => {
|
||||||
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
|
if (item.attrType == '试用用户名' || item.attrType == '试用账号') {
|
||||||
dataFrom.value.number = item.attrValue
|
dataFrom.value.number = item.attrValue
|
||||||
} else if (item.attrType == '试用密码') {
|
} else if (item.attrType == '试用密码') {
|
||||||
dataFrom.value.password2 = item.attrValue
|
dataFrom.value.password2 = item.attrValue
|
||||||
}
|
|
||||||
})
|
|
||||||
if (dataFrom.value.password2 === '') {
|
|
||||||
dataFrom.value.password = ''
|
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
if (dataFrom.value.password2 === '') {
|
||||||
|
dataFrom.value.password = ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue