fix: decodeURIComponent device_id in ble-connect to fix space matching
这个提交包含在:
@@ -23,8 +23,8 @@ Page({
|
||||
onLoad: function (options) {
|
||||
this.setData({ statusBarHeight: app.globalData.statusBarHeight })
|
||||
this.setData({
|
||||
deviceId: options.device_id || '',
|
||||
bindToken: options.bind_token || ''
|
||||
deviceId: decodeURIComponent(options.device_id || ''),
|
||||
bindToken: decodeURIComponent(options.bind_token || '')
|
||||
})
|
||||
this.startBleConnect()
|
||||
},
|
||||
|
||||
在新工单中引用
屏蔽一个用户