mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-11-25 20:07:36 +00:00
增加属性关联node,点击后tree高亮显示
This commit is contained in:
@@ -1,16 +1,13 @@
|
||||
<template>
|
||||
<div class="property-engine">
|
||||
<div class="property-engine" @click="onPlaceInTree">
|
||||
<i class="icon iconfont" :class="getEngineTypeIcon()"></i>
|
||||
<div class="type">{{ data.engineType }}</div>
|
||||
<div class="name">{{ data.engineName }}</div>
|
||||
<div class="place" @click="onPlaceInTree">
|
||||
<i class="iconfont icon_place"></i>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType } from "vue";
|
||||
import { defineComponent, PropType, toRaw } from "vue";
|
||||
import { Bus, BusMsg } from "../bus";
|
||||
import { EngineData } from "../data";
|
||||
export default defineComponent({
|
||||
@@ -25,7 +22,7 @@ export default defineComponent({
|
||||
setup(props, context) {
|
||||
return {
|
||||
onPlaceInTree() {
|
||||
Bus.emit(BusMsg.ShowPlace, props.data);
|
||||
Bus.emit(BusMsg.ShowPlace, toRaw(props.data));
|
||||
},
|
||||
getEngineTypeIcon() {
|
||||
switch (props.data.engineType) {
|
||||
@@ -49,6 +46,7 @@ export default defineComponent({
|
||||
<style scoped lang="less">
|
||||
@my-height: 20px;
|
||||
.property-engine {
|
||||
cursor: pointer;
|
||||
height: @my-height;
|
||||
box-sizing: border-box;
|
||||
flex: 1;
|
||||
@@ -64,46 +62,37 @@ export default defineComponent({
|
||||
align-content: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
margin-right: 2px;
|
||||
color: white;
|
||||
&:hover {
|
||||
color: #414141;
|
||||
}
|
||||
&:active {
|
||||
color: black;
|
||||
}
|
||||
.icon {
|
||||
font-size: 14px;
|
||||
width: @my-height;
|
||||
margin: 0 5px;
|
||||
margin: 0 1px 0 2px;
|
||||
}
|
||||
|
||||
.type {
|
||||
text-align: left;
|
||||
flex: 1;
|
||||
color: white;
|
||||
font-size: 12px;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
height: @my-height;
|
||||
padding: 0 5px;
|
||||
background-color: rgb(48, 158, 0);
|
||||
align-items: center;
|
||||
min-width: 80px;
|
||||
max-width: 80px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.name {
|
||||
user-select: none;
|
||||
font-size: 12px;
|
||||
color: white;
|
||||
flex: 1;
|
||||
height: @my-height;
|
||||
background-color: rgb(184, 157, 5);
|
||||
background-color: #d4873d;
|
||||
display: flex;
|
||||
padding: 0 5px;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
}
|
||||
.place {
|
||||
padding: 0 5px;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
color: #6d6d6d;
|
||||
}
|
||||
&:active {
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
<template>
|
||||
<div v-if="data.isImage()" class="property-image">
|
||||
<div class="box">
|
||||
<img :src="data.data" alt="图片" class="img" />
|
||||
<img :src="data.data" alt="图片" @click="onClickImg" class="img" />
|
||||
</div>
|
||||
|
||||
<div class="url" :title="data.data">{{ data.data }}</div>
|
||||
<div class="url" :title="data.data"></div>
|
||||
<div style="flex: 1"></div>
|
||||
<i class="print iconfont icon_print" @click="onShowValueInConsole"></i>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType } from "vue";
|
||||
import { defineComponent, PropType, toRaw } from "vue";
|
||||
import { ImageData } from "../data";
|
||||
|
||||
export default defineComponent({
|
||||
@@ -24,6 +24,12 @@ export default defineComponent({
|
||||
},
|
||||
setup(props) {
|
||||
return {
|
||||
onClickImg() {
|
||||
const url = toRaw(props.data.data);
|
||||
if (url && url.startsWith("http")) {
|
||||
window.open(url);
|
||||
}
|
||||
},
|
||||
onShowValueInConsole() {
|
||||
if (Array.isArray(props.data.path)) {
|
||||
let uuid = props.data.path[0];
|
||||
@@ -47,7 +53,13 @@ export default defineComponent({
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
height: 30px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #409eff;
|
||||
border-radius: 2px;
|
||||
margin-right: 2px;
|
||||
.box {
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
@@ -55,8 +67,11 @@ export default defineComponent({
|
||||
width: 80px;
|
||||
justify-content: center;
|
||||
.img {
|
||||
cursor: pointer;
|
||||
padding: 2px 0;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
box-sizing: border-box;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user