Skip to content

Commit

Permalink
修复问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zyx0814 committed Feb 26, 2022
1 parent 993185b commit 22d2a07
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dzz/billfish/class/class_billfishexport.php
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ public function check_file($total)
$iid = DB::result_first("select bid from %t where rid = %s and appid = %s",array('billfish_record',$rid,$this->appid));

if($this->version < 30){
$sql = "select count(s.id) as numsource s left join res_prop rp on s.id = rp.iid where rp.action =0 and s.id = $iid";
$sql = "select count(s.id) as num from source s left join res_prop rp on s.id = rp.iid where rp.action =0 and s.id = $iid";
}else{
//查询billfish中是否有该数据
$sql = "select count(f.id) as num from bf_file f left join bf_material m on f.id = m.file_id where m.is_recycle =0 and f.id = $iid";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
visible:false,
dpath:'',
data:[
{ name: '收藏',type:'collect' },
// { name: '收藏',type:'collect' },
{ name: '分享',type:'share' },
{ name: '下载',type:'down' },
]
Expand Down
2 changes: 1 addition & 1 deletion dzz/pichome/template/pc/components/headerAdmin/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<el-divider></el-divider>
<el-dropdown-item command="setting">站点设置</el-dropdown-item>
<el-dropdown-item command="library">库设置</el-dropdown-item>
<el-dropdown-item command="orguser">用户管理</el-dropdown-item>
<!-- <el-dropdown-item command="orguser">用户管理</el-dropdown-item> -->
<el-dropdown-item command="system">系统工具</el-dropdown-item>
<!--{/if}-->
<el-divider></el-divider>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<el-divider></el-divider>
<el-dropdown-item command="setting">站点设置</el-dropdown-item>
<el-dropdown-item command="library">库设置</el-dropdown-item>
<el-dropdown-item command="orguser">用户管理</el-dropdown-item>
<!-- <el-dropdown-item command="orguser">用户管理</el-dropdown-item> -->
<el-dropdown-item command="system">
<span style="position: relative;">
系统工具
Expand Down
2 changes: 1 addition & 1 deletion dzz/pichome/template/pc/page/library.htm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<el-divider></el-divider>
<el-dropdown-item command="setting">站点设置</el-dropdown-item>
<el-dropdown-item command="library">库设置</el-dropdown-item>
<el-dropdown-item command="orguser">用户管理</el-dropdown-item>
<!-- <el-dropdown-item command="orguser">用户管理</el-dropdown-item> -->
<el-dropdown-item command="system">系统工具</el-dropdown-item>
<el-divider></el-divider>
<el-dropdown-item command="about">关于PicHome</el-dropdown-item>
Expand Down

0 comments on commit 22d2a07

Please sign in to comment.