Compare commits

...

2 Commits

Author SHA1 Message Date
b9f0591578 Merge pull request '修改积分商城订单记录时间排序' (#51) from sjy-two into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: http://101.43.112.107:3000/root/allLikeMall/pulls/51
2024-10-17 11:24:41 +08:00
138ddc13bb 修改积分商城订单记录时间排序 2024-10-17 11:22:54 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<Dialog v-model="dialogVisible" :title="dialogTitle" width="65%">
<Dialog v-model="dialogVisible" :title="dialogTitle" width="95%">
<Form
ref="formRef"
v-loading="formLoading"

View File

@ -136,6 +136,6 @@ public interface TradeOrderMapper extends BaseMapperX<TradeOrderDO> {
" inner join trade_order_item b on a.id = b.order_id " +
" inner join (SELECT sort, label, value, dict_type, css_class FROM system_dict_data WHERE dict_type = 'trade_order_status') d on d.sort = a.status "+
" inner join product_spu c on b.spu_id = c.id " +
" where a.user_id = #{userId} and a.use_point > 0 ")
" where a.user_id = #{userId} and a.use_point > 0 order by a.create_time ASC ")
List<AppPointOrderVO> getPointOrder(Long userId);
}