minoe fixes, removed status from terminal as it doesnt exist

This commit is contained in:
Chad Derya 2019-09-12 18:06:17 +01:00
parent 48c2c14e94
commit b95bd2a23d
4 changed files with 10 additions and 10 deletions

View File

@ -41,6 +41,7 @@ function __dataToDTO(data) {
'contactNumber': data.contactNumber,
'fullName': data.fullName,
'meta': data.meta,
// 'status': data.status,
'regionId': data.region_id
}
}

View File

@ -68,7 +68,7 @@ export default {
methods: {
getList() {
this.listLoading = true
fetchList(this.listQuery).then(response => {
fetchList().then(response => {
this.list = response.data.regions
this.total = response.data.regions.length
this.listLoading = false

View File

@ -100,7 +100,7 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<!-- <el-row>
<el-col :span="8">
<el-form-item label-width="120px" label="Status" class="postInfo-container-item">
<el-radio-group v-model="postForm.status">
@ -109,7 +109,7 @@
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
</el-row> -->
</div>
</el-col>
@ -131,6 +131,7 @@ const defaultForm = {
fullName: '',
contactNumber: '',
region_id: '',
// status: '',
address: {
line1: '',
line2: '',
@ -264,11 +265,8 @@ export default {
}
})
},
getRemoteRegionList(query) {
query = {}
query.platform = 'OLFDE'
query.limit = 100
fetchRegionList(query).then(response => {
getRemoteRegionList() {
fetchRegionList().then(response => {
if (!response.data.regions) return
this.regionListOptions = response.data.regions.map(v => { return { name: v.name, id: v._id } })
})

View File

@ -34,9 +34,10 @@
<span>{{ scope.row.contactNumber }}</span>
</template>
</el-table-column>
<!-- <el-table-column v-if="$store.state.settings.platform === 'OLFDE'" align="center" label="Meta" width="200">
<!-- <el-table-column align="center" label="Status" width="200">
<template slot-scope="scope">
<span>{{ scope.row.meta }}</span>
<span v-if="scope.row.status === '100'">Enabled</span>
<span v-else>{{scope.row.status}}</span>
</template>
</el-table-column> -->