showing only the required cols

This commit is contained in:
Chad Derya 2019-09-10 20:37:16 +01:00
parent 7f3a8eedf0
commit a9d8cce29e
1 changed files with 4 additions and 4 deletions

View File

@ -19,22 +19,22 @@
<span>{{ scope.row.fullName }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="Identifier" width="200">
<el-table-column v-if="$store.state.settings.platform === 'OLFUK'" 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">
<el-table-column v-if="$store.state.settings.platform === 'OLFDE'" 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">
<el-table-column v-if="$store.state.settings.platform === 'OLFDE'" 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">
<el-table-column v-if="$store.state.settings.platform === 'OLFDE'" align="center" label="Meta" width="200">
<template slot-scope="scope">
<span>{{ scope.row.meta }}</span>
</template>