doway-coms 2.10.79 → 2.10.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
<slot name="expandDefault" :item="{ row, column }"></slot>
|
|
375
375
|
</template>
|
|
376
376
|
<template #linkCell="{ row, column }">
|
|
377
|
-
<div class="link-cell-tags">
|
|
377
|
+
<div class="link-cell-tags" v-if="!gridEdit">
|
|
378
378
|
<template v-if="row[column.property]">
|
|
379
379
|
<a-tag
|
|
380
380
|
v-for="(item, index) in row[column.property].split(',')"
|
|
@@ -387,6 +387,7 @@
|
|
|
387
387
|
</a-tag>
|
|
388
388
|
</template>
|
|
389
389
|
</div>
|
|
390
|
+
<span v-else>{{row[column.property]}}</span>
|
|
390
391
|
</template>
|
|
391
392
|
<template #operation_edit="scope">
|
|
392
393
|
<div>
|