mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-01 02:41:42 +00:00
work on system settings page
This commit is contained in:
@@ -1,6 +1,19 @@
|
||||
<template>
|
||||
<div id="SystemTab">
|
||||
<chInputNumber title="Enter Team Number" v-model="TeamVal" v-on:input="onChange(TeamVal)"></chInputNumber>
|
||||
<chInputNumber title="Enter Team Number" Xkey="teamValue"></chInputNumber>
|
||||
<Divider class="divdiv" orientation="left">Networking</Divider>
|
||||
<div>
|
||||
<RadioGroup v-model="lan" style="display: flex;">
|
||||
<Radio label="DHCP"></Radio>
|
||||
<Radio label="Static"></Radio>
|
||||
</RadioGroup>
|
||||
<!--
|
||||
ip
|
||||
subnetmask
|
||||
gateway
|
||||
|
||||
hostname -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -10,20 +23,25 @@
|
||||
name: 'SystemTab',
|
||||
data() {
|
||||
return {
|
||||
TeamVal
|
||||
lan:0
|
||||
}
|
||||
},
|
||||
components:{
|
||||
chInputNumber
|
||||
},
|
||||
methods: {
|
||||
onChange(i) {
|
||||
console.log(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="" scoped>
|
||||
|
||||
<style>
|
||||
|
||||
.ivu-divider-inner-text{
|
||||
color: aliceblue
|
||||
}
|
||||
.ivu-radio-group {
|
||||
display: flex;
|
||||
text-align: left;
|
||||
color: aliceblue;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user