12345678910111213141516171819202122 |
- import {getOfficialAccounts} from "../../api/home"
- Page({
- data: {
- iconSize: [20, 30, 40, 50, 60, 70],
- iconColor: [
- 'red', 'orange', 'yellow', 'green', 'rgb(0,255,255)', 'blue', 'purple'
- ],
- iconType: [
- 'success', 'success_no_circle', 'info', 'warn', 'waiting', 'cancel', 'download', 'search', 'clear'
- ]
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var app = getApp();
- console.log(app)
- getOfficialAccounts({}).then((res)=>{
- console.log(res)
- })
- }
- })
|