success.js 551 B

12345678910111213141516171819202122
  1. import {getOfficialAccounts} from "../../api/home"
  2. Page({
  3. data: {
  4. iconSize: [20, 30, 40, 50, 60, 70],
  5. iconColor: [
  6. 'red', 'orange', 'yellow', 'green', 'rgb(0,255,255)', 'blue', 'purple'
  7. ],
  8. iconType: [
  9. 'success', 'success_no_circle', 'info', 'warn', 'waiting', 'cancel', 'download', 'search', 'clear'
  10. ]
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad: function (options) {
  16. var app = getApp();
  17. console.log(app)
  18. getOfficialAccounts({}).then((res)=>{
  19. console.log(res)
  20. })
  21. }
  22. })