eec9c0fc by lihua

溯源查询功能

1 parent 7b3b2e52
......@@ -328,3 +328,16 @@ export const getSignatureFile = (params, data) => request({
'Content-Type': 'multipart/form-data'
}
})
/** ---------------------- 区块链日志 ---------------------- */
export const getBlockChainPageList = (params) => request({
url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/blockchain-code/page-list`,
method: 'post',
data: params
})
export const getBlockChainDetail = (params) => request({
url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/blockchain-detail/chain-page-list`,
method: 'post',
data: params
})
......
......@@ -197,6 +197,26 @@ const routes: RouteRecordRaw[] = [
},
}]
},
{
path: '/data-smart-contract-common/traceability-inquiry-manage',
component: Layout,
meta: {
title: '溯源查询',
icon: 'sidebar-videos',
},
children: [{
path: '',
name: 'traceabilityInquiryManage',
component: () => import('@/views/data_smart_contract/traceabilityInquiryManage.vue'),
meta: {
title: '',
sidebar: false,
breadcrumb: false,
cache: true,
editPage: true
},
}]
},
]
export default routes
\ No newline at end of file
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!