Made fuel type radio for uk, page refresh after closing popup
This commit is contained in:
parent
f7c2b15c46
commit
84a41f2276
|
@ -28,7 +28,7 @@
|
|||
<div v-else-if="viewState==='confirmation'">
|
||||
<i :class="confirmation.icon" :style="confirmation.iconStyle" />
|
||||
<p>{{ confirmation.text }}</p>
|
||||
<el-button @click="dialogVisible = false">
|
||||
<el-button @click="closePopup">
|
||||
Close
|
||||
</el-button>
|
||||
</div>
|
||||
|
@ -65,7 +65,6 @@ export default {
|
|||
isNameCorrect: true,
|
||||
input: '',
|
||||
viewState: 'input',
|
||||
Error: false,
|
||||
confirmation: {
|
||||
text: 'Request has been sent, waiting for a response from the servers',
|
||||
icon: 'el-icon-loading',
|
||||
|
@ -94,6 +93,10 @@ export default {
|
|||
iconStyle: 'font-size: 75px;'
|
||||
}
|
||||
},
|
||||
closePopup() {
|
||||
this.dialogVisible = false
|
||||
this.$emit('success', true)
|
||||
},
|
||||
checkAllSuccess() {
|
||||
return Object.keys(this.listObj).every(item => this.listObj[item].hasSuccess)
|
||||
},
|
||||
|
@ -121,14 +124,13 @@ export default {
|
|||
icon: 'el-icon-circle-check',
|
||||
iconStyle: 'font-size: 75px; color: green;'
|
||||
}
|
||||
this.$emit('success', true)
|
||||
} else if (!response || response === 'error') {
|
||||
this.confirmation = {
|
||||
text: `Error deleting ${this.item.name} form ${this.type}s list. Please refresh your page and try again. If the Error persists, please contact dev team`,
|
||||
icon: 'el-icon-circle-close',
|
||||
iconStyle: 'font-size: 75px; color: red;'
|
||||
|
||||
}
|
||||
this.$emit('success', false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -69,13 +69,26 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-row v-if="$store.state.settings.platform === "OLFDE"">
|
||||
<el-col :span="8">
|
||||
<el-form-item label-width="120px" label="Category" class="postInfo-container-item">
|
||||
<el-input v-model="postForm.meta.category" placeholder="Product Category" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-row v-else>
|
||||
<el-col :span="8">
|
||||
<el-form-item label-width="120px" label="Status" class="postInfo-container-item">
|
||||
<el-radio-group v-model="postForm.meta.category">
|
||||
<el-radio-button label="SPOT">SPOT</el-radio-button>
|
||||
<el-radio-button label="BUNKERING">BUNKERING</el-radio-button>
|
||||
<el-radio-button label="NOT4SALE">NOT4SALE</el-radio-button>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label-width="120px" label="Status" class="postInfo-container-item">
|
||||
|
|
Loading…
Reference in New Issue