forked from verdnatura/salix-front
Disabled descriptor menus
This commit is contained in:
parent
d28b9f187c
commit
2118854d52
|
@ -86,7 +86,6 @@ module.exports = configure(function (ctx) {
|
|||
type: 'http',
|
||||
},
|
||||
port: 8080,
|
||||
open: true, // opens browser window automatically
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: 'http://0.0.0.0:3000',
|
||||
|
|
|
@ -58,10 +58,6 @@ function stateColor(code) {
|
|||
|
||||
<template>
|
||||
<card-descriptor v-if="claim" module="Claim" :data="claim" :description="claim.client.name">
|
||||
<template #menu>
|
||||
<q-item clickable v-ripple>Option 1</q-item>
|
||||
<q-item clickable v-ripple>Option 2</q-item>
|
||||
</template>
|
||||
<template #body>
|
||||
<q-list>
|
||||
<q-item>
|
||||
|
|
|
@ -35,10 +35,10 @@ async function fetch() {
|
|||
|
||||
<template>
|
||||
<card-descriptor v-if="customer" module="Customer" :data="customer" :description="customer.name">
|
||||
<template #menu>
|
||||
<!-- <template #menu>
|
||||
<q-item clickable v-ripple>Option 1</q-item>
|
||||
<q-item clickable v-ripple>Option 2</q-item>
|
||||
</template>
|
||||
</template> -->
|
||||
<template #body>
|
||||
<q-list>
|
||||
<q-item v-if="customer.salesPersonUser">
|
||||
|
|
|
@ -43,10 +43,10 @@ function stateColor(state) {
|
|||
|
||||
<template>
|
||||
<card-descriptor v-if="ticket" module="Ticket" :data="ticket" :description="ticket.client.name">
|
||||
<template #menu>
|
||||
<!-- <template #menu>
|
||||
<q-item clickable v-ripple>Option 1</q-item>
|
||||
<q-item clickable v-ripple>Option 2</q-item>
|
||||
</template>
|
||||
</template> -->
|
||||
<template #body>
|
||||
<q-list>
|
||||
<q-item>
|
||||
|
|
Loading…
Reference in New Issue