refs #6321 feat: change dialog header
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
0dd89ec3f0
commit
d10c04d4f2
|
@ -182,6 +182,17 @@ const columns = computed(() => [
|
||||||
<QDialog ref="dialogRef" v-model="showTicketDialog">
|
<QDialog ref="dialogRef" v-model="showTicketDialog">
|
||||||
<QCard class="q-pa-sm">
|
<QCard class="q-pa-sm">
|
||||||
<QCardSection class="row items-center q-pb-none">
|
<QCardSection class="row items-center q-pb-none">
|
||||||
|
<QImg
|
||||||
|
:src="`/api/Images/catalog/50x50/${currentRow.itemFk}/download?access_token=${token}`"
|
||||||
|
spinner-color="primary"
|
||||||
|
:ratio="1"
|
||||||
|
height="50px"
|
||||||
|
width="50px"
|
||||||
|
class="image"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<span class="text-h6 text-grey">{{ currentRow.longName }}</span>
|
||||||
|
<QSpace />
|
||||||
<QBtn
|
<QBtn
|
||||||
icon="close"
|
icon="close"
|
||||||
:disable="isLoading"
|
:disable="isLoading"
|
||||||
|
@ -189,7 +200,15 @@ const columns = computed(() => [
|
||||||
round
|
round
|
||||||
dense
|
dense
|
||||||
v-close-popup
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="row items-center">
|
||||||
|
<TicketDescriptorDialog
|
||||||
:id="currentRow.itemFk"
|
:id="currentRow.itemFk"
|
||||||
|
></TicketDescriptorDialog>
|
||||||
|
</QCardSection>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
<!-- <VnConfirm :title="t('confirmGreuges')">
|
<!-- <VnConfirm :title="t('confirmGreuges')">
|
||||||
<template #customHTML>
|
<template #customHTML>
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
||||||
title: 'negative',
|
title: 'negative',
|
||||||
icon: 'view_list',
|
icon: 'view_list',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Ticket/Negative/TicketList.vue'),
|
component: () => import('src/pages/Ticket/Negative/TicketLackList.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TicketCreate',
|
name: 'TicketCreate',
|
||||||
|
|
Loading…
Reference in New Issue