lrf 2 년 전
부모
커밋
88b3e84624
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/service/system/platformAct.js

+ 1 - 1
app/service/system/platformAct.js

@@ -72,7 +72,7 @@ class PlatformActService extends CrudService {
       const discount = _.get(data, 'config.discount', []);
       for (const i of discount) {
         const { limit, number, max } = i;
-        text = `满${limit}打${number}折`;
+        text = `${text}满${limit}打${number}折`;
         if (max) text = `${text}(最多减免${max}元)`;
         text = `${text};`;
       }