This commit is contained in:
2020-01-30 20:35:30 +00:00
parent 69a64cc3b1
commit d20f2c0548

View File

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