Merge branch 'abp' of https://gitee.com/tyjctl/Yi into abp
This commit is contained in:
@@ -29,7 +29,7 @@ const props = defineProps({
|
|||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
// 当前的值
|
// 当前的值
|
||||||
value: [Number, String, Array],
|
value: [Number, String, Array,Boolean],
|
||||||
})
|
})
|
||||||
|
|
||||||
const values = computed(() => {
|
const values = computed(() => {
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
<el-table-column prop="menuName" label="菜单名称" :show-overflow-tooltip="true" width="160"></el-table-column>
|
<el-table-column prop="menuName" label="菜单名称" :show-overflow-tooltip="true" width="160"></el-table-column>
|
||||||
<el-table-column prop="menuIcon" label="图标" align="center" width="100">
|
<el-table-column prop="menuIcon" label="图标" align="center" width="100">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<svg-icon :icon-class="scope.row.menuIcon" />
|
<svg-icon :icon-class="scope.row.menuIcon+''" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="orderNum" label="排序" width="60"></el-table-column>
|
<el-table-column prop="orderNum" label="排序" width="60"></el-table-column>
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
<template #prefix>
|
<template #prefix>
|
||||||
<svg-icon
|
<svg-icon
|
||||||
v-if="form.menuIcon"
|
v-if="form.menuIcon"
|
||||||
:icon-class="form.menuIcon"
|
:icon-class="form.menuIcon+''"
|
||||||
class="el-input__icon"
|
class="el-input__icon"
|
||||||
style="height: 32px;width: 16px;"
|
style="height: 32px;width: 16px;"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user