소스 검색

fix: 通知类型增加

liangan 3 주 전
부모
커밋
625809fe56
4개의 변경된 파일23개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 0
      src/locale/bn.json
  2. 4 0
      src/locale/en.json
  3. 4 0
      src/locale/zh-Hans.json
  4. 11 1
      src/pages/notifications/notifications.vue

+ 4 - 0
src/locale/bn.json

@@ -290,6 +290,10 @@
   "notifications.reward.directReferral.content": "আপনি সরাসরি রেফারেলের জন্য পুরস্কার পেয়েছেন",
   "notifications.reward.checkin.title": "চেক-ইন পুরস্কার",
   "notifications.reward.checkin.content": "আপনি চেক-ইনের জন্য পুরস্কার পেয়েছেন",
+  "notifications.reward.firstCommission.title": "Direct Referral Reward",
+  "notifications.reward.firstCommission.content": "You have received the reward for Direct Referral",
+  "notifications.reward.secondaryCommission.title": "Direct Referral Reward",
+  "notifications.reward.secondaryCommission.content": "You have received the reward for Direct Referral",
   "notifications.money.rechargeSuccess.title": "রিচার্জ সফল",
   "notifications.money.rechargeSuccess.content": "আপনার KLICKওয়ালেট সফলভাবে রিচার্জ হয়েছে",
   "notifications.money.withdrawalAccountSuccess.title": "উত্তোলন সফল",

+ 4 - 0
src/locale/en.json

@@ -291,6 +291,10 @@
   "notifications.reward.directReferral.content": "You have received the reward for Direct Referral",
   "notifications.reward.checkin.title": "Check-in Reward",
   "notifications.reward.checkin.content": "You have received the reward for Check-in",
+  "notifications.reward.firstCommission.title": "Direct Referral Reward",
+  "notifications.reward.firstCommission.content": "You have received the reward for Direct Referral",
+  "notifications.reward.secondaryCommission.title": "Direct Referral Reward",
+  "notifications.reward.secondaryCommission.content": "You have received the reward for Direct Referral",
   "notifications.money.rechargeSuccess.title": "Recharge Successful",
   "notifications.money.rechargeSuccess.content": "Your KLICKwallet has been successfully recharged",
   "notifications.money.withdrawalAccountSuccess.title": "Withdrawal Successful",

+ 4 - 0
src/locale/zh-Hans.json

@@ -292,6 +292,10 @@
   "notifications.reward.checkin.content": "您已获得签到奖励",
   "notifications.money.rechargeSuccess.title": "充值成功",
   "notifications.money.rechargeSuccess.content": "您的KLICK钱包已成功充值",
+  "notifications.reward.firstCommission.title": "Direct Referral Reward",
+  "notifications.reward.firstCommission.content": "You have received the reward for Direct Referral",
+  "notifications.reward.secondaryCommission.title": "Direct Referral Reward",
+  "notifications.reward.secondaryCommission.content": "You have received the reward for Direct Referral",
   "notifications.money.withdrawalAccountSuccess.title": "提现成功",
   "notifications.money.withdrawalAccountSuccess.content": "您的收益账户提现请求已处理",
   "notifications.money.withdrawalWalletSuccess.title": "提现成功",

+ 11 - 1
src/pages/notifications/notifications.vue

@@ -38,7 +38,7 @@ const tabs = [
 
 const typeMap = {
   order: ['ORDER_GROUP_BUY_PAYMENT_SUCCESS', 'ORDER_GROUP_BUY_SUCCESS_WIN', 'ORDER_GROUP_BUY_SUCCESS_LOSE', 'ORDER_PROVIDE_SHIPPING_ADDRESS', 'ORDER_GROUP_BUY_FAIL', 'ORDER_SHIPPED_SUCCESS'],
-  income: ['REWARD_REFER_FRIENDS', 'REWARD_GROUP_BUY', 'REWARD_DIRECT_REFERRAL', 'REWARD_CHECKIN'],
+  income: ['REWARD_REFER_FRIENDS', 'REWARD_GROUP_BUY', 'REWARD_DIRECT_REFERRAL', 'REWARD_CHECKIN', 'REWARD_FIRST_COMMISSION', 'REWARD_SECONDARY_COMMISSION'],
   wallet: ['MONEY_RECHARGE_SUCCESS', 'MONEY_WITHDRAWAL_ACCOUNT_SUCCESS', 'MONEY_WITHDRAWAL_WALLET_SUCCESS', 'MONEY_WITHDRAWAL_FAIL'],
   other: ['OTHER'],
 }
@@ -94,6 +94,16 @@ const contentTypeMap = {
     contentKey: 'notifications.reward.checkin.content',
     link: '/pages/income/income',
   },
+  REWARD_FIRST_COMMISSION: {
+    titleKey: 'notifications.reward.firstCommission.title',
+    contentKey: 'notifications.reward.firstCommission.content',
+    link: '/pages/income/income',
+  },
+  REWARD_SECONDARY_COMMISSION: {
+    titleKey: 'notifications.reward.secondaryCommission.title',
+    contentKey: 'notifications.reward.secondaryCommission.content',
+    link: '/pages/income/income',
+  },
   MONEY_RECHARGE_SUCCESS: {
     titleKey: 'notifications.money.rechargeSuccess.title',
     contentKey: 'notifications.money.rechargeSuccess.content',