3026be5d by xukangle

fix

1 parent 0bc96dcb
......@@ -40,6 +40,13 @@ export const getListingCount = () => request({
method: 'post',
})
// 驳回流程数据
export const productRejectFlowData = (data) => request({
url: `${import.meta.env.VITE_API_NEW_PORTAL}/product-grounding/submit-flow`,
method: 'post',
data
})
/** 获取数据产品上架详情 */
export const getListingDetail = (params) => request({
......
......@@ -26,7 +26,7 @@ const routes: RouteRecordRaw[] = [
path: '/data-asset/register-catalog',
component: Layout,
meta: {
title: '数据资产目录',
title: '数据产品目录',
icon: 'sidebar-videos',
},
children: [
......@@ -35,7 +35,7 @@ const routes: RouteRecordRaw[] = [
name: 'registerCatalogManagement',
component: () => import('@/views/data_asset/registerCatalogManagement.vue'),
meta: {
title: '数据资产目录',
title: '数据产品目录',
sidebar: false,
breadcrumb: false,
cache: true
......@@ -46,7 +46,7 @@ const routes: RouteRecordRaw[] = [
name: 'registerCatalogCreate',
component: () => import('@/views/data_asset/registerCatalogCreate.vue'),
meta: {
title: '新建资产目录',
title: '新建产品目录',
sidebar: false,
breadcrumb: false,
cache: true,
......
......@@ -365,7 +365,7 @@ const formInfo = ref<any>({
field: 'productImg',
default: [],
limit: 1,
block: true,
block: false,
required: false,
// col: 'mr8',
// style: {
......@@ -1422,7 +1422,9 @@ onBeforeMount(() => {
} else {
getProducts();
}
getTemplateInfo();
if (route.query.exchangeGuid) {
getTemplateInfo();
}
})
// 获取模板信息
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!