feat: add wehchat template message push

This commit is contained in:
engigu
2024-03-05 14:42:12 +08:00
parent 32c1c8ad76
commit 4388d08109
16 changed files with 277 additions and 24 deletions
+19
View File
@@ -84,6 +84,25 @@ const CONSTANT = {
taskInsInputs: [
],
},
{
type: 'WeChatOFAccount',
label: '微信测试公众号模板消息',
inputs: [
{ subLabel: 'appID', value: '', col: 'appID', desc: "公众号appid" },
{ subLabel: 'appsecret', value: '', col: 'appsecret', desc: "公众号appsecret" },
{ subLabel: '模板id', value: '', col: 'tempid', desc: "模板消息id" },
{ subLabel: '渠道名', value: '', col: 'name', desc: "想要设置的渠道名字" },
],
tips: {
text: "公众号消息说明", desc: "微信测试公众号模板消息发送,token使用内存缓存,<br />秘钥请访问 https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index"
},
taskInsRadios: [
{ subLabel: 'text', content: 'text' },
],
taskInsInputs: [
{ value: '', col: 'to_account', desc: "要发送的OpenId(登录微信公众号后台查看)" },
],
},
],
API_VIEW_DATA: [
{ label: "curl", class: "language-shell line-numbers", code: "", func: ApiStrGenerate.getCurlString },