* @description 推送消息
(options)
| 2233 | * @description 推送消息 |
| 2234 | */ |
| 2235 | async function pushMessage(options) { |
| 2236 | // 选项 |
| 2237 | const { title, content, template, fromToken, toToken } = options; |
| 2238 | // 推送 |
| 2239 | const res = await pushPlus(fromToken, title, content, template, toToken); |
| 2240 | return res; |
| 2241 | } |
| 2242 | /** |
| 2243 | * @description 推送模态框 |
| 2244 | */ |