1.提交缺失的东西

This commit is contained in:
2025-09-04 15:22:56 +08:00
parent dd2b423e7d
commit 6062156d73
2 changed files with 8 additions and 2 deletions

View File

@ -926,7 +926,11 @@ class OrderLogic extends LogicBase
}
public static function getYuyueTime($data){
return Db::name("order_yuyetime")->where("store_id",$data['store_id'])->select()->toArray();
return Db::name("order_yuyetime")
->where("store_id",$data['store_id'])
->order("start_time","asc")
->select()
->toArray();
}
/**