Compare commits

...

15 Commits

Author SHA1 Message Date
2244c04b93
more typos
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-09 21:47:59 +02:00
5137a1a742
Typos
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-09 17:53:51 +02:00
d9de904c64
Adjust size
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-09 16:05:36 +02:00
50ad621f0e
Adds Tasks and images for draggame
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-09 15:48:04 +02:00
94cbbf8895
Changes for pitch2
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-09 13:30:46 +02:00
7129e224aa
Timelie typos 2
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-09 14:03:07 +01:00
e0075a9f92
More typos
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-08 13:52:38 +01:00
77751718fe
Fix Roemer and other typos
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-08 13:27:12 +01:00
584b43e5ee
roemer detail
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-06 16:18:39 +01:00
78e642a232
chatbot jo
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-06 16:02:53 +01:00
13bcac2acd
Styria 2020-01-06 16:02:28 +01:00
60056d18d4
Update small details
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-06 16:01:16 +01:00
eafcdef2d0
update loop fix
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-06 15:50:20 +01:00
797960b91e
Merge branch 'workingrouter'
Some checks reported errors
continuous-integration/drone/push Build was killed
2020-01-06 15:43:09 +01:00
3bea76ed5c
Mock data update
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-06 14:36:58 +01:00
20 changed files with 593 additions and 169 deletions

View File

@ -10,7 +10,7 @@ const titles = [
'1x Obstkorb',
'5€ Rewe Gutschein',
'10€ Cafeteria Gutschein',
'10€ Sodexo Getschein',
'10€ Sodexo Gutschein',
'1x Massage im Firmenspa',
'1 Tag Sprachkurs English',
'1x Fitnesscenter',

View File

@ -14,13 +14,13 @@ const tokens = {
const users = {
'admin-token': {
roles: ['admin'],
introduction: 'Projektmanager bei RedBull',
introduction: 'Projektmanager bei Styria',
avatar: 'https://lbsfilm.at/media/pages/about/1056669128-1567191147/square-small.jpg',
name: 'Lukas Bachschwell'
},
'editor-token': {
roles: ['editor'],
introduction: 'Backend Developer bei RedBull',
introduction: 'Manager bei Styria',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.mJ3OSG9AD98jJSXYhB89_QAAAA%26pid%3DApi&f=1',
name: 'Wolfgang Römer'
}

View File

@ -39,6 +39,7 @@
"axios": "0.18.1",
"clipboard": "2.0.4",
"codemirror": "5.45.0",
"dragula": "^3.7.2",
"driver.js": "0.9.5",
"dropzone": "5.5.1",
"echarts": "4.2.1",
@ -61,7 +62,8 @@
"vue-splitpane": "1.0.4",
"vuedraggable": "2.20.0",
"vuex": "3.1.0",
"xlsx": "0.14.1"
"xlsx": "0.14.1",
"xstate": "^4.8.0"
},
"devDependencies": {
"@babel/core": "7.0.0",

BIN
public/bussinesslady.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

BIN
public/coder.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
public/frontend.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
public/grafiks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
public/joe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

BIN
public/support.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

View File

@ -1,99 +1,281 @@
<template>
<div class="board-column">
<div class="board-column-header">
{{ headerText }}
</div>
<draggable
:list="list"
v-bind="$attrs"
class="board-column-content"
:set-data="setData"
>
<div v-for="element in list" :key="element.id" class="board-item">
{{ element.name }} {{ element.id }}
</div>
</draggable>
<div class="drag-container">
<ul class="drag-list">
<li
v-for="stage in stages"
:key="stage.text"
class="drag-column"
:class="{ ['drag-column-' + stage.text]: true }"
>
<span class="drag-column-header">
<slot :name="stage.text">
<h2>{{ stage.text }}</h2>
</slot>
</span>
<img v-if="stage.image" class="personImage" :src="stage.image">
<div class="drag-options" />
<ul ref="list" class="drag-inner-list" :data-status="stage.text">
<li
v-for="block in getBlocks(stage.text)"
:key="block.id"
class="drag-item"
:data-block-id="block.id"
>
<slot :name="block.id">
<strong>{{ block.title }}</strong>
</slot>
</li>
</ul>
<div class="drag-column-footer">
<slot :name="`footer-${stage.text}`" />
</div>
</li>
</ul>
</div>
</template>
<script>
import draggable from 'vuedraggable'
import dragula from 'dragula'
import { Machine } from 'xstate'
export default {
name: 'DragKanbanDemo',
components: {
draggable
},
name: 'KanbanBoard',
props: {
headerText: {
type: String,
default: 'Header'
},
options: {
type: Object,
default() {
return {}
}
},
list: {
stages: {
type: Array,
default() {
return []
}
required: true
},
blocks: {
type: Array,
required: true
},
config: {
type: Object,
default: () => ({})
},
stateMachineConfig: {
type: Object,
default: null
}
},
data() {
return {
machine: null
}
},
computed: {
localBlocks() {
return this.blocks
}
},
updated() {
this.drake.containers = this.$refs.list
},
mounted() {
this.config.accepts = this.config.accepts || this.accepts
this.drake = dragula(this.$refs.list, this.config)
.on('drag', el => {
el.classList.add('is-moving')
})
.on('drop', (block, list, source) => {
let index = 0
for (index = 0; index < list.children.length; index += 1) {
if (list.children[index].classList.contains('is-moving')) break
}
let newState = list.dataset.status
if (this.machine) {
const transition = this.findTransition(list, source)
if (!transition) return
newState = this.machine.transition(source.dataset.status, transition)
.value
}
this.$emit('update-block', block.dataset.blockId, newState, index)
})
.on('dragend', el => {
el.classList.remove('is-moving')
window.setTimeout(() => {
el.classList.add('is-moved')
window.setTimeout(() => {
el.classList.remove('is-moved')
}, 600)
}, 100)
})
},
created() {
if (!this.stateMachineConfig) return
this.machine = Machine(this.stateMachineConfig)
},
methods: {
setData(dataTransfer) {
// to avoid Firefox bug
// Detail see : https://github.com/RubaXa/Sortable/issues/1012
dataTransfer.setData('Text', '')
getBlocks(status) {
return this.localBlocks.filter(block => block.status === status)
},
findPossibleTransitions(sourceState) {
return this.machine.config.states[sourceState].on || {}
},
findTransition(target, source) {
const targetState = target.dataset.status
const sourceState = source.dataset.status
const possibleTransitions = this.findPossibleTransitions(sourceState)
return Object.keys(possibleTransitions).find(
transition => possibleTransitions[transition] === targetState
)
},
accepts(block, target, source) {
if (!this.machine) return true
const targetState = target.dataset.status
const sourceState = source.dataset.status
return Object.values(this.findPossibleTransitions(sourceState)).includes(
targetState
)
}
}
}
</script>
<style lang="scss" scoped>
.board-column {
min-width: 300px;
min-height: 100px;
height: auto;
overflow: hidden;
background: #f0f0f0;
border-radius: 3px;
.board-column-header {
height: 50px;
line-height: 50px;
overflow: hidden;
padding: 0 20px;
text-align: center;
background: #333;
color: #fff;
border-radius: 3px 3px 0 0;
<style lang="scss">
.personImage {
height: 100px;
}
$ease-out: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
ul.drag-list,
ul.drag-inner-list {
list-style-type: none;
margin: 0;
padding: 0;
}
.drag-container {
max-width: 1000px;
margin: 20px auto;
}
.drag-list {
display: flex;
align-items: flex-start;
@media (max-width: 690px) {
display: block;
}
}
.drag-column {
flex: 1;
margin: 0 10px;
position: relative;
background: rgba(black, 0.2);
overflow: hidden;
@media (max-width: 690px) {
margin-bottom: 30px;
}
.board-column-content {
height: auto;
overflow: hidden;
border: 10px solid transparent;
min-height: 60px;
display: flex;
justify-content: flex-start;
flex-direction: column;
align-items: center;
h2 {
font-size: 0.8rem;
margin: 0;
text-transform: uppercase;
font-weight: 600;
}
}
.board-item {
cursor: pointer;
width: 100%;
height: 64px;
margin: 5px 0;
background-color: #fff;
text-align: left;
line-height: 54px;
padding: 5px 10px;
box-sizing: border-box;
box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.2);
.drag-column-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
}
.drag-inner-list {
min-height: 50px;
color: white;
}
.drag-item {
padding: 10px;
margin: 10px;
//height: 100px;
background: rgba(black, 0.4);
transition: $ease-out;
&.is-moving {
transform: scale(1.5);
background: rgba(black, 0.8);
}
}
.drag-header-more {
cursor: pointer;
}
.drag-options {
position: absolute;
top: 44px;
left: 0;
width: 100%;
height: 100%;
padding: 10px;
transform: translateX(100%);
opacity: 0;
transition: $ease-out;
&.active {
transform: translateX(0);
opacity: 1;
}
&-label {
display: block;
margin: 0 0 5px 0;
input {
opacity: 0.6;
}
span {
display: inline-block;
font-size: 0.9rem;
font-weight: 400;
margin-left: 5px;
}
}
}
</style>
/* Dragula CSS */
.gu-mirror {
position: fixed !important;
margin: 0 !important;
z-index: 9999 !important;
opacity: 0.8;
list-style-type: none;
}
.gu-hide {
display: none !important;
}
.gu-unselectable {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.gu-transit {
opacity: 0.2;
}
</style>

5
src/layout/clean.vue Normal file
View File

@ -0,0 +1,5 @@
<template>
<div class="app-wrapper">
<router-view />
</div>
</template>

View File

@ -87,6 +87,18 @@ export default {
}).catch((err) => {
console.log('ThaErr', err)
})
request({
url: 'https://joinbot.tk/kvs/gameopen',
method: 'get',
headers: { 'x-api-key': 'PMl`&xWpZ1vE)M]G;{8qIXx4k!ce|n' }
}).then((result) => {
if (result === 1) {
this.openGame()
}
}).catch((err) => {
console.log('ThaErr', err)
})
}, 1000)
},
beforeDestroy() {
@ -100,6 +112,19 @@ export default {
async logout() {
await this.$store.dispatch('user/logout')
this.$router.push(`/login?redirect=${this.$route.fullPath}`)
},
openGame() {
window.open('/#/draggame/index', '', '"width=800,height=900"')
request({
url: 'https://joinbot.tk/kvs/gameopen',
method: 'post',
headers: { 'x-api-key': 'PMl`&xWpZ1vE)M]G;{8qIXx4k!ce|n' },
data: '0'
}).then((result) => {
}).catch((err) => {
console.log('ThaErr', err)
})
}
}
}

View File

@ -6,6 +6,7 @@ Vue.use(Router)
/* Layout */
import Layout from '@/layout'
import Clean from '@/layout/clean'
/* Router Modules */
import componentsRouter from './modules/components'
@ -111,6 +112,20 @@ export const constantRoutes = [
meta: { title: 'Profil', icon: 'user', noCache: true }
}
]
},
{
path: '/draggame',
component: Clean,
redirect: '/draggame/index',
hidden: true,
children: [
{
path: 'index',
component: () => import('@/views/draggame/index'),
name: 'Draggame',
meta: { title: 'Draggame', icon: 'user', noCache: true }
}
]
}
]

View File

@ -1,5 +1,6 @@
<template>
<div class="dashboard-container">
<button v-if="false" @click="open">Game</button>
<component :is="currentRole" />
</div>
</template>
@ -26,6 +27,11 @@ export default {
if (!this.roles.includes('admin')) {
this.currentRole = 'editorDashboard'
}
},
methods: {
open() {
window.open('/#/draggame/index', '', '"width=800,height=900"')
}
}
}
</script>

View File

@ -0,0 +1,183 @@
<template>
<div id="app">
<h1>Aufgabe</h1>
<p>
Sie sind Manager in einem Softwareunternehmen und aktuell stehen wieder
einige neue Aufgaben an. <br>Da Sie über ein tolles Team an Spezialisten
verfügen, können Sie diese Aufgaben sofort an die richtigen Leute verteilen.
<br>Wie würden Sie die Aufgaben am besten unter Ihren Kollegen verteilen
? <br><br>
Ziehen Sie die Aufgaben dazu einfach von der Spalte <b>Aufgaben</b> in die
Spalten der jeweiligen MitarbeiterInnen
<br>
</p>
<KanBan
:stages="stages"
:blocks="blocks"
@update-block="updateBlock"
@isDone="isDoneCallback"
/>
<button v-if="isDone" class="doneButton" @click="returnToBot">
Fertig
</button>
</div>
</template>
<script>
import request from '@/utils/request'
import KanBan from '@/components/Kanban'
export default {
name: 'App',
components: {
KanBan
},
data() {
return {
isDone: false,
stages: [
{
text: 'Aufgaben'
},
{ text: 'Frontend Developerin',
image: '/frontend.png' },
{ text: 'Support Techniker', image: '/support.png' },
{ text: 'Grafikerin', image: '/grafiks.png' },
{
text: 'Scrum Master',
image: '/bussinesslady.png'
},
{ text: 'Backend Developer', image: '/coder.png' }
],
blocks: [
{
id: 1,
status: 'Aufgaben',
title: 'Landingpage Bugfix',
text: '...'
},
{
id: 2,
status: 'Aufgaben',
title: 'Logo überarbeiten',
text: '...'
},
{
id: 3,
status: 'Aufgaben',
title: 'Neues Datenbankfeld',
text: '...'
},
{
id: 4,
status: 'Aufgaben',
title: 'Sprint 7 planen',
text: '...'
},
{
id: 5,
status: 'Aufgaben',
title: 'Neues Pitchdeck',
text: '...'
},
{
id: 6,
status: 'Aufgaben',
title: 'Kunde meldet Datenverlust',
text: '...'
},
{
id: 7,
status: 'Aufgaben',
title: 'Tippfehler in Produkt Übersetzung',
text: '...'
},
{
id: 8,
status: 'Aufgaben',
title: 'API Tests überprüfen',
text: '...'
}
]
}
},
methods: {
returnToBot() {
request({
url: 'https://joinbot.tk/kvs/botmessage',
method: 'get',
headers: { 'x-api-key': 'PMl`&xWpZ1vE)M]G;{8qIXx4k!ce|n' }
}).then((result) => {
window.close()
}).catch((err) => {
console.log('ThaErr', err)
})
},
isDoneCallback(isDone) {
this.isDone = isDone
},
updateBlock(id, status, index) {
// Update specified status
const currentBlock = this.blocks.find(b => b.id === Number(id))
currentBlock.status = status
// remove currnet block
let currentList = this.blocks.filter(b => b.id !== Number(id))
const otherLists = currentList.filter(b => b.status !== status)
currentList = currentList.filter(b => b.status === status)
currentList.splice(index, 0, currentBlock)
currentList = currentList.concat(otherLists)
this.blocks = currentList
this.isDone =
this.blocks.filter(block => block.status === 'Aufgaben').length === 0
// localStorage.setItem("blocks", JSON.stringify(this.blocks));
}
}
}
</script>
<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
.drag-column-Aufgaben {
background-color: red;
.drag-column-header > h2 {
color: white;
font-size: 1rem !important;
}
}
.doneButton {
box-shadow: 0px 10px 14px -7px #236069;
background: linear-gradient(to bottom, #2b84e3 5%, #3f8fcc 100%);
background-color: #2b84e3;
border-width: 0px;
border-radius: 8px;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Arial;
font-size: 20px;
font-weight: bold;
padding: 13px 32px;
text-decoration: none;
text-shadow: 0px 1px 0px #3d768a;
}
.doneButton:hover {
background: linear-gradient(to bottom, #3f8fcc 5%, #2b84e3 100%);
background-color: #3f8fcc;
}
.doneButton:active {
position: relative;
top: 1px;
}
</style>

View File

@ -11,7 +11,7 @@
</el-header>
<el-main class="skillbars">
<div style="position:relative;">
<div v-for="skill in sortSkills(person.skills)" :key="skill.name" class="progress-item">
<div v-for="skill in person.skills" :key="skill.name" class="progress-item">
<span>{{ skill.name }}</span>
<el-progress :percentage="skill.strength" />
</div>
@ -64,6 +64,7 @@ export default {
},
methods: {
sortSkills(skills) {
// Currently not used pls sort manually
return skills.sort((a, b) => (a.strength > b.strength) ? -1 : 1)
}
}}

View File

@ -32,7 +32,7 @@
<el-row v-if="results.length > 0" :gutter="8">
<el-col v-for="person in results" :key="person.name" :xs="{span: 24}" style="margin-bottom:30px;">
<box-card v-key="person.name" :person="person" />
<box-card :key="person.name" :person="person" />
</el-col>
</el-row>
<el-row v-if="value.length > 0 && results.length == 0" style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
@ -150,93 +150,95 @@ export default {
label: 'Strateghisches Management'
}
],
people: [{
name: 'Franz Fiedler',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.eQ7zUcL1ZRRFwc-V5pXquAAAAA%26pid%3DApi&f=1',
skills: [
{ name: 'Blockchain', strength: 100 },
{ name: 'Projektmanagement', strength: 92 }
people: [
{
name: 'Wolfgang Römer',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.mJ3OSG9AD98jJSXYhB89_QAAAA%26pid%3DApi&f=1',
skills: [
{ name: 'Projektmanagement', strength: 98 },
{ name: 'Webdesign', strength: 80 },
{ name: 'Reiseplanung', strength: 55 },
{ name: 'Blumen', strength: 12 }
]
},
{
name: 'Franz Fiedler',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.eQ7zUcL1ZRRFwc-V5pXquAAAAA%26pid%3DApi&f=1',
skills: [
{ name: 'Blockchain', strength: 100 },
{ name: 'Projektmanagement', strength: 92 }
]
}, {
name: 'Wolfgang Römer',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.mJ3OSG9AD98jJSXYhB89_QAAAA%26pid%3DApi&f=1',
skills: [
{ name: 'Projektmanagement', strength: 98 },
{ name: 'Webdesign', strength: 80 },
{ name: 'Reiseplanung', strength: 55 },
{ name: 'Blumen', strength: 12 }
]
}, {
name: 'Lukas Bachschwell',
avatar: 'https://lbsfilm.at/media/pages/about/1056669128-1567191147/square-small.jpg',
skills: [
{ name: 'Blockchain', strength: 75 }
]
},
{
name: 'Victoria Kasamas',
skills: [
{ name: 'Buchhaltung', strength: 83 }
]
},
{
name: 'Anna Steinacher',
avatar: 'https://media.licdn.com/dms/image/C5603AQEuI2luHoKYcA/profile-displayphoto-shrink_800_800/0?e=1582761600&v=beta&t=Xq0C49tI4WBsaZw5ROmTPGx4g93AElaOkt4X96y3u8w',
skills: [
{ name: 'Reiseplanung', strength: 98 },
{ name: 'Video', strength: 65 }
]
}, {
name: 'Johannes Gutherz',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.xing.com%2Fimage%2Fa_7_e_1a7c18b82_6089096_5%2Fjoel-wenger-foto.256x256.jpg&f=1&nofb=1',
skills: [
{ name: 'Webdesign', strength: 43 },
{ name: 'Video', strength: 85 },
{ name: 'Reiseplanung', strength: 30 },
{ name: 'Arbeitsplatzsicherheit', strength: 55 }
]
}, {
name: 'Lukas Bachschwell',
avatar: 'https://lbsfilm.at/media/pages/about/1056669128-1567191147/square-small.jpg',
skills: [
{ name: 'Blockchain', strength: 75 }
]
},
{
name: 'Victoria Kasamas',
skills: [
{ name: 'Buchhaltung', strength: 83 }
]
},
{
name: 'Anna Steinacher',
avatar: 'https://media.licdn.com/dms/image/C5603AQEuI2luHoKYcA/profile-displayphoto-shrink_800_800/0?e=1582761600&v=beta&t=Xq0C49tI4WBsaZw5ROmTPGx4g93AElaOkt4X96y3u8w',
skills: [
{ name: 'Reiseplanung', strength: 98 },
{ name: 'Video', strength: 65 }
]
}, {
name: 'Johannes Gutherz',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.xing.com%2Fimage%2Fa_7_e_1a7c18b82_6089096_5%2Fjoel-wenger-foto.256x256.jpg&f=1&nofb=1',
skills: [
{ name: 'Webdesign', strength: 43 },
{ name: 'Video', strength: 85 },
{ name: 'Reiseplanung', strength: 30 },
{ name: 'Arbeitsplatzsicherheit', strength: 55 }
]
},
{
name: 'Ilse Hermann',
skills: [
{ name: 'Video', strength: 88 },
{ name: 'Reiseplanung', strength: 30 },
{ name: 'Buchhaltung', strength: 11 }
]
},
{
name: 'Ilse Hermann',
skills: [
{ name: 'Video', strength: 88 },
{ name: 'Reiseplanung', strength: 30 },
{ name: 'Buchhaltung', strength: 11 }
]
},
{
name: 'Helene Jägermeister',
avatar: 'https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fais.badische-zeitung.de%2Fpiece%2F06%2F1c%2Fee%2Fe3%2F102559459.jpg&f=1&nofb=1',
skills: [
{ name: 'Wein & Käse', strength: 95 },
{ name: 'Video', strength: 30 },
{ name: 'Webdesign', strength: 79 },
{ name: 'Buchhaltung', strength: 5 }
]
},
{
name: 'Helene Jägermeister',
avatar: 'https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fais.badische-zeitung.de%2Fpiece%2F06%2F1c%2Fee%2Fe3%2F102559459.jpg&f=1&nofb=1',
skills: [
{ name: 'Wein & Käse', strength: 95 },
{ name: 'Video', strength: 30 },
{ name: 'Webdesign', strength: 79 },
{ name: 'Buchhaltung', strength: 5 }
]
},
{
name: 'Peter Steiner',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse3.mm.bing.net%2Fth%3Fid%3DOIP.qwuDUAC0rByOm6_eF7gHaQHaEK%26pid%3DApi&f=1',
skills: [
{ name: 'Audio', strength: 98 },
{ name: 'Video', strength: 85 },
{ name: 'Programmierkenntnisse', strength: 12 },
{ name: 'Buchhaltung', strength: 19 }
]
},
{
name: 'Peter Steiner',
avatar: 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse3.mm.bing.net%2Fth%3Fid%3DOIP.qwuDUAC0rByOm6_eF7gHaQHaEK%26pid%3DApi&f=1',
skills: [
{ name: 'Audio', strength: 98 },
{ name: 'Video', strength: 85 },
{ name: 'Programmierkenntnisse', strength: 12 },
{ name: 'Buchhaltung', strength: 19 }
]
},
{
name: 'Alex Rodriguez',
avatar: 'https://upload.wikimedia.org/wikipedia/commons/7/72/Alex_Rodriguez.jpg',
skills: [
{ name: 'Markenschutz', strength: 44 },
{ name: 'Blockchain', strength: 1 }
]
}]
]
},
{
name: 'Alex Rodriguez',
avatar: 'https://upload.wikimedia.org/wikipedia/commons/7/72/Alex_Rodriguez.jpg',
skills: [
{ name: 'Markenschutz', strength: 44 },
{ name: 'Blockchain', strength: 1 }
]
}]
}
},
computed: {

View File

@ -45,7 +45,7 @@
</el-col>
</el-row>
<el-form-item style="margin-bottom: 40px;" label-width="70px" label="Summary:">
<el-form-item style="margin-bottom: 40px;" label-width="70px" label="Beschreibung:">
<el-input v-model="postForm.content_short" :rows="1" type="textarea" class="article-textarea" autosize placeholder="Beschreibung des Incentives" />
<span v-show="contentShortLength" class="word-counter">{{ contentShortLength }}words</span>
</el-form-item>

View File

@ -22,24 +22,24 @@ export default {
{
timestamp: '2019/4/25',
title: 'Chat mit Joinbot',
content: 'Sie hatten einen Gespräch mit <b>Joinbot</b>',
content: 'Sie hatten einen Gespräch mit <b>Chatbot Jo</b>',
linkText: 'Zum Chatprotokoll',
linkHref: '/'
},
{
timestamp: '2019/4/20',
title: 'Stammdaten aktualisiert',
content: 'Sie haben ihre Email Addresse aktualisiert'
content: 'Sie haben Ihre Email Addresse aktualisiert'
},
{
timestamp: '2019/2/22',
title: 'Stammdaten aktualisiert',
content: '<b>Julia Kramer</b> hat ihre <b>Ausbildungsinformationen</b> aktualisiert'
content: '<b>Julia Kramer</b> hat Ihre <b>Ausbildungsinformationen</b> aktualisiert'
},
{
timestamp: '2019/1/23',
title: 'Account erstellt',
content: 'Willkommen bei RedBull!, nutzen sie Join für Karrierechancen und indifiduelle Benefits!'
content: 'Willkommen bei Styria, nutzen Sie Join für Karrierechancen und individuelle Benefits!'
}
]
}

View File

@ -21,7 +21,10 @@
<div class="user-bio-section-header"><svg-icon icon-class="education" /><span>Ausbildung</span></div>
<div class="user-bio-section-body">
<div class="text-muted">
Bachelor of Science der Medientechnik <br>(FH St. Pölten)
1990-1995 Studium der Wirtschaftsinformatik an der TU Wien<br>
1999-2001 Universitätslehrgang Kulturmanagement, Universität für Musik und darstellende Kunst Wien<br>
Dozent an der Fachhochschule St. Pölten<br>
</div>
</div>
</div>