Merge branch 'develop' into feat/4-property-managment
This commit is contained in:
commit
c2f3260d13
3 changed files with 5 additions and 5 deletions
|
|
@ -24,7 +24,7 @@ defineProps<{
|
||||||
'main-btn__solid': solid && !outlined,
|
'main-btn__solid': solid && !outlined,
|
||||||
'main-btn__outline': !solid && outlined,
|
'main-btn__outline': !solid && outlined,
|
||||||
'main-btn__pill': pill,
|
'main-btn__pill': pill,
|
||||||
'main-btn__dark': dark,
|
'main-btn__dark': dark || $q.dark.isActive,
|
||||||
'main-btn__icon-only': iconOnly,
|
'main-btn__icon-only': iconOnly,
|
||||||
}"
|
}"
|
||||||
:style="{ '--button-main-color': color }"
|
:style="{ '--button-main-color': color }"
|
||||||
|
|
|
||||||
|
|
@ -2155,7 +2155,7 @@ function covertToNode() {
|
||||||
|
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
(view === View.Quotation || view === View.Payment) &&
|
(view === View.Quotation || view === View.Accepted) &&
|
||||||
quotationFormData.id
|
quotationFormData.id
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
|
@ -2186,7 +2186,6 @@ function covertToNode() {
|
||||||
<div class="surface-1 q-pa-md row" style="gap: var(--size-2)">
|
<div class="surface-1 q-pa-md row" style="gap: var(--size-2)">
|
||||||
<SelectInput
|
<SelectInput
|
||||||
class="q-mr-xl col-md-3 col-12"
|
class="q-mr-xl col-md-3 col-12"
|
||||||
incremental
|
|
||||||
v-model="templateForm"
|
v-model="templateForm"
|
||||||
id="quotation-branch"
|
id="quotation-branch"
|
||||||
:option="templateFormOption"
|
:option="templateFormOption"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { Icon } from '@iconify/vue/dist/iconify.js';
|
import { Icon } from '@iconify/vue/dist/iconify.js';
|
||||||
import VueApexCharts from 'vue3-apexcharts';
|
import VueApexCharts, { VueApexChartsComponent } from 'vue3-apexcharts';
|
||||||
import DataDisplay from 'src/components/08_request-list/DataDisplay.vue';
|
import DataDisplay from 'src/components/08_request-list/DataDisplay.vue';
|
||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { formatNumberDecimal } from 'src/stores/utils';
|
import { formatNumberDecimal } from 'src/stores/utils';
|
||||||
|
|
@ -22,12 +22,13 @@ const prop = withDefaults(
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const chartOptions = computed(() => {
|
const chartOptions = computed<VueApexChartsComponent['options']>(() => {
|
||||||
return {
|
return {
|
||||||
colors: ['#035aa1', '#ae3ec9', '#ffa94d', '#e64980'],
|
colors: ['#035aa1', '#ae3ec9', '#ffa94d', '#e64980'],
|
||||||
chart: {
|
chart: {
|
||||||
fontFamily: 'Noto Sans Thai',
|
fontFamily: 'Noto Sans Thai',
|
||||||
type: 'line',
|
type: 'line',
|
||||||
|
foreColor: 'var(--foreground)',
|
||||||
zoom: {
|
zoom: {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue