bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{include file="pageheader.htm"}
 
{insert_scripts files="../js/utils.js,listtable.js"}
 
<script type="text/javascript" src="../js/calendar.php"></script>
 
<link href="../js/calendar/calendar.css" rel="stylesheet" type="text/css" />
 
<div id="tabbody-div">
 
<form name="theForm" method="post" action="weixin.php?act=news&id={$corn.id}">
 
  <table width="100%" cellpadding="3" cellspacing="1">
 
  <tbody>
 
  <tr><th colspan="2" align="center">给用户推送消息</th></tr>
 
 <tr>
 
    <td class="label">消息类型:</td>
 
    <td>
 
    <select name="msgtype">
 
        <option value="1" {if $msgtype eq 'news'}selected{/if}>系统文章</option>
 
        <option value="2" {if $msgtype eq 'text'}selected{/if}>自定义文本</option>
 
    </select>
 
    </td>
 
  </tr>
 
  <!--
 
  <tr>
 
    <td class="label">推送时间:</td>
 
    <td><input type="text" name="sendtime" size="25" id="sendtime" value="{$sendymd}"><input name="selbtn1" type="button" id="selbtn1" onclick="return showCalendar('sendtime', '%Y-%m-%d %H:00:00', false, false, 'selbtn1');" value="选择" class="button"/></td>
 
  </tr>
 
  -->
 
  <tr>
 
    <td class="label">要推送的文章编号或者自定义内容:</td>
 
    <td><textarea name="artid" rows="5" cols="40">{$artid}</textarea><br />选择系统文章直接填写文章编号多个使用“,”分割。<br />选择自定义文本直接输入内容即可(支持超链接)。</td>
 
  </tr>
 
  <tr>
 
    <td colspan="2" align="center">
 
      <input type="submit" value="{$lang.button_submit}" class="button" />
 
    <input type="reset" value="{$lang.button_reset}" class="button" />
 
    </td>
 
  </tr>
 
</tbody></table>
 
</form>
 
</div>
 
{/literal}
 
{include file="pagefooter.htm"}