|
@@ -0,0 +1,66 @@
|
|
|
+<template>
|
|
|
+ <div class="event-log">
|
|
|
+ <div class="configuration-title">Network Link Configuration</div>
|
|
|
+ <div class="configuration-text">Manage network link settings of the device.</div>
|
|
|
+ <div class="event-log-form">
|
|
|
+ <Form :model="formEventLog" label-position="left" :label-width="150">
|
|
|
+ <div class="configuration-subtitle"></div>
|
|
|
+ <FormItem label="LAN Interface">
|
|
|
+ <Select v-model="formEventLog.LANInterface" style="width: 200px;">
|
|
|
+ </Select>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem label="Auto Negotiation">
|
|
|
+ <RadioGroup v-model="formEventLog.AutoNegotiation">
|
|
|
+ <Radio label="0">ON</Radio>
|
|
|
+ <Radio label="1">OFF</Radio>
|
|
|
+ </RadioGroup>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem label="Link Speed">
|
|
|
+ <Select v-model="formEventLog.LinkSpeed" style="width: 200px;">
|
|
|
+ </Select>
|
|
|
+ </FormItem>
|
|
|
+ <FormItem label="Duplex Mode" >
|
|
|
+ <Select v-model="formEventLog.DuplexMode" style="width: 200px;">
|
|
|
+ </Select>
|
|
|
+ </FormItem>
|
|
|
+ </Form>
|
|
|
+ </div>
|
|
|
+ <div class="configuration-btn-right">
|
|
|
+ <Button type="primary" style="margin-right: 10px;">Save</Button>
|
|
|
+ <Button type="primary">Reset</Button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ name: "NetworkLink",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ formEventLog: {
|
|
|
+ LANInterface: '',
|
|
|
+ AutoNegotiation: '0',
|
|
|
+ LinkSpeed: '',
|
|
|
+ DuplexMode: '',
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .event-log-form {
|
|
|
+ padding-left: 30px;
|
|
|
+ .configuration-subtitle {
|
|
|
+ font-size: 14px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .configuration-btn-right {
|
|
|
+ border-top: 1px solid #000;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|