huangbin %!s(int64=4) %!d(string=hai) anos
pai
achega
5d190636b7

+ 58 - 1
src/router/index.ts

@@ -860,6 +860,63 @@ const routes: Array<RouteRecordRaw> = [
                     },
                 ]
             },
+            {
+                path: '/platinum_capital_flow',
+                name: 'platinum_capital_flow',
+                component: Main,
+                meta: {
+                    requireAuth: true,
+                },
+                redirect: { name: 'platinum_capital_flow_tab' },
+                children: [
+                    {
+                        path: '/platinum_capital_flow_tab/tab',
+                        name: 'platinum_capital_flow_tab',
+                        component: () => import('@/views/platinum/platinum_capital_flow/platinum_capital_flow_tab/index.vue'),
+                        meta: {
+                            requireAuth: true,
+                        },
+                    },
+                ]
+            },
+            {
+                path: '/platinum_promotion_report',
+                name: 'platinum_promotion_report',
+                component: Main,
+                meta: {
+                    requireAuth: true,
+                },
+                redirect: { name: 'platinum_promotion_report_tab' },
+                children: [
+                    {
+                        path: '/platinum_promotion_report/tab',
+                        name: 'platinum_promotion_report_tab',
+                        component: () => import('@/views/platinum/platinum_promotion_report/platinum_promotion_report_tab/index.vue'),
+                        meta: {
+                            requireAuth: true,
+                        },
+                    },
+                ]
+            },
+            {
+                path: '/platinum_broker_management',
+                name: 'platinum_broker_management',
+                component: Main,
+                meta: {
+                    requireAuth: true,
+                },
+                redirect: { name: 'platinum_broker_management_tab' },
+                children: [
+                    {
+                        path: '/platinum_broker_management/tab',
+                        name: 'platinum_broker_management_tab',
+                        component: () => import('@/views/platinum/platinum_broker_management/platinum_broker_management_tab/index.vue'),
+                        meta: {
+                            requireAuth: true,
+                        },
+                    },
+                ]
+            },
         ],
     },
     {
@@ -912,7 +969,7 @@ router.beforeEach((to, from, next) => {
                 } else { // 跳转到登录页面
                     next()
                 }
-            } else {    // 
+            } else {    //
                 next()
             }
         }

+ 31 - 0
src/views/platinum/platinum_broker_management/platinum_broker_management_tab/index.vue

@@ -0,0 +1,31 @@
+<template>
+  <!-- 经纪人管理: 经纪人管理-->
+  <div class="platinum_broker_management_tab">
+    经纪人管理
+    <iframe :src="url"></iframe>
+  </div>
+</template>
+
+<script lang="ts">
+import { defineComponent } from 'vue';
+import { initData } from '@/common/methods';
+import { getToken } from '@/services/bus/token';
+import { serviceURL } from '@/services/request/serviceURL';
+
+export default defineComponent({
+    name: 'platinum_broker_management_tab',
+    components: {},
+    setup() {
+        const token = getToken();
+        const url = 'http://192.168.31.171:5035/pcmanage/';
+        initData(() => {});
+        return { url };
+    },
+});
+</script>
+
+<style lang="less">
+.platinum_broker_management_tab {
+}
+</style
+>;

+ 31 - 0
src/views/platinum/platinum_capital_flow/platinum_capital_flow_tab/index.vue

@@ -0,0 +1,31 @@
+<template>
+  <!-- 资金流水: 资金流水-->
+  <div class="platinum_capital_flow_tab">
+    资金流水
+    <iframe :src="url"></iframe>
+  </div>
+</template>
+
+<script lang="ts">
+import { defineComponent } from 'vue';
+import { initData } from '@/common/methods';
+import { getToken } from '@/services/bus/token';
+import { serviceURL } from '@/services/request/serviceURL';
+
+export default defineComponent({
+    name: 'platinum_capital_flow_tab',
+    components: {},
+    setup() {
+        const token = getToken();
+        const url = 'http://192.168.31.171:5035/pcmanage/';
+        initData(() => {});
+        return { url };
+    },
+});
+</script>
+
+<style lang="less">
+.platinum_capital_flow_tab {
+}
+</style
+>;

+ 31 - 0
src/views/platinum/platinum_promotion_report/platinum_promotion_report_tab/index.vue

@@ -0,0 +1,31 @@
+<template>
+  <!-- 推广报表: 推广报表-->
+  <div class="platinum_promotion_report_tab">
+    推广报表
+    <iframe :src="url"></iframe>
+  </div>
+</template>
+
+<script lang="ts">
+import { defineComponent } from 'vue';
+import { initData } from '@/common/methods';
+import { getToken } from '@/services/bus/token';
+import { serviceURL } from '@/services/request/serviceURL';
+
+export default defineComponent({
+    name: 'platinum_promotion_report_tab',
+    components: {},
+    setup() {
+        const token = getToken();
+        const url = 'http://192.168.31.171:5035/pcmanage/';
+        initData(() => {});
+        return { url };
+    },
+});
+</script>
+
+<style lang="less">
+.platinum_promotion_report_tab {
+}
+</style
+>;