Compare commits

..

No commits in common. "b9f05915785e612ada461f881095217090028115" and "2f7ffb403220652fdec936e5242bd4ed0fe57915" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<Dialog v-model="dialogVisible" :title="dialogTitle" width="95%">
<Dialog v-model="dialogVisible" :title="dialogTitle" width="65%">
<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 order by a.create_time ASC ")
" where a.user_id = #{userId} and a.use_point > 0 ")
List<AppPointOrderVO> getPointOrder(Long userId);
}