修改积分商城订单记录时间排序
This commit is contained in:
parent
a6a1ab163d
commit
138ddc13bb
@ -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"
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user