From 5713c5d9355d65693a06aa540feb9dd169be1d80 Mon Sep 17 00:00:00 2001 From: ma0048 Date: Tue, 30 Apr 2024 12:40:00 +0200 Subject: [PATCH] - uid im suchergebnis hinzugefuegt --- public/js/components/searchbar/employee.js | 162 ++++++++++----------- 1 file changed, 78 insertions(+), 84 deletions(-) diff --git a/public/js/components/searchbar/employee.js b/public/js/components/searchbar/employee.js index afb947874..6d8d364d0 100644 --- a/public/js/components/searchbar/employee.js +++ b/public/js/components/searchbar/employee.js @@ -2,88 +2,82 @@ import action from "./action.js"; import actions from "./actions.js"; export default { - props: [ "res", "actions" ], - components: { - action: action, - actions: actions - }, - emits: [ 'actionexecuted' ], - template: ` -
- -
-
- - - - -
- -
- - {{ res.name }} - - -
- -
- -
-
Standard-Kostenstelle
-
-
    -
  • {{ stdkst }}
  • -
- keine -
-
- -
-
Organisations-Einheit
-
-
    -
  • {{ oe }}
  • -
- keine -
-
- -
-
EMail
- -
- -
-
Telefon
- -
- -
- - - -
-
- -
- `, - methods: { - }, - computed: { - mailtourl: function() { - return 'mailto:' + this.res.email; - }, - telurl: function() { - return 'tel:' + this.res.phone; - } - } + props: [ "res", "actions" ], + components: { + action: action, + actions: actions + }, + emits: [ 'actionexecuted' ], + template: ` +
+
+
+ + + + +
+
+ + {{ res.name }} + +
+
+
+
Standard-Kostenstelle
+
+
    +
  • {{ stdkst }}
  • +
+ keine +
+
+
+
Organisations-Einheit
+
+
    +
  • {{ oe }}
  • +
+ keine +
+
+
+
UID
+
+ {{ res.uid }} +
+
+
+
EMail
+ +
+
+
Telefon
+ +
+
+ +
+
+
+ `, + methods: { + }, + computed: { + mailtourl: function() { + return 'mailto:' + this.res.email; + }, + telurl: function() { + return 'tel:' + this.res.phone; + } + } }; \ No newline at end of file