4b6216c9 by xukangle

fix

1 parent 9fbd7335
...@@ -10,6 +10,15 @@ export const getProductList = (params) => request({ ...@@ -10,6 +10,15 @@ export const getProductList = (params) => request({
10 method: 'get', 10 method: 'get',
11 params 11 params
12 }) 12 })
13 /** 获取数交所产品
14 * @param {Object} params
15 * path: /dam-catalog-table/data-exchange/get-table-select
16 */
17 export const getDataExchangeProductList = (params) => request({
18 url: `${import.meta.env.VITE_API_NEW_PORTAL}/dam-catalog-table/data-exchange/get-table-select`,
19 method: 'get',
20 params
21 })
13 22
14 /** 获取已添加的数据产品列表 */ 23 /** 获取已添加的数据产品列表 */
15 export const getAddedProductList = (params) => request({ 24 export const getAddedProductList = (params) => request({
......
...@@ -500,8 +500,17 @@ const demandListData: any = ref([ ...@@ -500,8 +500,17 @@ const demandListData: any = ref([
500 { companyName: '深数所', listedNum: 16, processNum: 1235 }, 500 { companyName: '深数所', listedNum: 16, processNum: 1235 },
501 { companyName: '苏数所', listedNum: 16, processNum: 1235 }, 501 { companyName: '苏数所', listedNum: 16, processNum: 1235 },
502 ]); 502 ]);
503 const btnClick = (btn) => { 503 const btnClick = (item) => {
504 console.log(btn) 504 console.log(item)
505 router.push({
506 name: "productListingDetail",
507 query: {
508 exchangeGuid: item.exchangeGuid,
509 exchangeName: item.exchangeName,
510 type: 'add',
511 groundingPick: '登记得数交所',
512 },
513 });
505 } 514 }
506 515
507 516
...@@ -578,15 +587,16 @@ const btnClick = (btn) => { ...@@ -578,15 +587,16 @@ const btnClick = (btn) => {
578 587
579 .list-content { 588 .list-content {
580 display: flex; 589 display: flex;
581 justify-content: space-between; 590 justify-content: flex-start;
582 flex-wrap: wrap; 591 flex-wrap: wrap;
583 margin-bottom: 8px; 592 margin-bottom: 8px;
584 padding: 0 8px; 593 padding: 0 8px;
585 594
586 .card-content { 595 .card-content {
587 width: calc(33.33% - 10px); 596 width: 300px;
588 padding: 16px; 597 padding: 16px;
589 box-shadow: 0 0 0 1px #d9d9d9; 598 box-shadow: 0 0 0 1px #d9d9d9;
599 margin-right: 12px;
590 600
591 .header { 601 .header {
592 display: flex; 602 display: flex;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!