12345678910111213141516171819202122232425262728293031323334353637 |
- <div class="tipbox tipbox-message mb5">
- <span class="fn-fb">友情提示:<br /></span>
- 1、公众号必须是服务号,开通前请先申请开通微信公众号的模板消息插件,<br />
- 2、申请行业<span class="blue">IT科技-互联网|电子商务</span>,<br />
- 3、请自行查找对应模板消息编号<span class="blue">(可在【微信公众号->模板消息->模板库】中搜索下面标题查找)</span>,添加到我的模板,<br />
- 4、通知的模板消息对象必须是已在小程序端绑定公众号帐号的用户,未绑定用户不通知。
- </div>
- <form id="form" action="{:url('setting/tplmsg')}">
- <table class="formtable">
- <tr>
- <th>支付成功通知:</th>
- <td>
- <input autocomplete="off" class="input w400" datatype="*" type="text" name="tplmsg_order" value="{$config.tplmsg_order}" />
- <span class="gray">模板消息编号:OPENTM402074550,用于商家收款通知</span>
- </td>
- </tr>
- <tr>
- <th>兑换成功通知:</th>
- <td>
- <input autocomplete="off" class="input w400" datatype="*" type="text" name="tplmsg_point" value="{$config.tplmsg_point}" />
- <span class="gray">模板消息编号:OPENTM405776501,用于积分成功兑换商品通知</span>
- </td>
- </tr>
- <tr><th></th>
- <td>
- <input type="submit" value="确定" class="button submit" />
- <input type="reset" value="重置" class="button button-blank" />
- </td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- Do('base', 'layer', 'form', function () {
- $('#form').isForm();
- })
- </script>
|