diff --git a/src/locales/ar.json b/src/locales/ar.json index 548b74c..61f1936 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -395,5 +395,10 @@ "agency_id_label": "معرف الوكالة:", "number_of_hosts_personnel_label": "عدد موظفي المضيفين:", "host_label": "المضيف:", - "host_income_label": "دخل المضيف:" + "host_income_label": "دخل المضيف:", + + "my_linked_recharge_agent": "وكيل الشحن المرتبط بي", + "my_total_income": "إجمالي دخلي:", + "this_period_recharge": "إعادة الشحن لهذه الفترة:", + "recharge_agency_list": "قائمة وكيل إعادة الشحن:" } diff --git a/src/locales/en.json b/src/locales/en.json index 83b4a90..5f72c6c 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -395,5 +395,10 @@ "agency_id_label": "Agency's lD:", "number_of_hosts_personnel_label": "Number Of Hosts Personnel:", "host_label": "Host:", - "host_income_label": "Host income:" + "host_income_label": "Host income:", + + "my_linked_recharge_agent": "My linked recharge agent", + "my_total_income": "My total income:", + "this_period_recharge": "This period's recharge:", + "recharge_agency_list": "Recharge Agency List:" } diff --git a/src/locales/zh.json b/src/locales/zh.json index d038728..50fe865 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -395,5 +395,10 @@ "agency_id_label": "代理ID:", "number_of_hosts_personnel_label": "主播人员数量:", "host_label": "主播:", - "host_income_label": "主播收入:" + "host_income_label": "主播收入:", + + "my_linked_recharge_agent": "我关联的充值代理", + "my_total_income": "我的总收入:", + "this_period_recharge": "本期充值:", + "recharge_agency_list": "充值代理列表:" } diff --git a/src/views/AdminCenter/MyRechargeAgency.vue b/src/views/AdminCenter/MyRechargeAgency.vue index 80683bc..e9ca862 100644 --- a/src/views/AdminCenter/MyRechargeAgency.vue +++ b/src/views/AdminCenter/MyRechargeAgency.vue @@ -3,7 +3,8 @@
- My total income: + {{ t('my_total_income') }}
${{ totalRechargeDetail[0]?.totalAmount || 0 }}
- This period's recharge: + {{ t('this_period_recharge') }}
${{ totalRechargeDetail[1]?.totalAmount || 0 }}
-
Recharge Agency List:
+
{{ t('recharge_agency_list') }}
- ID:{{ agency.account }} + {{ t('user_id_prefix') }}{{ agency.account }}
@@ -136,13 +137,17 @@
-
This month:
+
+ {{ t('this_month') }}: +
${{ formatPrice(agency.thisMonth) || 0 }}
-
Last month:
+
+ {{ t('last_month') }}: +
${{ formatPrice(agency.lastMonth) || 0 }}
@@ -160,6 +165,7 @@