// index.js // 获取应用实例 const app = getApp() const { formatTime } = require('../../utils/util') function add(x, y) { return x + y } console.log('page index') Page({ data: { x: 1, y: 1, address: { province: '黑龙江', city: '哈尔滨', district: '松北', community: '地中海' }, color: 'hotpink', fontSize: '20px', time: formatTime(new Date()), // total: add(x, y) }, onLoad() { // var newTime = formatTime(new Date()) // console.log(newTime) // this.setData({ // time: newTime // })、 console.log(app.globalData.shareData) }, })