This commit is contained in:
@@ -149,15 +149,48 @@
|
|||||||
>
|
>
|
||||||
<template v-if="c.t == 1">
|
<template v-if="c.t == 1">
|
||||||
<!-- DATETIME -->
|
<!-- DATETIME -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 2">
|
<template v-else-if="c.t == 2">
|
||||||
<!-- DATE -->
|
<!-- DATE -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 3">
|
<template v-else-if="c.t == 3">
|
||||||
<!-- TIME -->
|
<!-- TIME -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 4">
|
<template v-else-if="c.t == 4">
|
||||||
<!-- TEXT (also maybe openable)-->
|
<!-- TEXT (also maybe openable)-->
|
||||||
@@ -200,7 +233,18 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 7">
|
<template v-else-if="c.t == 7">
|
||||||
<!-- DECIMAL -->
|
<!-- DECIMAL -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 8">
|
<template v-else-if="c.t == 8">
|
||||||
<!-- CURRENCY -->
|
<!-- CURRENCY -->
|
||||||
@@ -315,15 +359,48 @@
|
|||||||
<v-list-item-subtitle :style="cellStyle(c)">
|
<v-list-item-subtitle :style="cellStyle(c)">
|
||||||
<template v-if="c.t == 1">
|
<template v-if="c.t == 1">
|
||||||
<!-- DATETIME -->
|
<!-- DATETIME -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 2">
|
<template v-else-if="c.t == 2">
|
||||||
<!-- DATE -->
|
<!-- DATE -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 3">
|
<template v-else-if="c.t == 3">
|
||||||
<!-- TIME -->
|
<!-- TIME -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 4">
|
<template v-else-if="c.t == 4">
|
||||||
<!-- TEXT (also maybe openable)-->
|
<!-- TEXT (also maybe openable)-->
|
||||||
@@ -369,7 +446,18 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 7">
|
<template v-else-if="c.t == 7">
|
||||||
<!-- DECIMAL -->
|
<!-- DECIMAL -->
|
||||||
{{ c.v }}
|
<template v-if="c.i && c.i != 0 && !c.nopen">
|
||||||
|
<!-- openable object with an ID -->
|
||||||
|
<div
|
||||||
|
class="subtitle-1"
|
||||||
|
@click="gridCellButtonClick(c.key, c.i, c.ot)"
|
||||||
|
>
|
||||||
|
<a href="javascript:"> {{ c.v }}</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ c.v }}
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="c.t == 8">
|
<template v-else-if="c.t == 8">
|
||||||
<!-- CURRENCY -->
|
<!-- CURRENCY -->
|
||||||
|
|||||||
Reference in New Issue
Block a user