feat(wip): 권한으로 볼 수 없는 항목을 명확히

This commit is contained in:
2022-04-08 01:11:45 +09:00
parent 660c88975c
commit 3b887598da
3 changed files with 27 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<div>
<div v-for="(rowValue, rowIdx) in props.params.cells" :key="rowIdx" class="row gx-1 m-0 cell-sp">
<template v-for="colValue of rowValue" :key="colValue.target">
<div v-if="params.data[colValue.target] == null">-</div>
<div v-if="params.data[colValue.target] == null">?</div>
<div
v-else-if="colValue.iActionMap"
v-b-tooltip.hover
@@ -1,5 +1,5 @@
<template>
<span v-if="props.params.value == null">-</span>
<span v-if="props.params.value == null">?</span>
<span v-else-if="params.iActionMap" v-b-tooltip.hover :title="params.iActionMap[props.params.value].info ?? ''">{{
params.iActionMap[props.params.value].name
}}</span>