随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

140 lines
4.8KB

  1. // 示例demo
  2. const plugin = requirePlugin('ppScale-plugin')
  3. var app = getApp();
  4. Page({
  5. data: {
  6. deviceslist:[
  7. ],
  8. param: {
  9. appKey:"lefu7afd0a504245139b"
  10. }
  11. },
  12. onLoad() {
  13. },
  14. onUnload() {
  15. // 业务结束后需要调用此方法
  16. plugin.Blue.stop()
  17. },
  18. // 选择设备
  19. selItem: function(res) {
  20. var that = this;
  21. var devItem = res.currentTarget.dataset.item;
  22. var device = this.data.deviceslist.find(item => item.deviceId === devItem.deviceId)
  23. app.globalData.selmac = device;
  24. console.log("this.globalData",app.globalData.selmac)
  25. that.setData({
  26. selmac: device
  27. })
  28. },
  29. refresh: function(res) {
  30. // plugin.Blue.startBluetoothDevicesDiscovery();
  31. plugin.Blue.start([]);
  32. console.log("刷新", plugin);
  33. },
  34. doback: function(res) {
  35. if(app.globalData.selmac){
  36. wx.navigateTo({
  37. url: '/pages/devicedetail/index'
  38. })
  39. } else if(this.data.deviceslist.length <= 0) {
  40. wx.showModal({
  41. title: '温馨提示',
  42. content: `请打开手机蓝牙并且双脚站上蓝牙称扫描设备`,
  43. showCancel: false,
  44. })
  45. }else {
  46. wx.showModal({
  47. title: '温馨提示',
  48. content: `请选择上面要连接的设备`,
  49. showCancel: false,
  50. })
  51. console.log('请选择设备')
  52. }
  53. },
  54. doback2: function(res) {
  55. if(app.globalData.selmac){
  56. wx.navigateTo({
  57. url: '/pages/devicedetailfood/index'
  58. })
  59. }else {
  60. wx.showModal({
  61. title: '温馨提示',
  62. content: `请选择上面要连接的设备`,
  63. showCancel: false,
  64. })
  65. console.log('请选择设备')
  66. }
  67. },
  68. /**
  69. * 刷新token
  70. * @param {function} fn 获取token后执行函数
  71. * @param {boolean} flag 请求刷新token
  72. */
  73. async refreshToken(fn, flag) {
  74. let bodyToken = wx.getStorageSync('bodyToken');
  75. let bodyTokenTime = wx.getStorageSync('bodyTokenTime');
  76. if (!bodyToken || bodyTokenTime * 1000 < +new Date() || flag) {
  77. let res = await plugin.refreshToken({
  78. url: 'https://uniquehealth.lefuenergy.com',
  79. data: {
  80. "appSecret":"AlgH7XDNWG1nABz3LSKdhaYTFUdETSBmKL4pRmD5mS4=",
  81. "appKey": "lefu7afd0a504245139b"
  82. }
  83. });
  84. console.log("res", res);
  85. if (res.data.code == 200) {
  86. wx.setStorageSync('bodyToken', res.data.data.token);
  87. wx.setStorageSync('bodyTokenTime', res.data.data.expireTime);
  88. fn();
  89. }
  90. } else {
  91. fn();
  92. }
  93. },
  94. getDeviceSettingList(param) {
  95. let bodyToken = wx.getStorageSync('bodyToken');
  96. console.log("获取最新设备列表");
  97. console.log("param",param)
  98. plugin.getDeviceSettingList({
  99. url: 'https://uniquehealth.lefuenergy.com',
  100. data: param,
  101. header: {
  102. "token": bodyToken,
  103. "Accept-Language": wx.getStorageSync("lang") || 'zh'
  104. }
  105. }).then(this.handleResponse);
  106. },
  107. handleResponse(res) {
  108. if (res.data.code == 200) {
  109. // 配置蓝牙设备列表
  110. console.log("res.data.data",res.data.data)
  111. plugin.Blue.setDeviceSetting(res.data.data)
  112. } else if (res.data.code == 401) {
  113. // token过期 重新请求token解析数据
  114. this.refreshToken(() => {
  115. this.getDeviceSettingList(this.data.param)
  116. }, true);
  117. }
  118. },
  119. onShow() {
  120. // 高于1.0.5版本 如无法扫描设备 需请求获取并设置最新设备配置列表
  121. console.log("开始扫描周边设备");
  122. /* this.getDeviceSettingList(this.data.param) */
  123. plugin.Blue.setDeviceSetting([ { "createBy": null, "createTime": "2023-10-11 16:57:08", "updateBy": null, "updateTime": "2023-10-20 14:05:03", "remark": null, "id": 39, "deviceName": "LFSmart Scale", "sign": "CE4004", "advLength": 20, "macAddressStart": 7, "deviceConnectType": 2, "deviceType": 1, "deviceProtocolType": 2, "deviceCalcuteType": 3, "devicePowerType": 1, "deviceFuncType": 67, "deviceAccuracyType": 2, "deviceUnitType": "0,1,11", "calorieStatus": 1, "uhStatus": 1, "status": 0, "imgUrl": null },
  124. ])
  125. console.log("plugin.Blue",plugin)
  126. plugin.Blue.start([],false)
  127. // 获取扫描设备列表
  128. plugin.bus.subscribe("devicesList", (res) => {
  129. console.log("devicesList'", JSON.parse(JSON.stringify(res)))
  130. this.setData({
  131. deviceslist: res
  132. });
  133. });
  134. },
  135. })