|
|
@@ -1,9 +1,9 @@
|
|
|
-import { ref } from 'vue';
|
|
|
-import { useRoute } from 'vue-router';
|
|
|
import { initData } from "@/common/methods";
|
|
|
-import { serviceURL } from "@/services/request";
|
|
|
import { getToken } from "@/services/bus/token";
|
|
|
import { OperationTabMenuAuth } from '@/services/go/commonService/interface';
|
|
|
+import { serviceURL } from "@/services/request";
|
|
|
+import { ref } from 'vue';
|
|
|
+import { useRoute } from 'vue-router';
|
|
|
|
|
|
|
|
|
const iframeCode: { code: string, tabIndex: number }[] = [
|
|
|
@@ -55,6 +55,158 @@ const iframeCode: { code: string, tabIndex: number }[] = [
|
|
|
code: 'price_report_spot', // 统计报表-定价报表
|
|
|
tabIndex: 1,
|
|
|
},
|
|
|
+ {
|
|
|
+ code: 'platinum_capital_flow_tab', // 铂金宝-积分流水
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_promotion_report_tab', // 铂金宝-推广报表
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_broker_management_normal', // 铂金宝-经纪人管理-正常
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_broker_management_waiting', // 铂金宝-经纪人管理-待审核
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_broker_management_refuse', // 铂金宝-经纪人管理-审核拒绝
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_signing_settings_tab', // 铂金宝-签单设置
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_team_settings_tab', // 铂金宝-团队设置
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_signing_unsubmitted', // 铂金宝-资管签订-未提交
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_signing_pending_review', // 铂金宝-资管签订-待审核
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_signing_normal', // 铂金宝-资管签订-正常
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_signing_finish', // 铂金宝-资管签订-已完成
|
|
|
+ tabIndex: 4,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_signing_all', // 铂金宝-资管签订-全部
|
|
|
+ tabIndex: 5,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_unsubmitted', // 铂金宝-贵金属签订-未提交
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_pending_review', // 铂金宝-贵金属签订-待审核
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_repurchase_pending_review', // 铂金宝-贵金属签订-回购待审核
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_normal', // 铂金宝-贵金属签订-正常
|
|
|
+ tabIndex: 4,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_success', // 铂金宝-贵金属签订-已完成
|
|
|
+ tabIndex: 5,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_refunded', // 铂金宝-贵金属签订-已退单
|
|
|
+ tabIndex: 6,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_signing_all', // 铂金宝-贵金属签订-全部
|
|
|
+ tabIndex: 7,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_financial_payment_waiting_payment_tab', // 铂金宝-财务付款-待转账
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_financial_payment_in_waiting_payment_tab', // 铂金宝-财务付款-内部待转账
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_financial_payment_waiting_payment_cash_tab', // 铂金宝-财务付款-待付现金
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_financial_payment_payment_tab', // 铂金宝-财务付款-已付款
|
|
|
+ tabIndex: 4,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_financial_payment_all_tab', // 铂金宝-财务付款-全部
|
|
|
+ tabIndex: 5,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_account_manager_tab', // 铂金宝-客户经理
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_sales_report_company_tab', // 铂金宝-贵金属销售报表-公司销售(日报)
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_sales_report_departmental_tab', // 铂金宝-贵金属销售报表-部门销售
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_sale_report_company_day_tab', // 铂金宝-资管销售报表-公司销售(日报)
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_sale_report_company_week_tab', // 铂金宝-资管销售报表-公司销售(周报)
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_asset_management_sale_report_company_month_tab', // 铂金宝-资管销售报表-公司销售(月报)
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_sales_report_departmental_week_tab', // 铂金宝-资管销售报表-部门销售(周报)
|
|
|
+ tabIndex: 4,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_sales_report_departmental_month_tab', // 铂金宝-资管销售报表-部门销售(月报)
|
|
|
+ tabIndex: 5,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_precious_metal_sales_report_product_month_tab', // 铂金宝-资管销售报表-产品销售(月报)
|
|
|
+ tabIndex: 6,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_customer_service_report_reach_rate_report_tab', // 铂金宝-客服报表-达成率报表
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_customer_service_report_team_annualized_performance_ranking_report_tab', // 铂金宝-客服报表-团队年化业绩排行报表
|
|
|
+ tabIndex: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_customer_service_report_personal_annualized_performance_ranking_report_tab', // 铂金宝-客服报表-个人年化业绩排行报表
|
|
|
+ tabIndex: 3,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_customer_service_report_team_manager_annual_performance_ranking_report_tab', // 铂金宝-客服报表-团队经理年化业绩排行报表
|
|
|
+ tabIndex: 4,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ code: 'platinum_salesman_performance_report_tab', // 铂金宝-业务员业绩报表
|
|
|
+ tabIndex: 1,
|
|
|
+ },
|
|
|
]
|
|
|
|
|
|
/**
|