2019-03-15 10:08:39 +08:00
|
|
|
<template>
|
2021-04-04 15:42:16 +08:00
|
|
|
<div id="ui-prop">
|
2024-01-09 12:02:47 +08:00
|
|
|
<div
|
|
|
|
class="normal-data"
|
|
|
|
style="
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 30px;
|
|
|
|
margin: 0;
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
@mousedown="onPropNameMouseDown"
|
|
|
|
class="key"
|
|
|
|
@click="onClickFold"
|
|
|
|
:style="{ cursor: isArrayOrObject() ? 'pointer' : '' }"
|
2021-06-17 22:35:37 +08:00
|
|
|
>
|
2024-01-09 12:02:47 +08:00
|
|
|
<i
|
|
|
|
class="data-arrow"
|
|
|
|
v-if="arrow"
|
|
|
|
:class="fold ? 'el-icon-caret-right' : 'el-icon-caret-bottom'"
|
|
|
|
:style="{
|
|
|
|
visibility: isArrayOrObject() ? 'visible' : 'hidden',
|
|
|
|
'margin-left': indent * 10 + 'px',
|
|
|
|
}"
|
|
|
|
>
|
2021-06-17 21:37:09 +08:00
|
|
|
</i>
|
2021-11-06 20:43:45 +08:00
|
|
|
<div class="text" ref="propText">
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-popover
|
|
|
|
placement="top"
|
|
|
|
trigger="hover"
|
|
|
|
:disabled="!isShowTooltip()"
|
|
|
|
>
|
2021-10-30 16:08:29 +08:00
|
|
|
<div>{{ name }}</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<span>{{ name }}</span>
|
2021-10-30 16:08:29 +08:00
|
|
|
</el-popover>
|
|
|
|
</div>
|
2021-04-04 15:42:16 +08:00
|
|
|
</div>
|
2021-06-15 22:19:47 +08:00
|
|
|
<div class="value">
|
2021-11-06 21:42:37 +08:00
|
|
|
<div v-if="isInvalid()" class="invalid">
|
2021-11-07 00:09:02 +08:00
|
|
|
{{ value.data }}
|
2021-11-06 21:42:37 +08:00
|
|
|
</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-input
|
|
|
|
v-if="isString()"
|
|
|
|
v-model="value.data"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
@change="onChangeValue"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-input>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-input
|
|
|
|
v-if="isText()"
|
|
|
|
type="textarea"
|
|
|
|
:autosize="{ minRows: 3, maxRows: 5 }"
|
|
|
|
placeholder="请输入内容"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
@change="onChangeValue"
|
|
|
|
v-model="value.data"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-input>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-input-number
|
|
|
|
v-if="isNumber()"
|
|
|
|
style="width: 100%; text-align: left"
|
|
|
|
v-model="value.data"
|
|
|
|
:step="step"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
@change="onChangeValue"
|
|
|
|
controls-position="right"
|
2021-06-15 22:19:47 +08:00
|
|
|
></el-input-number>
|
|
|
|
|
2024-01-09 12:02:47 +08:00
|
|
|
<div v-if="isVec2() || isVec3()" class="vec">
|
|
|
|
<ui-prop
|
|
|
|
v-for="(vec, index) in value.data"
|
|
|
|
:key="index"
|
|
|
|
:arrow="false"
|
|
|
|
:value="vec.value"
|
|
|
|
:name="vec.name"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</ui-prop>
|
|
|
|
</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-select
|
|
|
|
v-model="value.data"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
v-if="isEnum()"
|
|
|
|
style="width: 100%"
|
|
|
|
@change="onChangeValue"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="(opt, index) in value.values"
|
|
|
|
:key="index"
|
|
|
|
:label="opt.name"
|
|
|
|
:value="opt.value"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-checkbox
|
|
|
|
v-model="value.data"
|
|
|
|
v-if="isBool()"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
@change="onChangeValue"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-checkbox>
|
|
|
|
<div class="color" v-if="isColor()">
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-color-picker
|
|
|
|
style="position: absolute"
|
|
|
|
:disabled="value.readonly"
|
|
|
|
v-model="value.data"
|
|
|
|
@change="onChangeValue"
|
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-color-picker>
|
2024-01-09 12:02:47 +08:00
|
|
|
<div class="hex" :style="{ color: colorReverse(value.data) }">
|
|
|
|
{{ value.data }}
|
|
|
|
</div>
|
2021-04-06 18:41:54 +08:00
|
|
|
</div>
|
2021-06-15 22:19:47 +08:00
|
|
|
<!-- <div v-if="isArrayOrObject()" class="array-object">-->
|
|
|
|
<!-- <div class="text">-->
|
|
|
|
<!-- </div>-->
|
|
|
|
<!-- <el-button @click="onShowValueInConsole">log</el-button>-->
|
|
|
|
<!-- </div>-->
|
|
|
|
<div v-if="isImage()" class="image-property">
|
|
|
|
<el-popover v-if="isImage()" placement="top" trigger="hover">
|
|
|
|
<div
|
2024-01-09 12:02:47 +08:00
|
|
|
style="
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
:src="value.data"
|
|
|
|
alt="图片"
|
|
|
|
style="max-width: 100px; max-height: 100px; object-fit: contain"
|
|
|
|
/>
|
2021-06-15 22:19:47 +08:00
|
|
|
</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<img :src="value.data" style="height: 36px" alt="图片" />
|
2021-06-15 22:19:47 +08:00
|
|
|
</el-popover>
|
2024-01-09 12:02:47 +08:00
|
|
|
<div style="flex: 1; display: flex; flex-direction: row-reverse">
|
2021-06-15 22:19:47 +08:00
|
|
|
<el-button @click="onShowValueInConsole">log</el-button>
|
2021-06-15 20:51:19 +08:00
|
|
|
</div>
|
2021-06-15 22:19:47 +08:00
|
|
|
</div>
|
2021-06-19 19:51:05 +08:00
|
|
|
<div v-if="isEngine()" class="engine">
|
|
|
|
<div class="head">
|
|
|
|
<i class="icon" :class="getEngineTypeIcon()"></i>
|
|
|
|
<div class="type">{{ value.engineType }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="name">{{ value.engineName }}</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<el-button
|
|
|
|
@click="onPlaceInTree"
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-place"
|
|
|
|
></el-button>
|
2021-06-19 19:51:05 +08:00
|
|
|
</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<div v-if="isObject() && fold" class="objectDesc">
|
2021-11-06 20:19:21 +08:00
|
|
|
{{ value.data }}
|
|
|
|
</div>
|
2024-01-09 12:02:47 +08:00
|
|
|
<div v-if="isArray()" class="array">Array({{ value.data.length }})</div>
|
2021-11-06 21:14:38 +08:00
|
|
|
<div class="slot" v-if="false">
|
2021-06-15 22:19:47 +08:00
|
|
|
<slot></slot>
|
2021-06-14 19:41:58 +08:00
|
|
|
</div>
|
2021-04-06 18:41:54 +08:00
|
|
|
</div>
|
2021-06-15 22:19:47 +08:00
|
|
|
</div>
|
2021-06-17 22:35:37 +08:00
|
|
|
<div v-if="isArrayOrObject()">
|
2024-01-09 12:02:47 +08:00
|
|
|
<div
|
|
|
|
v-show="!fold && subData"
|
|
|
|
style="display: flex; flex-direction: column"
|
|
|
|
>
|
|
|
|
<ui-prop
|
|
|
|
v-for="(arr, index) in subData"
|
|
|
|
:key="index"
|
|
|
|
:indent="indent + 1"
|
|
|
|
:value="arr.value"
|
|
|
|
:name="getName(isArray(), arr)"
|
2021-06-17 22:35:37 +08:00
|
|
|
>
|
2021-06-15 22:19:47 +08:00
|
|
|
</ui-prop>
|
2019-03-15 10:08:39 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2021-04-02 22:34:09 +08:00
|
|
|
<script lang="ts">
|
2024-01-09 12:02:47 +08:00
|
|
|
import {
|
|
|
|
defineComponent,
|
|
|
|
ref,
|
|
|
|
toRaw,
|
|
|
|
watch,
|
|
|
|
onUnmounted,
|
|
|
|
onMounted,
|
|
|
|
PropType,
|
|
|
|
} from "vue";
|
|
|
|
import { DataType, EngineData, EnumData, Info, Property } from "../data";
|
|
|
|
import { connectBackground } from "../connectBackground";
|
|
|
|
import { Msg } from "../../../core/types";
|
|
|
|
import Bus, { BusMsg } from "../bus";
|
|
|
|
|
|
|
|
export default defineComponent({
|
2021-11-13 12:02:29 +08:00
|
|
|
name: "UiProp",
|
2024-01-09 12:02:47 +08:00
|
|
|
props: {
|
|
|
|
name: {
|
|
|
|
type: String,
|
|
|
|
default: "",
|
|
|
|
},
|
|
|
|
indent: {
|
|
|
|
type: Number,
|
|
|
|
default: 0,
|
|
|
|
},
|
|
|
|
arrow: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
type: Object as PropType<Info | EngineData | EnumData>,
|
|
|
|
default: () => {},
|
|
|
|
},
|
|
|
|
step: {
|
|
|
|
type: Number,
|
|
|
|
default: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
setup(props, ctx) {
|
|
|
|
let clientX: number = 0;
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
watchValue();
|
|
|
|
});
|
|
|
|
function watchValue() {
|
|
|
|
this.fold = true;
|
|
|
|
if (this.isArray()) {
|
|
|
|
this.subData = this.value.data;
|
|
|
|
} else {
|
|
|
|
this.subData = null;
|
2021-06-19 19:51:05 +08:00
|
|
|
}
|
2021-04-06 18:41:54 +08:00
|
|
|
}
|
2024-01-09 12:02:47 +08:00
|
|
|
const fold = ref(true);
|
|
|
|
watch(props.value, () => {
|
|
|
|
watchValue();
|
|
|
|
});
|
|
|
|
const subData = ref<Property[]>([]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
fold,
|
|
|
|
subData,
|
|
|
|
isInvalid() {
|
|
|
|
return this.value && this.value.type === DataType.Invalid;
|
|
|
|
},
|
|
|
|
isString() {
|
|
|
|
return this.value && this.value.type === DataType.String;
|
|
|
|
},
|
|
|
|
isText() {
|
|
|
|
return this.value && this.value.type === DataType.Text;
|
|
|
|
},
|
|
|
|
isNumber() {
|
|
|
|
return this.value && this.value.type === DataType.Number;
|
|
|
|
},
|
|
|
|
isVec2() {
|
|
|
|
return this.value && this.value.type === DataType.Vec2;
|
|
|
|
},
|
|
|
|
isVec3() {
|
|
|
|
return this.value && this.value.type === DataType.Vec3;
|
|
|
|
},
|
|
|
|
isEnum() {
|
|
|
|
return this.value && this.value.type === DataType.Enum;
|
|
|
|
},
|
|
|
|
isBool() {
|
|
|
|
return this.value && this.value.type === DataType.Bool;
|
|
|
|
},
|
|
|
|
isColor() {
|
|
|
|
return this.value && this.value.type === DataType.Color;
|
|
|
|
},
|
|
|
|
isArrayOrObject() {
|
|
|
|
return (
|
|
|
|
this.value &&
|
|
|
|
(this.value.type === DataType.Array ||
|
|
|
|
this.value.type === DataType.Object)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
isObject() {
|
|
|
|
return this.value && this.value.type === DataType.Object;
|
|
|
|
},
|
|
|
|
isArray() {
|
|
|
|
return this.value && this.value.type === DataType.Array;
|
|
|
|
},
|
|
|
|
isImage() {
|
|
|
|
return this.value && this.value.type === DataType.Image;
|
|
|
|
},
|
|
|
|
isImageValid() {
|
|
|
|
return !!this.value.data;
|
|
|
|
},
|
|
|
|
isEngine() {
|
|
|
|
return this.value && this.value.type === DataType.Engine;
|
|
|
|
},
|
|
|
|
onPlaceInTree() {
|
|
|
|
Bus.emit(BusMsg.ShowPlace, this.value);
|
|
|
|
},
|
|
|
|
isShowTooltip() {
|
|
|
|
const el: HTMLDivElement = this.$refs.propText as HTMLDivElement;
|
|
|
|
if (el) {
|
|
|
|
if (el.scrollWidth > el.offsetWidth) {
|
|
|
|
// 出现了省略号
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
getEngineTypeIcon() {
|
|
|
|
const value = this.value as EngineData;
|
|
|
|
switch (value.engineType) {
|
|
|
|
case "cc_Sprite": {
|
|
|
|
return "el-icon-picture-outline";
|
|
|
|
}
|
|
|
|
case "cc_Label": {
|
|
|
|
return "el-icon-third-text";
|
|
|
|
}
|
|
|
|
case "cc_Node": {
|
|
|
|
return "el-icon-third-node";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "el-icon-third-unknow";
|
|
|
|
},
|
|
|
|
getName(isArray: boolean, arr: Property) {
|
|
|
|
const type = arr.value.type;
|
|
|
|
if (isArray) {
|
|
|
|
return `[${arr.name}]`;
|
|
|
|
} else {
|
|
|
|
return arr.name;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onClickFold() {
|
|
|
|
if (this.isObject() && this.fold && !this.subData) {
|
|
|
|
// 请求object的item数据
|
|
|
|
Bus.emit(BusMsg.RequestObjectData, this.value, (info: Property[]) => {
|
|
|
|
this.fold = false;
|
|
|
|
this.subData = info;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.fold = !this.fold;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onShowValueInConsole() {
|
|
|
|
if (Array.isArray(this.value.path)) {
|
|
|
|
let uuid = this.value.path[0];
|
|
|
|
let key = this.value.path[1]; // todo 暂时只支持一级key
|
|
|
|
if (uuid && key) {
|
|
|
|
chrome.devtools.inspectedWindow.eval(
|
|
|
|
`window.CCInspector.logValue('${uuid}','${key}')`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onChangeValue() {
|
|
|
|
if (!this.value.readonly) {
|
|
|
|
connectBackground.postMessageToBackground(
|
|
|
|
Msg.SetProperty,
|
|
|
|
this.value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onPropNameMouseDown(event: MouseEvent) {
|
|
|
|
document.addEventListener("mousemove", this._onMouseMove);
|
|
|
|
document.addEventListener("mouseup", this._onMouseUp);
|
|
|
|
document.addEventListener("onselectstart", this._onSelect);
|
|
|
|
},
|
|
|
|
|
|
|
|
colorReverse(OldColorValue: string) {
|
|
|
|
OldColorValue = "0x" + OldColorValue.replace(/#/g, "");
|
|
|
|
var str = "000000" + (0xffffff - parseInt(OldColorValue)).toString(16);
|
|
|
|
return "#" + str.substring(str.length - 6, str.length);
|
|
|
|
},
|
|
|
|
_onMouseMove(event: MouseEvent) {
|
|
|
|
let x = event.clientX;
|
|
|
|
let calcStep = this.step || 0;
|
|
|
|
if (x > this.clientX) {
|
|
|
|
calcStep = Math.abs(calcStep);
|
|
|
|
} else {
|
|
|
|
calcStep = -Math.abs(calcStep);
|
|
|
|
}
|
|
|
|
this.$emit("movestep", calcStep);
|
|
|
|
this.clientX = x;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMouseUp(event: MouseEvent) {
|
|
|
|
document.removeEventListener("mousemove", this._onMouseMove);
|
|
|
|
document.removeEventListener("mouseup", this._onMouseUp);
|
|
|
|
document.removeEventListener("onselectstart", this._onSelect);
|
|
|
|
},
|
|
|
|
_onSelect() {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
2019-03-15 10:08:39 +08:00
|
|
|
</script>
|
|
|
|
|
2021-04-04 15:42:16 +08:00
|
|
|
<style scoped lang="less">
|
|
|
|
#ui-prop {
|
|
|
|
min-height: 30px;
|
2021-06-17 22:35:37 +08:00
|
|
|
margin: 1px 0;
|
2021-04-04 15:42:16 +08:00
|
|
|
display: flex;
|
2021-06-15 22:19:47 +08:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-04-04 15:42:16 +08:00
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.normal-data {
|
|
|
|
margin: 0;
|
|
|
|
min-height: 30px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2021-04-04 15:42:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.key {
|
|
|
|
flex: 1;
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
2021-04-04 15:42:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-04-04 19:04:55 +08:00
|
|
|
align-items: center;
|
2021-06-15 22:19:47 +08:00
|
|
|
min-width: 90px;
|
2021-04-04 15:42:16 +08:00
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.data-arrow {
|
|
|
|
width: 20px;
|
|
|
|
height: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
cursor: pointer;
|
2021-04-04 15:42:16 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.text {
|
2021-10-30 16:08:29 +08:00
|
|
|
flex: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2021-06-15 22:19:47 +08:00
|
|
|
user-select: none;
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 3px;
|
2021-10-30 16:08:29 +08:00
|
|
|
|
2021-11-06 20:19:21 +08:00
|
|
|
span {
|
2021-10-30 16:08:29 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2021-04-04 15:42:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.value {
|
|
|
|
flex: 3;
|
|
|
|
text-align: left;
|
|
|
|
height: 100%;
|
2021-04-06 18:41:54 +08:00
|
|
|
overflow: hidden;
|
2021-06-15 22:19:47 +08:00
|
|
|
min-width: 400px;
|
2021-04-06 18:41:54 +08:00
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.color {
|
|
|
|
position: relative;
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
.hex {
|
|
|
|
line-height: 30px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
user-select: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2021-04-06 18:41:54 +08:00
|
|
|
}
|
|
|
|
|
2021-11-06 21:42:37 +08:00
|
|
|
.invalid {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2021-11-06 21:14:38 +08:00
|
|
|
.objectDesc {
|
2021-11-06 20:19:21 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2021-11-06 21:14:38 +08:00
|
|
|
.array {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2021-06-19 19:51:05 +08:00
|
|
|
.engine {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-01-09 12:02:47 +08:00
|
|
|
border: solid #409eff 1px;
|
2021-06-19 19:51:05 +08:00
|
|
|
border-radius: 5px;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
|
|
|
|
.head {
|
|
|
|
background-color: cornflowerblue;
|
|
|
|
height: 28px;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
font-size: 20px;
|
|
|
|
width: 20px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.type {
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1;
|
|
|
|
height: 28px;
|
|
|
|
padding-left: 5px;
|
|
|
|
background-color: gold;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-15 22:19:47 +08:00
|
|
|
.vec {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
#ui-prop {
|
2021-06-17 21:37:09 +08:00
|
|
|
margin: 0 10px;
|
|
|
|
flex: 1;
|
2021-06-15 22:19:47 +08:00
|
|
|
|
|
|
|
.normal-data {
|
|
|
|
.value {
|
2021-11-13 11:51:48 +08:00
|
|
|
min-width: 50px;
|
2021-06-15 22:19:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.key {
|
2021-06-17 21:37:09 +08:00
|
|
|
min-width: unset;
|
|
|
|
display: block;
|
|
|
|
margin-right: 5px;
|
|
|
|
flex: unset;
|
2021-06-15 22:19:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-14 19:41:58 +08:00
|
|
|
|
2021-06-17 21:37:09 +08:00
|
|
|
#ui-prop:first-child {
|
|
|
|
margin-left: 0;
|
2021-06-15 22:19:47 +08:00
|
|
|
}
|
|
|
|
|
2021-06-17 21:37:09 +08:00
|
|
|
#ui-prop:last-child {
|
|
|
|
margin-right: 0;
|
2021-06-15 22:19:47 +08:00
|
|
|
}
|
2021-06-17 21:37:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.array-object {
|
|
|
|
flex: 1;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2021-06-15 22:19:47 +08:00
|
|
|
|
2021-06-17 21:37:09 +08:00
|
|
|
.text {
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2021-06-15 22:19:47 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-17 21:37:09 +08:00
|
|
|
|
|
|
|
.image-property {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slot {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-04 15:42:16 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-01 17:47:56 +08:00
|
|
|
}
|
2019-03-15 10:08:39 +08:00
|
|
|
</style>
|