48f9beef by lihua

合同进度页面前端开发

1 parent fb6fdb50
...@@ -444,6 +444,26 @@ export const getRegisterExchangeList = () => request({ ...@@ -444,6 +444,26 @@ export const getRegisterExchangeList = () => request({
444 method: 'get' 444 method: 'get'
445 }) 445 })
446 446
447 /** 获取合同列表 */
448 export const getContractList = (params) => request({
449 url: `${import.meta.env.VITE_API_NEW_PORTAL}/dam-contract/page-list`,
450 method: 'post',
451 data: params
452 })
453
454 /** 获取会员列表 */
455 export const getTenantList = (params) => request({
456 url: `${import.meta.env.VITE_APP_PERSONAL_URL}/tenant/singlePage`,
457 method: 'post',
458 data: params
459 })
460
461 /** 获取当前用户所在的企业 */
462 export const getOwnerTenantList = (userGuid) => request({
463 url: `${import.meta.env.VITE_APP_PERSONAL_URL}/tenant/get-tenant-by-user?userGuid=${userGuid}`,
464 method: 'get'
465 })
466
447 // API详情 467 // API详情
448 /** 查询域名和文根 */ 468 /** 查询域名和文根 */
449 /** api类型,有表单类型,自定义sql. */ 469 /** api类型,有表单类型,自定义sql. */
......
...@@ -217,6 +217,27 @@ const routes: RouteRecordRaw[] = [ ...@@ -217,6 +217,27 @@ const routes: RouteRecordRaw[] = [
217 }, 217 },
218 }, 218 },
219 ] 219 ]
220 },
221 {
222 path: '/data-asset-register/contract-progress',
223 component: Layout,
224 meta: {
225 title: '合同进度一览',
226 icon: 'ep:grid',
227 },
228 children: [
229 {
230 path: '',
231 name: 'contractProgress',
232 component: () => import('@/views/data_asset/contractProgress.vue'),
233 meta: {
234 title: '合同进度一览',
235 sidebar: false,
236 cache: true,
237 breadcrumb: false,
238 },
239 },
240 ]
220 } 241 }
221 ] 242 ]
222 export default routes 243 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!