mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-20 03:00:53 +08:00
完善:完善菜单相关代码逻辑,优化部分细节
This commit is contained in:
@@ -136,19 +136,19 @@
|
||||
</a-table-column>
|
||||
<a-table-column title="外链" align="center">
|
||||
<template #cell="{ record }">
|
||||
<a-tag v-if="record.isExternal" color="green">是</a-tag>
|
||||
<a-tag v-if="record.isExternal" color="arcoblue">是</a-tag>
|
||||
<a-tag v-else color="red">否</a-tag>
|
||||
</template>
|
||||
</a-table-column>
|
||||
<a-table-column title="缓存" align="center">
|
||||
<template #cell="{ record }">
|
||||
<a-tag v-if="record.isCache" color="green">是</a-tag>
|
||||
<a-tag v-if="record.isCache" color="arcoblue">是</a-tag>
|
||||
<a-tag v-else color="red">否</a-tag>
|
||||
</template>
|
||||
</a-table-column>
|
||||
<a-table-column title="隐藏" align="center">
|
||||
<template #cell="{ record }">
|
||||
<a-tag v-if="record.isHidden" color="green">是</a-tag>
|
||||
<a-tag v-if="record.isHidden" color="arcoblue">是</a-tag>
|
||||
<a-tag v-else color="red">否</a-tag>
|
||||
</template>
|
||||
</a-table-column>
|
||||
|
Reference in New Issue
Block a user