This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
:no-data-text="lt('NoData')"
|
:no-data-text="lt('NoData')"
|
||||||
class="elevation-1"
|
class="elevation-1"
|
||||||
>
|
>
|
||||||
<!-- /*UiDataTypes
|
<!-- /*From server: UiDataTypes
|
||||||
NoType = 0,
|
NoType = 0,
|
||||||
DateTime = 1,
|
DateTime = 1,
|
||||||
Date = 2,
|
Date = 2,
|
||||||
@@ -32,7 +32,8 @@
|
|||||||
Currency = 8,
|
Currency = 8,
|
||||||
Tags = 9,
|
Tags = 9,
|
||||||
Enum = 10,
|
Enum = 10,
|
||||||
EmailAddress = 11
|
EmailAddress = 11,
|
||||||
|
HTTP = 12
|
||||||
*/ -->
|
*/ -->
|
||||||
<template v-slot:body="{ items }">
|
<template v-slot:body="{ items }">
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -42,8 +43,11 @@
|
|||||||
<template v-if="c.t < 9">
|
<template v-if="c.t < 9">
|
||||||
{{ c.v }}
|
{{ c.v }}
|
||||||
</template>
|
</template>
|
||||||
<template v-if="c.t == 10">
|
<template v-if="c.t == 11">
|
||||||
<a :href="'mailto:' + c.v" target="_blank">{{ c.v }}</a>
|
<a :href="'mailto:' + c.v">{{ c.v }}</a>
|
||||||
|
</template>
|
||||||
|
<template v-if="c.t == 12">
|
||||||
|
<a :href="'http:' + c.v" target="_blank">{{ c.v }}</a>
|
||||||
</template>
|
</template>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user