Merge pull request '修改积分商城订单记录时间排序' (#51) from sjy-two into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #51
This commit is contained in:
root 2024-10-17 11:24:41 +08:00
commit b9f0591578
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);
}