平台端修改
This commit is contained in:
@@ -68,6 +68,11 @@
|
|||||||
row-key="id"
|
row-key="id"
|
||||||
>
|
>
|
||||||
<el-table-column :show-overflow-tooltip="true" label="菜单名称" prop="name" width="250" />
|
<el-table-column :show-overflow-tooltip="true" label="菜单名称" prop="name" width="250" />
|
||||||
|
<el-table-column label="服务类型" prop="" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ getServiceName(row.serviceId) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column align="center" label="图标" prop="icon" width="100">
|
<el-table-column align="center" label="图标" prop="icon" width="100">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<Icon :icon="scope.row.icon" />
|
<Icon :icon="scope.row.icon" />
|
||||||
@@ -78,11 +83,7 @@
|
|||||||
<el-table-column :show-overflow-tooltip="true" label="组件路径" prop="component" />
|
<el-table-column :show-overflow-tooltip="true" label="组件路径" prop="component" />
|
||||||
<el-table-column :show-overflow-tooltip="true" label="组件名称" prop="componentName" />
|
<el-table-column :show-overflow-tooltip="true" label="组件名称" prop="componentName" />
|
||||||
<el-table-column label="状态" prop="status" width="80" />
|
<el-table-column label="状态" prop="status" width="80" />
|
||||||
<el-table-column label="服务类型" prop="" width="100">
|
|
||||||
<template #default="{ row }">
|
|
||||||
{{ getServiceName(row.serviceId) }}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column align="center" label="操作">
|
<el-table-column align="center" label="操作">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-button link type="primary" @click="openForm('update', scope.row.id)">
|
<el-button link type="primary" @click="openForm('update', scope.row.id)">
|
||||||
|
|||||||
Reference in New Issue
Block a user