0.0.8 • Published 3 years ago

enniot-lora-conf v0.0.8

Weekly downloads
10
License
ISC
Repository
-
Last release
3 years ago

目录结构

── enniot-lora-conf
    ├── LoraData.vue
    ├── README.md
    ├── lora-data.schema.json
    └── package.json

Props

参数说明类型可选值默认值
data用于将后台读取以及手动输入的数据填入 form 组件;设置默认值;object
isNC是否在 baseUrl 后加入后缀Booleantrue, falsefalse

Data

参数说明类型可选值默认值
id模块选择number
type模块类型string"CN470-510MHz""CN470-510MHz"
band_type频段类型string
power_combination功率组合number
mix_gain混合增益number
rf_power发射功率number
real_power实际功率number
channel_combination频点组合number

注意联动,id 是在刚刚进入页面的时候获取的,然后根据 id 来获取功率组合和频点组合,根据功率组合得到混合增益和发射功率,从而计算出实际功率。根据不同的频点组合得到不同信道的上下频点。

Usage

<template>
  <el-row
    :gutter="20">
    <el-col style="margin-top:30px;">
      <el-card class="grid-card" >
        <LoraData :data="this.loraData" />
      </el-card>
    </el-col>
  </el-row>
</template>

<script>
import LoraData from './LoraData.vue';
export default {
  components: {
    LoraData,
  },
  data() {
    return{
      loraData: {},
    }
  },
}
</script>
0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago