|
|
@ -10,7 +10,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="my-3">
|
|
|
|
<div class="my-3">
|
|
|
|
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
|
|
|
|
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
|
|
|
|
<select id="type" v-model="monitor.type" class="form-select" aria-label="Default select example">
|
|
|
|
<select id="type" v-model="monitor.type" class="form-select">
|
|
|
|
<option value="http">
|
|
|
|
<option value="http">
|
|
|
|
HTTP(s)
|
|
|
|
HTTP(s)
|
|
|
|
</option>
|
|
|
|
</option>
|
|
|
@ -190,7 +190,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
<NotificationDialog ref="notificationDialog" />
|
|
|
|
<NotificationDialog ref="notificationDialog" @added="addedNotification" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</transition>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -283,7 +283,7 @@ export default {
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
init() {
|
|
|
|
init() {
|
|
|
|
if (this.isAdd) {
|
|
|
|
if (this.isAdd) {
|
|
|
|
console.log("??????")
|
|
|
|
|
|
|
|
this.monitor = {
|
|
|
|
this.monitor = {
|
|
|
|
type: "http",
|
|
|
|
type: "http",
|
|
|
|
name: "",
|
|
|
|
name: "",
|
|
|
@ -338,6 +338,12 @@ export default {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Added a Notification Event
|
|
|
|
|
|
|
|
// Enable it if the notification is added in EditMonitor.vue
|
|
|
|
|
|
|
|
addedNotification(id) {
|
|
|
|
|
|
|
|
this.monitor.notificationIDList[id] = true;
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|