接口修改8

This commit is contained in:
mkm 2023-02-14 19:17:00 +08:00
parent 5a8cd73c6f
commit cf81c9f4eb
5 changed files with 68 additions and 39 deletions

View File

@ -45,9 +45,10 @@ class Index extends BaseController
public function main()
{
if ($this->adminInfo['group_access']==4){
return '
$street_id=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->value('street_id');
return <<<EOT
<div id="your-element-selector" style="height: 100%">
<a href="https://www.baidu.com" target="_blank" style="font-size: 100px;
<a href="http://localhost:8082?street_id=$street_id" target="_blank" style="font-size: 100px;
color: aliceblue;
display: block;
text-align: center;
@ -65,7 +66,8 @@ VANTA.WAVES({
scale: 1.00,
scaleMobile: 1.00
})
</script>';
</script>
EOT;
}
if ($this->adminInfo['id']!=1){
$find = Db::table('fa_szxc_information_useraddress')->where('user_id', $this->adminInfo['user_id'])->find();

View File

@ -45,7 +45,7 @@ class Merchant extends BaseController
foreach ($merchant_id as $k=>$v){
$arr[]=$v['mer_id'];
}
$list=Db::connect('shop')->name('merchant')->where('mer_id','in',$arr)->field('mer_id,mer_name,real_name,mark,create_time')->select();
$list=Db::connect('shop')->name('merchant')->where('mer_id','in',$arr)->field('mer_id,mer_name,real_name,mark,create_time,sales,mer_money,margin')->select();
}
$result = ['total' => $total, 'data' => $list];
return table_assign(0, '', $result);

View File

@ -50,6 +50,18 @@
field: 'real_name',
title: '商户姓名',
align: 'center',
},{
field: 'sales',
title: '销量',
align: 'center',
},{
field: 'mer_money',
title: '余额',
align: 'center',
},{
field: 'margin',
title: '保证金',
align: 'center',
},{
field: 'create_time',
title: '添加时间',

View File

@ -43,6 +43,10 @@
{$read.mer_phone}
</td>
</tr>
<tr>
<td class="layui-td-gray">店铺地址</td>
<td>{$read.mer_address}</td>
</tr>
</table>
</div>
</div>

View File

@ -348,12 +348,28 @@ class Statistics extends BaseController
//大学专科及以上
$num5 = Db::table('fa_szxc_information_usermsg')->where('education',75)->where($where)->count();
//不详
$num6 = Db::table('fa_szxc_information_usermsg')->where('education',76)->where($where)->count();
// $num6 = Db::table('fa_szxc_information_usermsg')->where('education',76)->where($where)->count();
$total = $num2 + $num3 + $num4 + $num5;
$bcdiv1 = bcmul(bcdiv($num2,$total,3),100,1);
$bcdiv2 = bcmul(bcdiv($num3,$total,3),100,1);
$bcdiv3 = bcmul(bcdiv($num4,$total,3),100,1);
$bcdiv4 = bcmul(bcdiv($num5,$total,3),100,1);
if ($num2!=0){
$bcdiv1 = bcmul(bcdiv($num2,$total,3),100,1);
}else{
$bcdiv1=0;
}
if ($num3!=0){
$bcdiv2 = bcmul(bcdiv($num3,$total,3),100,1);
}else{
$bcdiv2=0;
}
if ($num4!=0){
$bcdiv3 = bcmul(bcdiv($num4,$total,3),100,1);
}else{
$bcdiv3=0;
}
if ($num5!=0){
$bcdiv4 = bcmul(bcdiv($num5,$total,3),100,1);
}else{
$bcdiv4=0;
}
$return = [
// ['value'=>$num1,'name'=>'文盲及半文盲'],
['value'=>$num2,'name'=>'小学','bfb'=>$bcdiv1],
@ -685,15 +701,23 @@ class Statistics extends BaseController
if ($village_id){
$where[] = ['village_id', '=', $village_id];
}
$find=Db::connect('shop')->table('eb_merchant_address')->where($where)->limit(6)->select();
$count=Db::connect('shop')->table('eb_merchant_address')->where($where)->count();
$select=[];
if ($find){
foreach ($find as $k=>$v){
$arr[]=$v['mer_id'];
}
$select=Db::connect('shop')->table('eb_merchant')->where('mer_id','in',$arr)->field('mer_avatar value,mer_name name')->limit(6)->select();
}
$product_price=Db::connect('shop')->table('eb_product_order_log')->where($where)->sum('product_price');
$where[]=['group_id','=',14];
$user_product_price=Db::connect('shop')->table('eb_product_order_log')->where($where)->sum('product_price');
$return['msg'] = [['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'百合山药企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'通滩山药企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'百合土豆企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'云龙土豆企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'奇峰山药企业']];
$return['total'] = '62';
$return['xl'] = ['43','1.68'];
$return['cgl'] = ['24','1.21'];
$return['msg'] = $select;
$return['total'] = $count;
$return['xl'] = ['0',$product_price];
$return['cgl'] = ['0',$user_product_price];
$this->apiSuccess('获取成功',$return);
}
@ -754,15 +778,15 @@ class Statistics extends BaseController
//企业直播
public function get_num18($area_id=0,$street_id=0,$village_id=0){
$where = [];
// if ($area_id){
// $where[] = ['area_id', '=', $area_id];
// }
// if ($street_id){
// $where[] = ['street_id', '=', $street_id];
// }
// if ($village_id){
// $where[] = ['village_id', '=', $village_id];
// }
if ($area_id){
$where[] = ['area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['village_id', '=', $village_id];
}
$list = Db::connect('shop')->table('eb_broadcast_room')->field('room_id,name,cover_img,share_img,start_time,end_time,anchor_name,anchor_wechat,phone,live_status')->where($where)->select();
$this->apiSuccess('获取成功',$list);
@ -791,19 +815,6 @@ class Statistics extends BaseController
->where($where)
->select();
// 先给假数据
// $list = [
// ['mer_name'=>'得德店铺','category'=>'番茄,白菜','sales'=>'211','real_name'=>'赵德'],
// ['mer_name'=>'梦瑜店铺','category'=>'土豆,山药','sales'=>'365','real_name'=>'钱凯'],
// ['mer_name'=>'庆磊店铺','category'=>'玉米,萝卜','sales'=>'687','real_name'=>'孙佳镇'],
// ['mer_name'=>'先敬店铺','category'=>'鸡,鸭','sales'=>'456','real_name'=>'李需任'],
// ['mer_name'=>'葵魁店铺','category'=>'鱼,虾','sales'=>'527','real_name'=>'周开江'],
// ['mer_name'=>'泰盛店铺','category'=>'红薯,地瓜','sales'=>'369','real_name'=>'武艺'],
// ['mer_name'=>'瑞科店铺','category'=>'猪,羊','sales'=>'875','real_name'=>'郑成'],
// ['mer_name'=>'通骏店铺','category'=>'牛,鹅','sales'=>'489','real_name'=>'王爱国'],
// ['mer_name'=>'荫应店铺','category'=>'大米,小麦','sales'=>'702','real_name'=>'冯安康'],
// ['mer_name'=>'享翔店铺','category'=>'萝卜,白菜','sales'=>'635','real_name'=>'陈辰'],
// ];
$this->apiSuccess('获取成功',$list);
}