app.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. // app.js
  2. let Nova = require("./utils/nova.js");
  3. const CONFIG = require("config.js");
  4. const request = require("./utils/request");
  5. const plugin = requirePlugin('fm-plugin')
  6. const { Parse } = plugin
  7. App({
  8. onLaunch() {
  9. // 展示本地存储能力
  10. const logs = wx.getStorageSync('logs') || []
  11. logs.unshift(Date.now())
  12. wx.setStorageSync('logs', logs)
  13. let extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {}
  14. if (extConfig && extConfig.company) {
  15. this.globalData.company = extConfig.company
  16. this.globalData.appid = extConfig.wxappid
  17. }
  18. let {
  19. model,
  20. platform,
  21. statusBarHeight,
  22. safeArea,
  23. screenHeight
  24. } = wx.getSystemInfoSync();
  25. this.globalData.platform = platform;
  26. this.globalData.statusBarHeight = statusBarHeight;
  27. this.globalData.safeArea = safeArea;
  28. this.globalData.screenHeight = screenHeight;
  29. this.globalData.isIpx = model.includes("iPhone X");
  30. let {
  31. system
  32. } = wx.getSystemInfoSync();
  33. let headHeight;
  34. if (/iphone\s{0,}x/i.test(model)) {
  35. headHeight = 88;
  36. } else if (system.indexOf("Android") !== -1) {
  37. headHeight = 68;
  38. } else {
  39. headHeight = 64;
  40. }
  41. this.globalData.headerHeight = headHeight;
  42. },
  43. Nova: Nova,
  44. Parse: Parse,
  45. JIMData: {
  46. convers: [],
  47. messages: {},
  48. },
  49. globalData: {
  50. userInfo: null,
  51. theme: CONFIG.default.theme,
  52. //腾讯地图的key
  53. tencentKey: CONFIG.default.tencentKey,
  54. // NovaCloud
  55. ncloud: request,
  56. // JMessage
  57. jmessage: CONFIG.default.jmessage,
  58. // We7
  59. api: CONFIG.default.api,
  60. approot: CONFIG.default.approot,
  61. // Tabbar
  62. defaultTabBar: CONFIG.default.defaultTabBar,
  63. // checkAuth
  64. appid: CONFIG.default.appid,
  65. company: CONFIG.default.company,
  66. rootPage: CONFIG.default.rootPage,
  67. appType: CONFIG.default.appType,
  68. //获取相关tabs的name
  69. moduleTab:CONFIG.default.moduleTab,
  70. },
  71. checkAuth: plugin.checkAuth,
  72. parseLogin(token){
  73. return Parse.User.become(token).then(async currentUser => {
  74. console.log(currentUser)
  75. resolve(currentUser)
  76. }).catch(err => {
  77. wx.setStorageSync("sessionToken", null);
  78. wx.showModal({
  79. title: '提示',
  80. content: '登录信息过期,请退出重新进入小程序',
  81. showCancel: false,
  82. cancelText: '取消',
  83. cancelColor: '#000000',
  84. confirmText: '确定',
  85. confirmColor: '#3CC51F',
  86. success: (result) => {
  87. if (result.confirm) {
  88. wx.exitMiniProgram()
  89. }
  90. },
  91. });
  92. rej(err)
  93. })
  94. },
  95. // checkAuth: async function (force = true) {
  96. // return new Promise(async (resolve,rej)=>{
  97. // let that = this;
  98. // // 0.检测是否开启各页面强制登陆
  99. // let enabledOptions = wx.getStorageSync("enabledOptions");
  100. // if (force || (enabledOptions && enabledOptions["check-auth"])) {
  101. // let invite = wx.getStorageSync('invite')
  102. // let token = wx.getStorageSync('sessionToken')
  103. // if(!token){
  104. // token = await this.getParseToken()
  105. // let userInfo = wx.getStorageSync("userInfo");
  106. // that.globalData.userInfo = userInfo
  107. // if(!token){
  108. // wx.showModal({
  109. // title: '提示',
  110. // content: '获取登录信息失败,请删除小程序重新进入',
  111. // showCancel: true,
  112. // cancelText: '取消',
  113. // cancelColor: '#000000',
  114. // confirmText: '确定',
  115. // confirmColor: '#3CC51F',
  116. // success: (result) => {
  117. // if(result.confirm){
  118. // wx.exitMiniProgram()
  119. // }
  120. // },
  121. // });
  122. // resolve(false)
  123. // return
  124. // }
  125. // }
  126. // Parse.User.become(token).then(async currentUser => {
  127. // console.log(currentUser)
  128. // if (invite && !currentUser.get('invite') && currentUser.id != invite && !currentUser.get('agentLevel')) {
  129. // //查询邀请人user,邀请人不能是自己的下级
  130. // let query = new Parse.Query("_User")
  131. // query.equalTo('objectId',invite)
  132. // query.select('invite')
  133. // let result = await query.first()
  134. // if (!(result && result.id && result.get("invite")?.id == currentUser.id)) {
  135. // console.log('上下级绑定成功');
  136. // currentUser.set('invite', {
  137. // __type: "Pointer",
  138. // className: "_User",
  139. // objectId: invite
  140. // })
  141. // currentUser.set('agent', {
  142. // __type: "Pointer",
  143. // className: "_User",
  144. // objectId: invite
  145. // })
  146. // await currentUser.save()
  147. // }
  148. // }
  149. // currentUser.get('mobile') ? wx.setStorageSync("userLogin", currentUser.id) : wx.removeStorageSync("userLogin");
  150. // resolve(currentUser)
  151. // return true
  152. // }).catch(err => {
  153. // wx.setStorageSync("sessionToken", null);
  154. // wx.showModal({
  155. // title: '提示',
  156. // content: '登录信息过期,请退出重新进入小程序',
  157. // showCancel: false,
  158. // cancelText: '取消',
  159. // cancelColor: '#000000',
  160. // confirmText: '确定',
  161. // confirmColor: '#3CC51F',
  162. // success: (result) => {
  163. // if(result.confirm){
  164. // wx.exitMiniProgram()
  165. // }
  166. // },
  167. // });
  168. // rej(err)
  169. // })
  170. // } else {
  171. // resolve(false)
  172. // }
  173. // })
  174. // },
  175. // async getParseToken(){
  176. // return new Promise((resolve, reject) => {
  177. // wx.login({
  178. // success: function (res) {
  179. // if (res.code) {
  180. // let url = 'https://server.fmode.cn/api/wxapp/login'
  181. // wx.request({
  182. // url: url,
  183. // data: {
  184. // companyId: getApp().globalData.company,
  185. // code: res.code,
  186. // appType: getApp().globalData.appType ? getApp().globalData.appType : ''
  187. // },
  188. // async success(res) {
  189. // console.log(res);
  190. // let data = res.data
  191. // if(data.code == 200){
  192. // wx.setStorageSync("sessionToken", data.data.token);
  193. // wx.setStorageSync("userInfo", data.data?.userInfo);
  194. // resolve(data.data.token)
  195. // }else{
  196. // resolve()
  197. // }
  198. // },
  199. // });
  200. // }
  201. // },
  202. // fail: function (err) {
  203. // console.warn('小程序wx.login失败');
  204. // resolve()
  205. // }
  206. // });
  207. // })
  208. // },
  209. //获取全局定位信息
  210. // async getLocationInfo(refrensh = false) {
  211. // let that = this;
  212. // let locationInfo = that.globalData.locationInfo;
  213. // if (locationInfo && !refrensh) {
  214. // return locationInfo;
  215. // } else {
  216. // let locationInfo = await util.getLocation();
  217. // that.globalData.locationInfo = locationInfo;
  218. // return locationInfo;
  219. // }
  220. // },
  221. onShow: function (options) {
  222. this.autoUpdate()
  223. let { referrerInfo } = options
  224. if(referrerInfo?.extraData?.status && referrerInfo.extraData.status == 'success'){
  225. getApp().globalData.merchant_trade_no = referrerInfo.extraData.req_extradata.merchant_trade_no
  226. }
  227. },
  228. autoUpdate() {
  229. let self = this
  230. if (wx.canIUse('getUpdateManager')) {
  231. const updateManager = wx.getUpdateManager()
  232. //1. 检查小程序是否有新版本发布
  233. updateManager.onCheckForUpdate(function (res) {
  234. // 请求完新版本信息的回调
  235. if (res.hasUpdate) {
  236. wx.showModal({
  237. title: '更新提示',
  238. content: '检测到新版本,是否下载新版本并重启小程序?',
  239. success: function (res) {
  240. if (res.confirm) {
  241. //2. 用户确定下载更新小程序,小程序下载及更新静默进行
  242. self.downLoadAndUpdate(updateManager)
  243. } else if (res.cancel) {
  244. //用户点击取消按钮的处理,强制更新
  245. wx.showModal({
  246. title: '温馨提示~',
  247. content: '本次版本更新涉及到新的功能添加,旧版本无法正常访问的哦~',
  248. showCancel: false,
  249. confirmText: "确定更新",
  250. success: function (res) {
  251. if (res.confirm) {
  252. //下载新版本,并重新应用
  253. self.downLoadAndUpdate(updateManager)
  254. }
  255. }
  256. })
  257. }
  258. }
  259. })
  260. }
  261. })
  262. } else {
  263. wx.showModal({
  264. title: '提示',
  265. content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
  266. })
  267. }
  268. },
  269. /**
  270. * 下载小程序新版本并重启应用
  271. */
  272. downLoadAndUpdate(updateManager) {
  273. wx.showLoading();
  274. //静默下载更新小程序新版本
  275. updateManager.onUpdateReady(function () {
  276. wx.hideLoading()
  277. //新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  278. updateManager.applyUpdate()
  279. })
  280. updateManager.onUpdateFailed(function () {
  281. // 新的版本下载失败
  282. wx.showModal({
  283. title: '已经有新版本了哟~',
  284. content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~',
  285. })
  286. })
  287. },
  288. onHide: function () {
  289. let pages = getCurrentPages()
  290. if (pages.length > 0) {
  291. let prevPage = pages[pages.length - 1]
  292. if (prevPage.route === 'nova-exam/pages/live-pusher/index') {
  293. prevPage.data.client.leave()
  294. prevPage.stop()
  295. prevPage.data.timer && clearInterval(prevPage.data.timer)
  296. wx.showModal({
  297. title: '提示',
  298. content: '考生将应用切换至后台,请重新进入',
  299. showCancel: false,
  300. success: (res) => {
  301. wx.navigateBack({
  302. delta: 1,
  303. })
  304. }
  305. });
  306. }
  307. }
  308. }
  309. })