小程序链接助手

floow.js 675B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // pages/floow/floow.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. follow_us_url: ''
  9. },
  10. onLoad() {
  11. this.getUrl();
  12. },
  13. getUrl(type) {
  14. wx.showLoading({
  15. title: '加载中',
  16. })
  17. app.func.req('/api/app/config', 'get', {
  18. 'version': '1.0.1'
  19. }, (res) => {
  20. wx.hideLoading()
  21. if(res && res.errno == 0){
  22. this.setData({
  23. follow_us_url: res.rst.follow_us_url
  24. })
  25. }else {
  26. wx.showToast({
  27. title: res.err,
  28. icon: 'none',
  29. duration: 2000
  30. })
  31. }
  32. },()=>{
  33. wx.hideLoading()
  34. })
  35. },
  36. onShareAppMessage() {
  37. }
  38. })