inicios del FrontEnd

This commit is contained in:
2021-04-21 21:47:04 -05:00
parent 4a7fb24eb2
commit cf9505f26d
196 changed files with 28978 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<template>
<base-table :data="tableData" thead-classes="text-primary">
<template slot-scope="{ row }">
<td><base-checkbox v-model="row.done"></base-checkbox></td>
<td>
<p class="title">{{ row.title }}</p>
<p class="text-muted">{{ row.description }}</p>
</td>
<td class="td-actions text-right">
<el-tooltip
content="Edit task"
effect="light"
:open-delay="300"
placement="top"
>
<base-button type="link">
<i class="tim-icons icon-pencil"></i>
</base-button>
</el-tooltip>
</td>
</template>
</base-table>
</template>
<script>
import { BaseTable } from '@/components';
export default {
components: {
BaseTable
},
data() {
return {
tableData: [
{
title: 'Update the Documentation',
description: 'Dwuamish Head, Seattle, WA 8:47 AM',
done: false
},
{
title: 'GDPR Compliance',
description:
'The GDPR is a regulation that requires businesses to protect the personal data and privacy of Europe citizens for transactions that occur within EU member states.',
done: true
},
{
title: 'Solve the issues',
description:
'Fifty percent of all respondents said they would be more likely to shop at a company',
done: false
},
{
title: 'Release v2.0.0',
description: 'Ra Ave SW, Seattle, WA 98116, SUA 11:19 AM',
done: false
},
{
title: 'Export the processed files',
description:
'The report also shows that consumers will not easily forgive a company once a breach exposing their personal data occurs.',
done: false
},
{
title: 'Arival at export process',
description: 'Capitol Hill, Seattle, WA 12:34 AM',
done: false
}
]
};
}
};
</script>
<style></style>

View File

@@ -0,0 +1,119 @@
<template>
<base-table :data="table" thead-classes="text-primary">
<template slot="columns" slot-scope="{ columns }">
<th>#</th>
<th>Name</th>
<th>Job Position</th>
<th>Salary</th>
<th class="text-right">Milestone</th>
<th class="text-right">Actions</th>
</template>
<template slot-scope="{ row, index }">
<td class="text-center">
<div class="photo"><img :src="row.img" alt="photo" /></div>
</td>
<td>{{ row.name }}</td>
<td>{{ row.job }}</td>
<td class="text-center"><base-progress :value="row.progress" /></td>
<td class="text-right"> 99,225</td>
<td class="text-right">
<el-tooltip
content="Refresh"
effect="light"
:open-delay="300"
placement="top"
>
<base-button
:type="index > 2 ? 'success' : 'neutral'"
icon
size="sm"
class="btn-link"
>
<i class="tim-icons icon-refresh-01"></i>
</base-button>
</el-tooltip>
<el-tooltip
content="Delete"
effect="light"
:open-delay="300"
placement="top"
>
<base-button
:type="index > 2 ? 'danger' : 'neutral'"
icon
size="sm"
class="btn-link"
>
<i class="tim-icons icon-simple-remove"></i>
</base-button>
</el-tooltip>
</td>
</template>
</base-table>
</template>
<script>
import { BaseTable, BaseProgress } from '@/components';
export default {
components: {
BaseTable,
BaseProgress
},
data() {
return {
table: [
{
id: 1,
img: 'img/tania.jpg',
name: 'Tania Mike',
job: 'Develop',
progress: 25,
salary: '€ 99,225'
},
{
id: 2,
img: 'img/robi.jpg',
name: 'John Doe',
job: 'CEO',
progress: 77,
salary: '€ 89,241'
},
{
id: 3,
img: 'img/lora.jpg',
name: 'Alexa Mike',
job: 'Design',
progress: 41,
salary: '€ 92,144'
},
{
id: 4,
img: 'img/jana.jpg',
name: 'Jana Monday',
job: 'Marketing',
progress: 50,
salary: '€ 49,990'
},
{
id: 5,
img: 'img/mike.jpg',
name: 'Paul Dickens',
job: 'Develop',
progress: 100,
salary: '€ 69,201'
},
{
id: 6,
img: 'img/emilyz.jpg',
name: 'Manuela Rico',
job: 'Manager',
progress: 15,
salary: '€ 99,201'
}
]
};
}
};
</script>
<style></style>