28bd5f7d by lxs

数据资产登记更新

1 parent f13946e2
......@@ -84,9 +84,8 @@ export const getProduct = (params) => request({
})
// 查看平台会员详情
export const getTenantDetailInfo = (params) => request({
url: `${import.meta.env.VITE_APP_API_BASEURL}/tenant/data/detail`,
method: 'get',
params
url: `${import.meta.env.VITE_APP_PERSONAL_URL}/tenant/getByGuid/${params}`,
method: 'get'
})
......
......@@ -285,7 +285,7 @@ const handleExpand = () => {
onBeforeMount(() => {
getDetailInfo();
getTenantDetail();
daTenantGuid.value && getTenantDetail();
});
onActivated(() => {
......@@ -400,7 +400,7 @@ const tenantDetail: any = ref({});
/** 获取当前登录会员,服务商,企业等详情。 */
const getTenantDetail = () => {
getTenantDetailInfo({ guid: daTenantGuid.value }).then((res: any) => {
getTenantDetailInfo(daTenantGuid.value).then((res: any) => {
if (res.code == proxy.$passCode) {
const data = res.data ?? {};
tenantDetail.value = data;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!