diff --git a/src/locales/ar.json b/src/locales/ar.json index 5042d73..bdcdcbf 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -385,5 +385,9 @@ "agency_label": "الوكالة:", "team_total_income_text": "إجمالي دخل الفريق:", "team_total_income_text_capitalized": "إجمالي دخل الفريق:", - "bd_income_label": "دخل BD:" + "bd_income_label": "دخل BD:", + + "bds_label": "BD:", + "bd_id_label": "معرف BD:", + "agency_team_income": "دخل فريق الوكالة :" } diff --git a/src/locales/en.json b/src/locales/en.json index 53ae203..cbd3e02 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -385,5 +385,9 @@ "agency_label": "Agency:", "team_total_income_text": "Team total Income:", "team_total_income_text_capitalized": "Team Total income:", - "bd_income_label": "BD Income:" + "bd_income_label": "BD Income:", + + "bds_label": "BDs:", + "bd_id_label": "BD's lD:", + "agency_team_income": "Agency Team Income :" } diff --git a/src/locales/zh.json b/src/locales/zh.json index dfe0de1..182af91 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -385,5 +385,9 @@ "agency_label": "代理:", "team_total_income_text": "团队总收入:", "team_total_income_text_capitalized": "团队总收入:", - "bd_income_label": "BD收入:" + "bd_income_label": "BD收入:", + + "bds_label": "BD:", + "bd_id_label": "BD ID:", + "agency_team_income": "代理团队收入 :" } diff --git a/src/views/AdminCenter/MyBDLeaderTeams.vue b/src/views/AdminCenter/MyBDLeaderTeams.vue index e89b7e1..a5b73c3 100644 --- a/src/views/AdminCenter/MyBDLeaderTeams.vue +++ b/src/views/AdminCenter/MyBDLeaderTeams.vue @@ -131,7 +131,7 @@ {{ BDLeaderInfo.userName || '-' }}
- ID:{{ BDLeaderInfo.account || '-' }} + {{ t('user_id_prefix') }} {{ BDLeaderInfo.account || '-' }}
diff --git a/src/views/AdminCenter/MyBDTeams.vue b/src/views/AdminCenter/MyBDTeams.vue index 22501e7..40fc770 100644 --- a/src/views/AdminCenter/MyBDTeams.vue +++ b/src/views/AdminCenter/MyBDTeams.vue @@ -3,7 +3,7 @@ @@ -35,11 +35,11 @@ " >
-
Total income:
+
{{ t('total_income') }}
${{ TeamOverview?.totalIncome || 0 }}
-
Previous period income:
+
{{ t('previous_period_income') }}
${{ TeamOverview?.previousPeriodIncome || 0 }}
@@ -60,9 +60,9 @@ " > -
BDs:{{ TeamOverview?.memberCount || 0 }}
+
{{ t('bds_label') }}{{ TeamOverview?.memberCount || 0 }}
- Team Total Income: ${{ TeamOverview?.teamTotalIncome || 0 }} + {{ t('team_total_income_label') }} ${{ TeamOverview?.teamTotalIncome || 0 }}
@@ -129,7 +129,7 @@ {{ BDInfo.userName || '-' }}
- ID:{{ BDInfo.account || '-' }} + {{ t('user_id_prefix') }} {{ BDInfo.account || '-' }}
@@ -145,26 +145,15 @@ " >
- Number Of Agencies Personnel: {{ BDInfo?.subMemberCount || 0 }} + {{ t('number_of_agencies_personnel_label') }} {{ BDInfo?.subMemberCount || 0 }}
- Total Income: ${{ BDInfo?.totalIncome || 0 }} + {{ t('total_income') }} ${{ BDInfo?.totalIncome || 0 }}
-
+
{{ t('more') }}
@@ -191,7 +180,7 @@ >
- BD's lD: {{ moreUserAccount }} + {{ t('bd_id_label') }} {{ moreUserAccount }}
@@ -216,7 +205,7 @@ -
Income Details:
+
{{ t('income_details_label') }}
@@ -232,11 +221,10 @@ > @@ -249,9 +237,9 @@ >
@@ -276,10 +264,10 @@
{{ incomeDetailsItem.settlementPeriod }}
- Agency: {{ incomeDetailsItem.memberCount }} + {{ t('agency_label') }} {{ incomeDetailsItem.memberCount }}
- Team Total income: ${{ incomeDetailsItem.teamTotalIncome }} + {{ t('team_total_income_text_capitalized') }} ${{ incomeDetailsItem.teamTotalIncome }}
@@ -345,7 +333,7 @@ {{ member.userName }}
- ID:{{ member.account }} + {{ t('user_id_prefix') }} {{ member.account }}
@@ -360,7 +348,7 @@ justify-content: space-around; " > -
Agency Team Income :
+
{{ t('agency_team_income') }}
${{ member.income }}
@@ -492,6 +480,21 @@ onMounted(() => { display: none; } +.moreBt { + font-size: 0.8em; + + position: absolute; + bottom: 4%; + right: 4%; + color: #bb92ff; + font-weight: 500; +} + +[dir='rtl'] .moreBt { + left: 4%; + right: auto; +} + @media screen and (max-width: 360px) { * { font-size: 10px;