"errMsg": "addPhoneCalendar:fail parameter error: parameter.signature should be String instead of Undefined;"
wx.addPhoneCalendar({
title: '会议提醒',
description: '下午3点的团队会议',
startTime: new Date().getTime() / 1000,
path: '/pages/eventDetail/eventDetail?id=123', // 这里填写你要跳转的页面路径和参数
success: function(res) {
console.log('添加日历事件成功', res);
},
fail: function(err) {
console.error('添加日历事件失败', err);
}
});
