|
@@ -25,7 +25,7 @@
|
|
|
:column="tableColumn" :datas="tableData" @selection-change="tableSelectionChange"
|
|
|
>
|
|
|
<template #name="{row}">
|
|
|
- <HcIcon class="table-menu-icon" :name="row.source" v-if="row.source"/>
|
|
|
+ <i :class="[`ri-${row?.source}`]" class="hc-icon-i table-menu-icon" v-if="row.source"/>
|
|
|
<span>{{row.name}}</span>
|
|
|
</template>
|
|
|
<template #category="{row}">
|
|
@@ -238,3 +238,9 @@ const menuDataModalClose = () => {
|
|
|
formModel.value = {}
|
|
|
}
|
|
|
</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+.table-menu-icon {
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+</style>
|