fix: add technology icons and update word contents (#58)

This commit is contained in:
Fine0830
2022-04-06 12:05:07 +08:00
committed by GitHub
parent e955c91323
commit a37bf62500
8 changed files with 19 additions and 43 deletions

View File

@@ -1,24 +0,0 @@
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<template>
<div class="about">{{ props.msg }}</div>
</template>
<script lang="ts" setup>
import { useAppStoreWithOut } from "@/store/modules/app";
const appStore = useAppStoreWithOut();
appStore.setPageTitle("Log");
/*global defineProps */
const props = defineProps({
msg: String,
});
</script>

View File

@@ -177,8 +177,8 @@ const setUTCMin = () => {
}
.settings {
color: #222;
font-size: 14px;
color: #606266;
font-size: 13px;
padding: 20px;
.item {
@@ -195,9 +195,10 @@ const setUTCMin = () => {
}
.label {
width: 100px;
width: 160px;
display: inline-block;
font-weight: 500;
color: #000;
}
}
</style>

View File

@@ -51,12 +51,12 @@ limitations under the License. -->
<el-table-column type="selection" width="55" />
<el-table-column prop="name" label="Name">
<template #default="scope">
<span class="cp name" @click="handleView(scope.row)">{{
scope.row.name
}}</span>
<span class="cp name" @click="handleView(scope.row)">
{{ scope.row.name }}
</span>
</template>
</el-table-column>
<el-table-column prop="layer" label="Layer" width="200" />
<el-table-column prop="layer" label="Layer" width="120" />
<el-table-column prop="entity" label="Entity" width="200" />
<el-table-column prop="isRoot" label="Root" width="60">
<template #default="scope">
@@ -74,7 +74,7 @@ limitations under the License. -->
{{ t("rename") }}
</el-button>
<el-popconfirm
title="Are you sure to delete this?"
:title="t('deleteTitle')"
@confirm="handleDelete(scope.row)"
>
<template #reference>
@@ -84,7 +84,7 @@ limitations under the License. -->
</template>
</el-popconfirm>
<el-popconfirm
title="Are you sure to set this?"
:title="t('rootTitle')"
@confirm="setRoot(scope.row)"
v-if="
[EntityType[0].value, EntityType[1].value].includes(
@@ -93,7 +93,7 @@ limitations under the License. -->
"
>
<template #reference>
<el-button size="small" style="width: 120px" type="danger">
<el-button size="small" style="width: 110px" type="danger">
{{ scope.row.isRoot ? t("setNormal") : t("setRoot") }}
</el-button>
</template>