Merge branch 'dev_xd' of http://62.234.3.186:3000/jiangyq/YZProjectCloud into dev_xd
commit
9886d8c731
|
@ -0,0 +1 @@
|
|||
<svg class="icon" style="width: 1em;height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9075"><path d="M960 938.666667h-21.333333v-89.753334c9.846667-4.206667 18.793333-11.293333 25.906666-20.773333 10.806667-14.413333 16.76-33.246667 16.76-53.026667 0-19-5.546667-49.873333-13.48-75.08-4.746667-15.06-10.06-27.373333-15.793333-36.6-9.666667-15.546667-21.333333-23.433333-34.726667-23.433333s-25.06 7.886667-34.726666 23.433333c-5.733333 9.226667-11.046667 21.54-15.793334 36.6-7.933333 25.206667-13.48 56.08-13.48 75.08 0 19.78 5.953333 38.613333 16.76 53.026667 7.113333 9.48 16.06 16.566667 25.906667 20.773333V938.666667h-85.333333v-170.666667c0-47.12 12.04-91.133333 33.906666-123.933333C864.666667 613.933333 890.506667 597.333333 917.333333 597.333333a21.333333 21.333333 0 0 0 21.333334-21.333333V277.333333a21.333333 21.333333 0 0 0-21.333334-21.333333h-21.333333v-64a21.333333 21.333333 0 0 0-21.333333-21.333333H576a21.333333 21.333333 0 0 0-21.333333 21.333333v64h-44.813334a106.98 106.98 0 0 0-84.98-83.54A106.98 106.98 0 0 0 341.333333 87.48V64a21.333333 21.333333 0 0 0-42.666666 0v23.48a106.98 106.98 0 0 0-83.54 84.98C165.613333 181.666667 128 225.193333 128 277.333333v106.666667h-21.333333a21.333333 21.333333 0 0 0-21.333334 21.333333v64H64a21.333333 21.333333 0 0 0-21.333333 21.333334v469.333333a21.333333 21.333333 0 0 0 21.333333 21.333333h896a21.333333 21.333333 0 0 0 0-42.666666zM213.333333 810.666667h-42.666666v-85.333334h42.666666z m0-128h-42.666666V597.333333h42.666666z m170.666667 256h-42.666667V469.333333h-42.666666V384h42.666666v85.333333h42.666667z m384-554.666667h42.666667v85.333333h-42.666667z m-128 469.333333h-42.666667v-85.333333h42.666667z m0-128h-42.666667V640h42.666667z m0-128h-42.666667V512h42.666667z m0-128h-42.666667V384h42.666667z m85.333333 384h-42.666666v-85.333333h42.666666z m0-128h-42.666666V640h42.666666z m0-128h-42.666666V512h42.666666z m0-128h-42.666666V384h42.666666z m42.666667 42.666667h42.666667v85.333333h-42.666667z" p-id="9076"></path></svg>
|
After Width: | Height: | Size: 2.1 KiB |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 5.4 KiB |
|
@ -189,7 +189,7 @@ function actorVisible(that) {
|
|||
let modelId = featureId.split("^")[0];
|
||||
api.Feature.setVisible(featureId, false);
|
||||
that.hideFeatureIds.push({
|
||||
hide:true,
|
||||
show:false,
|
||||
id:featureId.split("^")[1],
|
||||
modelId:modelId,
|
||||
featureId:featureId
|
||||
|
|
|
@ -14,18 +14,18 @@
|
|||
</div>
|
||||
<div class="viewpoint-actions">
|
||||
<el-tooltip content="默认视点">
|
||||
<el-icon @click="DefaultViewpoint(item, index)">
|
||||
<el-icon @click="DefaultViewpoint(item, index)" :color="item.isOvert?'#409eff':'#ccc'">
|
||||
<SuccessFilled v-if="item.isOvert" />
|
||||
<CircleCheck v-if="!item.isOvert" />
|
||||
</el-icon>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="编辑名称">
|
||||
<el-icon @click="editViewPoint(item, index)">
|
||||
<el-icon @click="editViewPoint(item, index)" :color="'#409eff'">
|
||||
<Edit />
|
||||
</el-icon>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="删除">
|
||||
<el-icon @click="DelViewpoint(item, index)">
|
||||
<el-icon @click="DelViewpoint(item, index)" :color="'#409eff'">
|
||||
<Delete />
|
||||
</el-icon>
|
||||
</el-tooltip>
|
||||
|
@ -365,10 +365,12 @@ export default {
|
|||
}
|
||||
|
||||
.viewpoint-actions {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
.el-icon {
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
font-size: 20px;
|
||||
|
||||
&:hover {
|
||||
color: var(--el-color-primary);
|
||||
|
|
Loading…
Reference in New Issue