import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: { nowInput:'', lateSend: 100,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s) lateSendBtn: 10,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s) equipmentList: [],//当前账户施肥设备 equipmentIndex: 1,//当前在第几个设备 equipmentName: null,//当前设备 小设备的各个名字 nameList: ['One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten', 'Elven', 'Twelve', 'Thirteen', 'Fourteen', 'Fifteen', 'Sixteen'], formulaNum: [16, 48, 80, 112, 144, 176, 208, 240], ControlData:null,//控制器五方数据 activeNames:[],//组件内active //label是名称 //value是code码 //countType计算类型 0是原数据 1是原数据-400 2是原数据/10 3是(原数据-400) / 10 4是(原数据-1000)/10 typeList: [ { label: '无意义的传感器', value: 0, countType: 0,unit:'' }, { label: '空气温度', value: 1, countType: 3,unit:'℃' }, { label: '空气湿度', value: 2, countType: 2,unit:'%' }, { label: '光亮度', value: 3, countType: 2,unit:'Klux' }, { label: '二氧化碳', value: 4, countType: 0,unit:'ppm' }, { label: '土壤温度', value: 5, countType: 3,unit:'℃' }, { label: '土壤湿度', value: 6, countType: 2,unit:'%' }, { label: '水温', value: 7, countType: 3,unit:'℃' }, { label: '水肥PH', value: 8, countType: 2,unit:'' }, { label: '水肥EC', value: 9, countType: 2,unit:'mS/cm' }, { label: '压差', value: 10, countType: 0,unit:'Pa' }, { label: '风速', value: 11, countType: 2,unit:'m/s' }, { label: '风向', value: 12, countType: 0,unit:'°' }, { label: '雨雪信号', value: 13, countType: 0,unit:'' }, { label: '降雨量', value: 14, countType: 2,unit:'mm' }, { label: '光合有效辐射', value: 15, countType: 2,unit:'umol/m2.s' }, { label: '太阳总辐射', value: 16, countType: 0,unit:'W/m2' }, { label: '流量', value: 17, countType: 0,unit:'L/H' }, { label: '大气压强', value: 18, countType: 2,unit:'KPa' }, { label: '土壤PH', value: 19, countType: 2,unit:'' }, { label: '土壤EC', value: 20, countType: 0,unit:'uS/cm' }, { label: '叶面温度', value: 21, countType: 3,unit:'℃' }, { label: '叶面湿度', value: 22, countType: 2,unit:'%' }, { label: '果实直径', value: 23, countType: 0,unit:'mm' }, { label: '茎秆直径', value: 24, countType: 0,unit:'mm' }, { label: '流速', value: 25, countType: 2,unit:'m/s' }, { label: '瞬时流量', value: 26, countType: 2,unit:'m³/H' }, { label: '当日流量', value: 27, countType: 2,unit:'T' }, { label: '累计流量', value: 28, countType: 0,unit:'T' }, { label: '无线气象站电池电压', value: 29, countType: 2,unit:'V' }, { label: '无线气象站无线信号强度', value: 30, countType: 1,unit:'dBm' }, { label: '无线气象站信噪比(SNR)', value: 31, countType: 1,unit:'dB' }, { label: 'PM1.0', value: 32, countType: 0,unit:'μg/m³' }, { label: 'PM2.5', value: 33, countType: 0,unit:'μg/m³' }, { label: 'PM10', value: 34, countType: 0,unit:'μg/m³' }, { label: '紫外辐射', value: 35, countType: 0,unit:'W/m2' }, { label: '蒸发量', value: 36, countType: 2,unit:'mm' }, { label: '负氧离子', value: 37, countType: 0,unit:'个/cm3' }, { label: '露点温度', value: 38, countType: 3,unit:'℃' }, { label: '设备电压', value: 39, countType: 2,unit:'V' }, { label: '设备电流', value: 40, countType: 2,unit:'A' }, { label: '土壤氮含量', value: 41, countType: 0,unit:'mg/kg' }, { label: '土壤磷含量', value: 42, countType: 0,unit:'mg/kg' }, { label: '土壤钾含量', value: 43, countType: 0,unit:'mg/kg' }, { label: '管道压力', value: 44, countType: 0,unit:'Kpa' }, { label: '一氧化碳', value: 45, countType: 0,unit:'ppm' }, { label: '氨气', value: 46, countType: 0,unit:'ppm' }, { label: '硫化氢', value: 47, countType: 0,unit:'ppm' }, { label: '氧气', value: 48, countType: 2,unit:'%vol' }, { label: '土壤张力', value: 49, countType: 4,unit:'KPa' }, { label: '铜(CU)', value: 50, countType: 0,unit:'mg/kg' }, { label: '镉(CD)', value: 51, countType: 2,unit:'mg/kg' }, { label: '铅(PB)', value: 52, countType: 0,unit:'mg/kg' }, { label: '噪声', value: 53, countType: 0,unit:'dB' }, { label: '叶面面积', value: 54, countType: 0,unit:'mm' }, { label: '虫数量', value: 55, countType: 0,unit:'个' }, { label: '无线传感器电池电压', value: 56, countType: 2,unit:'V' }, { label: '无线传感器无线信号强度', value: 57, countType: 1,unit:'dBm' }, { label: '无线传感器信噪比(SNR)', value: 58, countType: 1,unit:'dB' }, ] }, getters: { }, mutations: { }, actions: { }, modules: { } })