4e2618d5 by lihua

溯源查询功能

1 parent 62fa0c56
...@@ -328,3 +328,16 @@ export const getSignatureFile = (params, data) => request({ ...@@ -328,3 +328,16 @@ export const getSignatureFile = (params, data) => request({
328 'Content-Type': 'multipart/form-data' 328 'Content-Type': 'multipart/form-data'
329 } 329 }
330 }) 330 })
331
332 /** ---------------------- 区块链日志 ---------------------- */
333 export const getBlockChainPageList = (params) => request({
334 url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/blockchain-code/page-list`,
335 method: 'post',
336 data: params
337 })
338
339 export const getBlockChainDetail = (params) => request({
340 url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/blockchain-detail/chain-page-list`,
341 method: 'post',
342 data: params
343 })
......
...@@ -197,6 +197,26 @@ const routes: RouteRecordRaw[] = [ ...@@ -197,6 +197,26 @@ const routes: RouteRecordRaw[] = [
197 }, 197 },
198 }] 198 }]
199 }, 199 },
200 {
201 path: '/data-smart-contract-common/traceability-inquiry-manage',
202 component: Layout,
203 meta: {
204 title: '溯源查询',
205 icon: 'sidebar-videos',
206 },
207 children: [{
208 path: '',
209 name: 'traceabilityInquiryManage',
210 component: () => import('@/views/data_smart_contract/traceabilityInquiryManage.vue'),
211 meta: {
212 title: '',
213 sidebar: false,
214 breadcrumb: false,
215 cache: true,
216 editPage: true
217 },
218 }]
219 },
200 ] 220 ]
201 221
202 export default routes 222 export default routes
...\ No newline at end of file ...\ 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!