Adding rest of the columns WIP

This commit is contained in:
Chad Derya 2019-09-10 20:24:04 +01:00
parent 8605cb1b87
commit 7f3a8eedf0
1 changed files with 26 additions and 0 deletions

View File

@ -14,6 +14,31 @@
<span>{{ scope.row.name }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="FullName" width="200">
<template slot-scope="scope">
<span>{{ scope.row.fullName }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="Identifier" width="200">
<template slot-scope="scope">
<span>{{ scope.row.identifier }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="Region Id" width="200">
<template slot-scope="scope">
<span>{{ scope.row.region_id }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="Phone" width="200">
<template slot-scope="scope">
<span>{{ scope.row.contactNumber }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="openingHours" width="200">
<template slot-scope="scope">
<span>{{ scope.row.meta }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="Actions" width="120">
<template slot-scope="scope">
@ -70,6 +95,7 @@ export default {
fetchList().then(response => {
this.originaList = response.data.terminals
this.filteredList = this.originaList
console.log(this.originaList)
this.total = response.data.terminals.length
this.listLoading = false
})