3026be5d by xukangle

fix

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