// 操作說明
contents.push({
"type": "button",
"style": 'secondary',
"margin": "md",
"height": "sm",
"action": {
"type": "message",
"label": `操作說明`,
"text": `請做一次「更新好友資料」
之後就可以執行「商品訂購」的選單。`
}
});
// 更新好友資料
uri = global.url + `?op=form_update_user&userId=${userData.userId}&replyToken=${userData.replyToken}`;
contents.push(
{
"type": "button",
"style": "primary",
"margin": "md",
"height": "sm",
"action": {
"type": "uri",
"label": "更新好友資料",
"uri": uri
}
});
// 商品訂購
uri = `${global.url}?&userId=${userData.userId}`;
contents.push(
{
"type": "button",
"style": "primary",
"margin": "md",
"height": "sm",
"action": {
"type": "uri",
"label": "商品訂購",
"uri": uri
}
});