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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!-- $Id: template_library.htm 14216 2008-03-10 02:27:21Z  $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<form method="post" onsubmit="return false">
<div class="form-div">
  {$lang.select_library}
  <select id="selLib" onchange="loadLibrary()">{$curr_template}
    {html_options options=$libraries selected="$curr_library"}
  </select>
</div>
 
<div class="main-div">
  <div class="button-div ">
  <textarea id="libContent" rows="20" style="font-family: Courier New; width:95%">{$library_html|escape:html}</textarea>
    <input type="button" value="{$lang.button_submit}" class="button" onclick="updateLibrary()" />
    <input type="button" value="{$lang.button_restore}" class="button" onclick="restoreLibrary()" />
  </div>
</div>
</form>
<script language="JavaScript">
<!--
{literal}
 
var currLibrary = "{$curr_library}";
var content = '';
onload = function()
{
    document.getElementById('libContent').focus();
    // 开始检查订单
    startCheckOrder();
}
 
/**
 * 载入库项目内容
 */
function loadLibrary()
{
    curContent = document.getElementById('libContent').value;
 
    if (content != curContent && content != '')
    {
        if (!confirm(save_confirm))
        {
            return;
        }
    }
 
    selLib  = document.getElementById('selLib');
    currLib = selLib.options[selLib.selectedIndex].value;
 
    Ajax.call('template.php?is_ajax=1&act=load_library', 'lib='+ currLib, loadLibraryResponse, "GET", "JSON");
}
 
/**
 * 还原库项目内容
 */
function restoreLibrary()
{
    selLib  = document.getElementById('selLib');
    currLib = selLib.options[selLib.selectedIndex].value;
 
    Ajax.call('template.php?is_ajax=1&act=restore_library', "lib="+currLib, loadLibraryResponse, "GET", "JSON");
}
 
/**
 * 处理载入的反馈信息
 */
function loadLibraryResponse(result)
{
    if (result.error == 0)
    {
        document.getElementById('libContent').value=result.content;
    }
 
    if (result.message.length > 0)
    {
      alert(result.message);
    }
}
 
/**
 * 更新库项目内容
 */
function updateLibrary()
{
    selLib  = document.getElementById('selLib');
    currLib = selLib.options[selLib.selectedIndex].value;
    content = document.getElementById('libContent').value;
 
    if (Utils.trim(content) == "")
    {
        alert(empty_content);
        return;
    }
    Ajax.call('template.php?act=update_library&is_ajax=1', 'lib=' + currLib + "&html=" + encodeURIComponent(content), updateLibraryResponse, "POST", "JSON");
}
 
/**
 * 处理更新的反馈信息
 */
function updateLibraryResponse(result)
{
  if (result.message.length > 0)
  {
    alert(result.message);
  }
}
{/literal}
//-->
</script>
{include file="pagefooter.htm"}