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
43 行
1.1 KiB
JavaScript
43 行
1.1 KiB
JavaScript
Page({
|
|
data: {
|
|
statusBarHeight: 44,
|
|
planName: '年卡会员',
|
|
expiryDate: ''
|
|
},
|
|
|
|
onBack: function () {
|
|
wx.navigateBack({
|
|
fail: function () {
|
|
wx.reLaunch({ url: '/pages/index/index' })
|
|
}
|
|
})
|
|
},
|
|
|
|
onLoad: function (options) {
|
|
var app = getApp()
|
|
this.setData({ statusBarHeight: app.globalData.statusBarHeight })
|
|
|
|
var planMap = { yearly: '年卡会员', monthly: '月卡会员', trial: '试用会员' }
|
|
var durationMap = { yearly: 365, monthly: 30, trial: 7 }
|
|
var plan = options.plan || 'yearly'
|
|
|
|
var now = new Date()
|
|
now.setDate(now.getDate() + (durationMap[plan] || 365))
|
|
var y = now.getFullYear()
|
|
var m = ('0' + (now.getMonth() + 1)).slice(-2)
|
|
var d = ('0' + now.getDate()).slice(-2)
|
|
this.setData({
|
|
planName: planMap[plan] || '会员',
|
|
expiryDate: y + '年' + m + '月' + d + '日'
|
|
})
|
|
},
|
|
|
|
onStartSmart: function () {
|
|
wx.navigateTo({ url: '/pages/wear-check/wear-check' })
|
|
},
|
|
|
|
onBackHome: function () {
|
|
wx.switchTab({ url: '/pages/index/index' })
|
|
}
|
|
})
|