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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!-- $Id: brand_list.htm 15898 2009-05-04 07:25:41Z  $ -->
 
 
 
{if $full_page}
 
{include file="pageheader.htm"}
 
{insert_scripts files="../js/utils.js,listtable.js"}
 
<!-- 品牌搜索 -->
 
{include file="brand_search.htm"}
 
<form method="post" action="" name="listForm">
 
<!-- start brand list -->
 
<div class="list-div1" id="listDiv">
 
{/if}
 
 
 
  <table cellpadding="3" cellspacing="1">
 
    <tr>
 
      <th>{$lang.brand_name}</th>
 
      <th>{$lang.site_url}</th>
 
      <th>{$lang.brand_desc}</th>
 
      <th>{$lang.sort_order}</th>
 
      <th>{$lang.is_show}</th>
 
      <th>{$lang.handler}</th>
 
    </tr>
 
    {foreach from=$brand_list item=brand}
 
    <tr>
 
      <td class="first-cell">
 
        <span style="float:right; padding-top:10px;">{$brand.brand_logo}</span>
 
        <span onclick="javascript:listTable.edit(this, 'edit_brand_name', {$brand.brand_id})">{$brand.brand_name|escape:html}</span>
 
      </td>
 
      <td>{$brand.site_url}</td>
 
      <td align="left">{$brand.brand_desc|truncate:36}</td>
 
      <td align="right"><span onclick="javascript:listTable.edit(this, 'edit_sort_order', {$brand.brand_id})">{$brand.sort_order}</span></td>
 
      <td align="center"><img src="images/{if $brand.is_show}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_show', {$brand.brand_id})" /></td>
 
      <td align="center">
 
        <a href="brand.php?act=edit&id={$brand.brand_id}" title="{$lang.edit}">{$lang.edit}</a> |
 
        <a href="javascript:;" onclick="listTable.remove({$brand.brand_id}, '{$lang.drop_confirm}')" title="{$lang.edit}">{$lang.remove}</a> 
 
      </td>
 
    </tr>
 
    {foreachelse}
 
    <tr><td class="no-records" colspan="10">{$lang.no_records}</td></tr>
 
    {/foreach}
 
    <tr>
 
      <td align="right" nowrap="true" colspan="6">
 
      {include file="page.htm"}
 
      </td>
 
    </tr>
 
  </table>
 
 
 
{if $full_page}
 
<!-- end brand list -->
 
</div>
 
</form>
 
 
 
<script type="text/javascript" language="javascript">
 
  <!--
 
  listTable.recordCount = {$record_count};
 
  listTable.pageCount = {$page_count};
 
 
 
  {foreach from=$filter item=item key=key}
 
  listTable.filter.{$key} = '{$item}';
 
  {/foreach}
 
 
 
  {literal}
 
  onload = function()
 
  {
 
      // 开始检查订单
 
      startCheckOrder();
 
  }
 
  {/literal}
 
  //-->
 
</script>
 
{include file="pagefooter.htm"}
 
{/if}