|
@@ -1,24 +1,27 @@
|
|
|
<template>
|
|
<template>
|
|
|
<!-- 经纪人管理: 经纪人管理-->
|
|
<!-- 经纪人管理: 经纪人管理-->
|
|
|
<div class="platinum_broker_management_tab">
|
|
<div class="platinum_broker_management_tab">
|
|
|
- 经纪人管理
|
|
|
|
|
<iframe :src="url"></iframe>
|
|
<iframe :src="url"></iframe>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
|
-import { defineComponent } from 'vue';
|
|
|
|
|
|
|
+import { defineComponent, ref } from 'vue';
|
|
|
import { initData } from '@/common/methods';
|
|
import { initData } from '@/common/methods';
|
|
|
import { getToken } from '@/services/bus/token';
|
|
import { getToken } from '@/services/bus/token';
|
|
|
import { serviceURL } from '@/services/request/serviceURL';
|
|
import { serviceURL } from '@/services/request/serviceURL';
|
|
|
|
|
+import { getThirdMenuData } from '@/common/setup/table/button';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'platinum_broker_management_tab',
|
|
name: 'platinum_broker_management_tab',
|
|
|
components: {},
|
|
components: {},
|
|
|
setup() {
|
|
setup() {
|
|
|
const token = getToken();
|
|
const token = getToken();
|
|
|
- const url = 'http://192.168.31.171:5035/pcmanage/';
|
|
|
|
|
- initData(() => {});
|
|
|
|
|
|
|
+ const url = ref<string>('');
|
|
|
|
|
+ const list = getThirdMenuData();
|
|
|
|
|
+ initData(() => {
|
|
|
|
|
+ url.value = `${serviceURL.pcMangerUrl}${list[0].url}?token=${token}&tabindex=1&resourcePCMenu=`;
|
|
|
|
|
+ });
|
|
|
return { url };
|
|
return { url };
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|