added lorawan connector to the selection
This commit is contained in:
parent
efb555b1eb
commit
e5364865b8
1 changed files with 19 additions and 5 deletions
|
@ -73,15 +73,15 @@
|
|||
<b>Delivery Targets:</b>
|
||||
<v-btn color="success" @click="addDeliveryTarget()">Add</v-btn>
|
||||
<v-row v-for="(connector, index) in configData.pager.params.routing.connectors" :key="index">
|
||||
<v-col cols="6" sm="4" md="4">
|
||||
<v-text-field v-model="connector[0]" label="Connector Name"></v-text-field>
|
||||
<v-col cols="6" sm="4" md="4">
|
||||
<v-select :items="connectorTypes" v-model="connector[0]" item-text="k" item-value="v" label="Connector Name"></v-select>
|
||||
</v-col>
|
||||
<v-col cols="6" sm="4" md="4">
|
||||
<v-text-field v-model="connector[1]" label="Connector Param"></v-text-field>
|
||||
<v-text-field v-model="connector[1]" label="Connector Param"></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="6" sm="4" md="4">
|
||||
<v-btn color="error" @click="configData.pager.params.routing.connectors.splice(index, 1)" icon><v-icon>mdi-delete</v-icon></v-btn>
|
||||
</v-col>
|
||||
<v-btn color="error" @click="configData.pager.params.routing.connectors.splice(index, 1)" icon><v-icon>mdi-delete</v-icon></v-btn>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-btn color="success" @click="storeConfig()">Store & Restart</v-btn>
|
||||
|
@ -113,6 +113,20 @@
|
|||
{k: 'Generic', v: 'generic'},
|
||||
{k: 'Birdy Slim (IoT)', v: 'birdyslim'},
|
||||
],
|
||||
connectorTypes: [
|
||||
{k: 'Dummy', v: 'dummy'},
|
||||
{k: 'POCSAG GW', v: 'pocsag'},
|
||||
{k: 'DAPNET', v: 'dapnet'},
|
||||
|
||||
{k: 'e*Cityruf inetgw', v: 'ecityruf'},
|
||||
{k: 'e*Cityruf Puppeteer', v: 'em-p-cityruf'},
|
||||
{k: 'e*Cityruf alertManager', v: 'em-a-cityruf'},
|
||||
|
||||
{k: 'e*2wayS Puppeteer', v: 'em-p-twoways'},
|
||||
{k: 'e*2wayS alertManager', v: 'em-a-twoways'},
|
||||
|
||||
{k: 'LoRaWAN TTNv3', v: 'lorawan'},
|
||||
],
|
||||
configData: {
|
||||
"pager": {
|
||||
"url": "",
|
||||
|
|
Loading…
Add table
Reference in a new issue