Miniprogram: - Add back buttons to all custom-nav pages - Add debug/mock buttons (BLE connect, wear check, treatment) controlled by __DEV__ flag (hidden in prod) Admin console: - Fix log page using nonexistent fields (operator_type, target_type) now correctly reads admin_id/user_id/action/detail from API - Fix subscription date fields (started_at→start_time, expired_at→expire_time) - Wire up subscription detail/extend/renew action buttons - Wire up device detail "查看完整日志" button - Add "创建订阅" button to subscription toolbar - Fix subscription status mapping (2=expired, 3=cancelled) Docs: - Add detailed architecture docs for server, miniprogram, admin console
66 行
1.5 KiB
JavaScript
66 行
1.5 KiB
JavaScript
var ble = require('../../services/ble')
|
|
var config = require('../../config/env')
|
|
|
|
Page({
|
|
data: {
|
|
statusBarHeight: 44,
|
|
checking: false,
|
|
result: null,
|
|
error: '',
|
|
devMode: false
|
|
},
|
|
|
|
onBack: function () {
|
|
wx.navigateBack({
|
|
fail: function () {
|
|
wx.reLaunch({ url: '/pages/index/index' })
|
|
}
|
|
})
|
|
},
|
|
|
|
onLoad: function () {
|
|
var app = getApp()
|
|
this.setData({ statusBarHeight: app.globalData.statusBarHeight, devMode: config.__DEV__ || false })
|
|
},
|
|
|
|
onShow: function () {
|
|
this.checkWearing()
|
|
},
|
|
|
|
checkWearing: function () {
|
|
var self = this
|
|
self.setData({ checking: true, result: null, error: '' })
|
|
|
|
if (this._onStatus) ble.off('status', this._onStatus)
|
|
this._onStatus = function (status) {
|
|
self.setData({ checking: false })
|
|
if (status.bind_status === 1) {
|
|
self.setData({ result: 'ok' })
|
|
} else {
|
|
self.setData({ result: 'fail', error: '请确认设备已正确佩戴' })
|
|
}
|
|
}
|
|
ble.on('status', this._onStatus)
|
|
|
|
ble.queryStatus().catch(function (err) {
|
|
self.setData({ checking: false, result: 'fail', error: err.error_msg || '查询失败' })
|
|
})
|
|
},
|
|
|
|
onUnload: function () {
|
|
if (this._onStatus) ble.off('status', this._onStatus)
|
|
},
|
|
|
|
onNext: function () {
|
|
wx.navigateTo({ url: '/pages/treatment-setup/treatment-setup' })
|
|
},
|
|
|
|
onRetry: function () {
|
|
this.checkWearing()
|
|
},
|
|
|
|
onMockWearOk: function () {
|
|
this.setData({ checking: false, result: 'ok' })
|
|
}
|
|
})
|