This commit is contained in:
parent
cce1d891fb
commit
339f6e810b
|
@ -11,6 +11,7 @@ import axios from 'axios';
|
|||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
|
||||
import ItemSummary from '../Item/Card/ItemSummary.vue';
|
||||
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||
const entityId = computed(() => route.params.id);
|
||||
|
||||
const { viewSummary } = useSummaryDialog();
|
||||
|
@ -277,7 +278,14 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
:right-search="true"
|
||||
:is-editable="false"
|
||||
:use-model="true"
|
||||
/>
|
||||
>
|
||||
<template #column-userName="{ row }">
|
||||
<span class="link" @click.stop>
|
||||
{{ row.userName }}
|
||||
<WorkerDescriptorProxy :id="row.buyerFk" />
|
||||
</span>
|
||||
</template>
|
||||
</VnTable>
|
||||
</template>
|
||||
|
||||
<i18n>
|
||||
|
|
Loading…
Reference in New Issue