48f9beef by lihua

合同进度页面前端开发

1 parent fb6fdb50
......@@ -444,6 +444,26 @@ export const getRegisterExchangeList = () => request({
method: 'get'
})
/** 获取合同列表 */
export const getContractList = (params) => request({
url: `${import.meta.env.VITE_API_NEW_PORTAL}/dam-contract/page-list`,
method: 'post',
data: params
})
/** 获取会员列表 */
export const getTenantList = (params) => request({
url: `${import.meta.env.VITE_APP_PERSONAL_URL}/tenant/singlePage`,
method: 'post',
data: params
})
/** 获取当前用户所在的企业 */
export const getOwnerTenantList = (userGuid) => request({
url: `${import.meta.env.VITE_APP_PERSONAL_URL}/tenant/get-tenant-by-user?userGuid=${userGuid}`,
method: 'get'
})
// API详情
/** 查询域名和文根 */
/** api类型,有表单类型,自定义sql. */
......
......@@ -217,6 +217,27 @@ const routes: RouteRecordRaw[] = [
},
},
]
},
{
path: '/data-asset-register/contract-progress',
component: Layout,
meta: {
title: '合同进度一览',
icon: 'ep:grid',
},
children: [
{
path: '',
name: 'contractProgress',
component: () => import('@/views/data_asset/contractProgress.vue'),
meta: {
title: '合同进度一览',
sidebar: false,
cache: true,
breadcrumb: false,
},
},
]
}
]
export default routes
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!