1、打开 搜索
1
| elseif($ac=='memcached')
|
在其前面添加如下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| //莫科增加点播所需积分elseif($ac=='stint')
{if ($show ==1){echo '<input id="val" name="val" type="text" size="5"><input type="button" value="确定" onclick="ajaxsubmit(\''.$ac.'\',\''.$tab.'\',\''.$colid.'\',\''.$col.'\',\''.$id.'\');" class=input> <input type="button" value="取消" onclick="closew();" class=input>';
}else{
$db->query ("UPDATE {pre}".$tab . " set ". $col ."=".$val. " WHERE " . $colid ." IN(".$id.")" );echo "reload";
}
}//莫科增加下载所需积分elseif($ac=='stintdown')
{if ($show ==1){echo '<input id="val" name="val" type="text" size="5"><input type="button" value="确定" onclick="ajaxsubmit(\''.$ac.'\',\''.$tab.'\',\''.$colid.'\',\''.$col.'\',\''.$id.'\');" class=input> <input type="button" value="取消" onclick="closew();" class=input>';
}else{
$db->query ("UPDATE {pre}".$tab . " set ". $col ."=".$val. " WHERE " . $colid ." IN(".$id.")" );echo "reload";
}
}//莫科增加点播会员组elseif($ac=='Memb')
{if ($show==1){echo '<select id="val" name="val"><option value="">请选择会员组</option><option value="1">普通会员</option><option value="2">黄金会员</option></select><input type="button" value="确定" onclick="ajaxsubmit(\''.$ac.'\',\''.$tab.'\',\''.$colid.'\',\''.$col.'\',\''.$id.'\');" class=input><input type="button" value="取消" onclick="closew();" class=input>';
}else{
$db->query ("UPDATE {pre}".$tab . " set ". $col ."=".$val. " WHERE " . $colid ." IN(".$id.")" );echo "reload";
}
}elseif($ac=='memcached')
{
$host = be("all","host");
$port = be("all","port");
|
2、打开admin\tpl\html\vod_list.html修改两处 2.1搜索 1
2
3
4
5
6
7
8
9
10
11
12
13
14
| $("#btnMake").click(function(){
在其前面添加如下代码:
<!--莫科增加点播积分-->
$("#btnStint").click(function(){
ajaxshow('btnStint','stint','vod','d_id','d_stint','');
});
<!--莫科增加下载积分-->
$("#btnStintdown").click(function(){
ajaxshow('btnStintdown','stintdown','vod','d_id','d_stintdown','');
});
<!--莫科增加会员等级-->
$("#btnMemb").click(function(){
ajaxshow('btnMemb','Memb','vod','d_id','d_usergroup','');
});$("#btnMake").click(function(){
|
2.2搜索 1
| <input type="button" id="btnMake" value="生成" class="input">
|
在其后面添加
1
2
3
4
| <input type="button" id="btnMake" value="生成" class="input"><!--莫科增加点播下载积分-->
<input type="button" id="btnStint" value="点积分" class="input">
<input type="button" id="btnStintdown" value="下积分" class="input">
<input type="button" id="btnMemb" value="会员组" class="input">
|
上传即可
|