index.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. // pages/ucenter/index/index.js
  2. var app = getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. userInfo: {},
  9. isLogin: false
  10. },
  11. tologin(e) {
  12. let url = '/pages/login/login';
  13. wx.navigateTo({
  14. url
  15. });
  16. },
  17. toUserCenter(e){
  18. let url = '/pages/ucenter/center/center';
  19. wx.navigateTo({
  20. url
  21. });
  22. },
  23. logout(e){
  24. if (this.data.isLogin) {
  25. wx.clearStorageSync();
  26. wx.reLaunch({
  27. url: '/pages/index/index',
  28. });
  29. }
  30. },
  31. phoneCall(e){
  32. wx.makePhoneCall({
  33. phoneNumber: getApp().globalData.helpPhoneNum
  34. });
  35. },
  36. /**
  37. * 生命周期函数--监听页面加载
  38. */
  39. onLoad: function(options) {
  40. //wx.setNavigationBarTitle({
  41. // title: '个人中心'
  42. //})
  43. },
  44. /**
  45. * 生命周期函数--监听页面初次渲染完成
  46. */
  47. onReady: function() {
  48. },
  49. /**
  50. * 生命周期函数--监听页面显示
  51. */
  52. onShow: function() {
  53. let userInfo = wx.getStorageSync('userInfo');
  54. let isLogin = wx.getStorageSync('isLogin');
  55. // 页面显示
  56. if (userInfo && isLogin) {
  57. //userInfo.flag = true;
  58. this.setData({
  59. userInfo: userInfo,
  60. isLogin: isLogin
  61. });
  62. } else {
  63. //未登录信息
  64. this.setData({
  65. userInfo: {}
  66. });
  67. }
  68. },
  69. /**
  70. * 生命周期函数--监听页面隐藏
  71. */
  72. onHide: function() {
  73. },
  74. /**
  75. * 生命周期函数--监听页面卸载
  76. */
  77. onUnload: function() {
  78. },
  79. /**
  80. * 页面相关事件处理函数--监听用户下拉动作
  81. */
  82. onPullDownRefresh: function() {
  83. },
  84. /**
  85. * 页面上拉触底事件的处理函数
  86. */
  87. onReachBottom: function() {
  88. },
  89. /**
  90. * 用户点击右上角分享
  91. */
  92. onShareAppMessage: function() {
  93. },
  94. goCharginglog(e) {
  95. if (!this.data.isLogin) {
  96. let url = `/pages/login/login`;
  97. wx.navigateTo({
  98. url
  99. });
  100. return;
  101. }
  102. let url = '/pages/ucenter/charginglog/charginglog'
  103. wx.navigateTo({
  104. url
  105. });
  106. },
  107. goChargemoneylog(e) {
  108. if (!this.data.isLogin) {
  109. let url = `/pages/login/login`;
  110. wx.navigateTo({
  111. url
  112. });
  113. return;
  114. }
  115. let url = '/pages/ucenter/chargemoneylog/chargemoneylog'
  116. wx.navigateTo({
  117. url
  118. });
  119. },
  120. goPurse(e) {
  121. if (!this.data.isLogin) {
  122. let url = `/pages/login/login`;
  123. wx.navigateTo({
  124. url
  125. });
  126. return;
  127. }
  128. let url = '/pages/ucenter/purse/purse'
  129. wx.navigateTo({
  130. url
  131. });
  132. },
  133. goMyChargeSation(e) {
  134. let url = '/pages/ucenter/mychargestation/mychargestation'
  135. wx.navigateTo({
  136. url
  137. });
  138. },
  139. goChargpileMonitor(e) {
  140. let url = '/pages/ucenter/chargpilemonitor/chargpilemonitor'
  141. wx.navigateTo({
  142. url
  143. });
  144. },
  145. goMyWorksheet(e) {
  146. let url = '/pages/ucenter/myworksheet/myworksheet'
  147. wx.navigateTo({
  148. url
  149. });
  150. },
  151. goHelp(){
  152. // wx.downloadFile({
  153. // //url: getApp().globalData.postHeadAgreement + '/restapi/wechat/updateUser',//要预览的PDF的地址
  154. // url: 'http://localhost:8080/aiconfig/index/downloadTest',//要预览的PDF的地址
  155. // success: function (res) {
  156. // console.log(res);
  157. // if (res.statusCode === 200) { //成功
  158. // var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用
  159. // wx.openDocument({
  160. // filePath: Path, //要打开的文件路径
  161. // success: function (res) {
  162. // console.log('打开PDF成功');
  163. // }
  164. // });
  165. // }
  166. // },
  167. // fail: function (res) {
  168. // console.log(res); //失败
  169. // }
  170. // });
  171. },
  172. goNotice(){
  173. if (!this.data.isLogin) {
  174. let url = `/pages/login/login`;
  175. wx.navigateTo({
  176. url
  177. });
  178. return;
  179. }
  180. let url = '/pages/ucenter/notice/notice'
  181. wx.navigateTo({
  182. url
  183. });
  184. },
  185. /*,
  186. goLogin: function() {
  187. wx.navigateTo({
  188. url: '/pages/auth/tologin/tologin?from=ucenter',
  189. })
  190. },
  191. callService: function () {
  192. wx.makePhoneCall({
  193. phoneNumber: '17621230884'
  194. })
  195. },
  196. afterSale: function () {
  197. wx.showModal({
  198. title: '提示',
  199. content: '请在官网或APP中申请售后',
  200. showCancel: false,
  201. confirmColor: '#b4282d',
  202. success: function (res) {
  203. if (res.confirm) {
  204. console.log('用户点击确定')
  205. } else if (res.cancel) {
  206. console.log('用户点击取消')
  207. }
  208. }
  209. })
  210. },
  211. toLogin: function () {
  212. wx.navigateTo({
  213. url: '/pages/auth/tologin/tologin',
  214. })
  215. },
  216. toOrder: function () {
  217. if (this.data.isLogin) {
  218. wx.navigateTo({
  219. url: '/pages/ucenter/order/order',
  220. })
  221. } else {
  222. this.toLogin()
  223. }
  224. },
  225. toCoupon: function () {
  226. if (this.data.isLogin) {
  227. wx.navigateTo({
  228. url: '/pages/ucenter/coupon/coupon',
  229. })
  230. } else {
  231. this.toLogin()
  232. }
  233. },
  234. toAddress: function () {
  235. if (this.data.isLogin) {
  236. wx.navigateTo({
  237. url: '/pages/ucenter/address/address',
  238. })
  239. } else {
  240. this.toLogin()
  241. }
  242. }*/
  243. })