添加主机身份页面.

This commit is contained in:
lijiahang
2023-09-21 13:50:42 +08:00
parent fbc40116f0
commit b13cbd8cca
39 changed files with 444 additions and 649 deletions

View File

@@ -56,6 +56,10 @@
@page-change="(page) => fetchTableData(page, pagination.pageSize)"
@page-size-change="(size) => fetchTableData(pagination.current, size)"
:bordered="false">
<!-- 名称 -->
<template #name="{ record }">
<span class="span-blue">{{ record.name }}</span>
</template>
<!-- 编码 -->
<template #code="{ record }">
<a-tag>{{ record.code }}</a-tag>

View File

@@ -72,7 +72,7 @@
:bordered="false">
<!-- 用户名 -->
<template #username="{ record }">
<span class="username-text">{{ record.username }}</span>
<span class="span-blue">{{ record.username }}</span>
</template>
<!-- 状态 -->
<template #status="{ record }">
@@ -248,7 +248,5 @@
</script>
<style lang="less" scoped>
.username-text {
color: rgb(var(--arcoblue-6));
}
</style>

View File

@@ -25,7 +25,6 @@ const columns = [
title: '手机号',
dataIndex: 'mobile',
slotName: 'mobile',
align: 'center',
ellipsis: true,
tooltip: true,
}, {