当前位置:Gxlcms > PHP教程 > thinkphp我的订单1个订单号对应多个商品

thinkphp我的订单1个订单号对应多个商品

时间:2021-07-01 10:21:17 帮助过:16人阅读

要实现的效果图:





Thinkphp 代码:
public function myorder(){
$obj = M();
$sql = "select GROUP_CONCAT(oc.courseList_id ORDER BY oc.courseList_id DESC) AS courseList,o.order_id,o.user_id,o.user_name,o.number,o.orderTime,o.status,o.amount,oc.courseList_id from tb_order as o inner join tb_order_courselist as oc on o.order_id=oc.order_id where o.user_id=".$_SESSION['user_id']." group by o.order_id order by o.order_id desc";
$orderData = $obj->query($sql);
foreach ($orderData as $value){
$sql_list = "select * from tb_order_courseList where courseList_id in(".$value['courseList'].")";
$course_list = $obj->query($sql_list);

}

$this->assign("courseList",$course_list);
$this->assign("orderData",$orderData);
$this->display();
}

模板代码:

我的订单



课程信息
视频时长
单价
订单金额
订单状态

操作




<{$order.orderTime}> 订单编号:<{$order.number}>

















图片描述<{$list.course_name}>

授课老师:

<{$list.teacher_names|mb_substr=0,5,'utf-8'}>

有效期:

<{$list.valid}>




<{$list.lessonTime}>分钟 ¥<{$list.course_price}> ¥<{$order.amount}> 未付款已付款 删除 立即付款





回复讨论(解决方案)

前端遍历数据问题

订单表关联订单产品表

order_info 和 order_goods
得出结果集,遍历循环

订单表关联订单产品表

order_info 和 order_goods
得出结果集,遍历循环




我已得出结果集 就是前端遍历出现问题 是个table 怎么玩?

可以先计算订单商品条目数量然后合并单元格之类的

我已经弄出来了,放弃了table,用DIV排的,现在没问题了,,分还是分给大家吧,

人气教程排行