131 lines
3.3 KiB
Vue
131 lines
3.3 KiB
Vue
<template>
|
|
<el-collapse v-model="activeDocuments" accordion>
|
|
<el-collapse-item name="documents">
|
|
<template slot="title">
|
|
<i class="el-icon-document" style="margin-right: 4px;margin-left: 10px;" /> {{ $t('profile.PendingDocuments') }}
|
|
</template>
|
|
<el-card class="box-card" :body-style="{ padding: '0px' }" shadow="never">
|
|
<div class="recent-items">
|
|
<el-table :data="search.length ? filterResult(search) : documents" max-height="455" @row-click="handleClick">
|
|
<el-table-column
|
|
prop="recordCount"
|
|
width="60"
|
|
/>
|
|
<el-table-column>
|
|
<template slot="header" slot-scope="scope">
|
|
<el-input
|
|
v-model="search"
|
|
size="mini"
|
|
:metadata="scope"
|
|
:placeholder="$t('table.dataTable.search')"
|
|
/>
|
|
</template>
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.name }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</el-card>
|
|
</el-collapse-item>
|
|
</el-collapse>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PendingDocuments',
|
|
data() {
|
|
return {
|
|
activeDocuments: 'documents',
|
|
documents: [],
|
|
search: ''
|
|
}
|
|
},
|
|
computed: {
|
|
getterPendingDocuments() {
|
|
return this.$store.getters.getPendingDocuments
|
|
},
|
|
cachedViews() {
|
|
return this.$store.getters.cachedViews
|
|
},
|
|
permissionRoutes() {
|
|
return this.$store.getters.permission_routes
|
|
}
|
|
},
|
|
mounted() {
|
|
this.getPendingDocuments()
|
|
this.subscribeChanges()
|
|
},
|
|
methods: {
|
|
getPendingDocuments() {
|
|
this.$store.dispatch('getPendingDocumentsFromServer')
|
|
.then(response => {
|
|
this.documents = response
|
|
}).catch(error => {
|
|
console.log(error)
|
|
})
|
|
},
|
|
subscribeChanges() {
|
|
this.$store.subscribe((mutation, state) => {
|
|
if (mutation.type === 'setPendingDocuments') {
|
|
this.recentItems = this.getterPendingDocuments
|
|
}
|
|
})
|
|
},
|
|
handleClick(row) {
|
|
this.$store.dispatch('getWindowByUuid', { routes: this.permissionRoutes, windowUuid: row.windowUuid })
|
|
var windowRoute = this.$store.getters.getWindowRoute(row.windowUuid)
|
|
this.$router.push({
|
|
name: windowRoute.name,
|
|
params: {
|
|
...row.criteria
|
|
},
|
|
query: {
|
|
action: 'criteria'
|
|
}
|
|
})
|
|
// conditions for the registration amount (operador: row.criteria.whereClause)
|
|
},
|
|
filterResult(search) {
|
|
return this.documents.filter(item => this.ignoreAccent(item.name).toLowerCase().includes(this.ignoreAccent(search.toLowerCase())))
|
|
},
|
|
ignoreAccent(s) {
|
|
if (!s) { return '' }
|
|
return s.normalize('NFD').replace(/[\u0300-\u036f]/g, '')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.search_recent {
|
|
width: 50%!important;
|
|
float: right;
|
|
}
|
|
.header {
|
|
padding-bottom: 10px;
|
|
}
|
|
.recent-items {
|
|
height: 455px;
|
|
overflow: auto;
|
|
}
|
|
.time {
|
|
float: left;
|
|
font-size: 11px;
|
|
color: #999;
|
|
}
|
|
.card-box {
|
|
cursor: pointer;
|
|
}
|
|
.card-content {
|
|
font-size: 15px;
|
|
}
|
|
.icon-window {
|
|
font-size: x-large;
|
|
color: #36a3f7;
|
|
}
|
|
.action-tag {
|
|
float: right;
|
|
}
|
|
</style>
|