Fix stage geometry URL

This commit is contained in:
Joel Collins 2020-10-16 14:41:34 +01:00
parent b2c6c93284
commit 157eb28053

View file

@ -10,11 +10,14 @@
<div> <div>
<select v-model="stageType" class="uk-select"> <select v-model="stageType" class="uk-select">
<option value="SangaStage">SangaStage (Standard)</option> <option value="SangaStage">SangaStage (Standard)</option>
<option value= "SangaDeltaStage"> SangaStage (Delta)</option> <option value="SangaDeltaStage"> SangaStage (Delta)</option>
</select> </select>
</div> </div>
<div> <div>
<button type="submit" class="uk-button uk-button-primary uk-form-small uk-float-right uk-margin-small uk-width-1-1"> <button
type="submit"
class="uk-button uk-button-primary uk-form-small uk-float-right uk-margin-small uk-width-1-1"
>
Change stage type Change stage type
</button> </button>
</div> </div>
@ -28,50 +31,49 @@
</template> </template>
<script> <script>
import axios from "axios"; import axios from "axios";
import taskSubmitter from "../../genericComponents/taskSubmitter"; import taskSubmitter from "../../genericComponents/taskSubmitter";
export default { export default {
name: "StageSettings", name: "StageSettings",
components:{ components: {
taskSubmitter taskSubmitter
}, },
data: function(){ data: function() {
return { return {
stageType: "MissingStage", stageType: "MissingStage"
} };
}, },
computed: { computed: {
stageTypeUri: function() { stageTypeUri: function() {
return `${this.$store.getters.baseUri}/api/v2/properties/stage/type`; return `${this.$store.getters.baseUri}/api/v2/instrument/stage/type`;
}, }
}, },
mounted(){ mounted() {
this.getStageType(); this.getStageType();
}, },
methods: { methods: {
getStageType: function(){ getStageType: function() {
console.log("Getting stage type") console.log("Getting stage type");
axios axios
.get(this.stageTypeUri) .get(this.stageTypeUri)
.then(response => { .then(response => {
console.log("Stage type is "+ response.data); console.log("Stage type is " + response.data);
this.stageType = response.data; this.stageType = response.data;
}) })
.catch(error => { .catch(error => {
this.modalError(error); this.modalError(error);
}); });
}, },
setStageType: function(){ setStageType: function() {
console.log("Setting stage type") console.log("Setting stage type");
axios axios
.put(this.stageTypeUri,this.stageType) .put(this.stageTypeUri, this.stageType)
.then(response => { .then(response => {
this.stageType = response.data; this.stageType = response.data;
console.log("Stage type set to " + this.stageType); console.log("Stage type set to " + this.stageType);
@ -82,7 +84,7 @@ export default {
}); });
} }
} }
} };
</script> </script>
<style lang="less"></style> <style lang="less"></style>