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',
|
type: 'http',
|
||||||
},
|
},
|
||||||
port: 8080,
|
port: 8080,
|
||||||
open: true, // opens browser window automatically
|
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://0.0.0.0:3000',
|
target: 'http://0.0.0.0:3000',
|
||||||
|
|
|
@ -58,10 +58,6 @@ function stateColor(code) {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<card-descriptor v-if="claim" module="Claim" :data="claim" :description="claim.client.name">
|
<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>
|
<template #body>
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item>
|
<q-item>
|
||||||
|
|
|
@ -35,10 +35,10 @@ async function fetch() {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<card-descriptor v-if="customer" module="Customer" :data="customer" :description="customer.name">
|
<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 1</q-item>
|
||||||
<q-item clickable v-ripple>Option 2</q-item>
|
<q-item clickable v-ripple>Option 2</q-item>
|
||||||
</template>
|
</template> -->
|
||||||
<template #body>
|
<template #body>
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item v-if="customer.salesPersonUser">
|
<q-item v-if="customer.salesPersonUser">
|
||||||
|
|
|
@ -43,10 +43,10 @@ function stateColor(state) {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<card-descriptor v-if="ticket" module="Ticket" :data="ticket" :description="ticket.client.name">
|
<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 1</q-item>
|
||||||
<q-item clickable v-ripple>Option 2</q-item>
|
<q-item clickable v-ripple>Option 2</q-item>
|
||||||
</template>
|
</template> -->
|
||||||
<template #body>
|
<template #body>
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item>
|
<q-item>
|
||||||
|
|
Loading…
Reference in New Issue