fix: 修改设备卡片名称
This commit is contained in:
parent
f381453bce
commit
3f8aba0a8c
|
@ -231,6 +231,13 @@ const handleClick = () => {
|
|||
|
||||
:deep(.card-item-content-title) {
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: @primary-color;
|
||||
width: calc(100% - 100px);
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
:deep(.card-item-heard-name) {
|
||||
|
|
|
@ -150,6 +150,10 @@ export default [
|
|||
path: '/northbound/DuerOS',
|
||||
component: () => import('@/views/northbound/DuerOS/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/northbound/DuerOS/detail/:id',
|
||||
component: () => import('@/views/northbound/DuerOS/Save/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/northbound/AliCloud',
|
||||
component: () => import('@/views/northbound/AliCloud/index.vue')
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<template>
|
||||
<Search :columns="columns" target="device-instance" />
|
||||
<JTable
|
||||
ref="instanceRef"
|
||||
:columns="columns"
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
123
|
||||
</template>
|
|
@ -148,7 +148,7 @@ const getActions = (data: Partial<Record<string, any>>): ActionsType[] => {
|
|||
}
|
||||
|
||||
const add = () => {
|
||||
message.warn('123')
|
||||
// router.push(`/northbound/DuerOS/detail/:id`)
|
||||
}
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue