Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7aa47859
authored
2025-02-19 15:13:10 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
统计接口添加当前人员传参
1 parent
f700e474
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
5 deletions
src/api/modules/dataAsset.ts
src/api/modules/dataProduct.ts
src/views/data_asset/registerManagemant.vue
src/views/data_product/productListing.vue
src/api/modules/dataAsset.ts
View file @
7aa4785
...
...
@@ -399,9 +399,10 @@ export const updateDissentState = (params) => request({
})
// 获取数交所数据
export
const
getExchangeList
=
()
=>
request
({
export
const
getExchangeList
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_API_NEW_PORTAL
}
/register-base/register-num`
,
method
:
'post'
method
:
'post'
,
data
:
params
})
...
...
src/api/modules/dataProduct.ts
View file @
7aa4785
...
...
@@ -34,9 +34,10 @@ export const getListingList = (params) => request({
})
/**获取产品上架数量 */
export
const
getListingCount
=
()
=>
request
({
export
const
getListingCount
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_API_NEW_PORTAL
}
/product-grounding/product-num`
,
method
:
'post'
,
data
:
params
})
// 驳回流程数据
...
...
src/views/data_asset/registerManagemant.vue
View file @
7aa4785
...
...
@@ -341,7 +341,9 @@ const getTableData = () => {
}
const
getExchangeData
=
()
=>
{
getExchangeList
().
then
((
res
:
any
)
=>
{
getExchangeList
({
currentStaffGuid
:
userData
.
staffGuid
}).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
const
data
=
res
.
data
||
[];
exchangeList
.
value
=
chunk
(
data
,
4
);
...
...
src/views/data_product/productListing.vue
View file @
7aa4785
...
...
@@ -242,7 +242,9 @@ const toSearch = (val: any, clear: boolean = false) => {
// 获取产品上架数量
const
getListingCountData
=
()
=>
{
flowDetailLoading
.
value
=
true
;
getListingCount
().
then
((
res
:
any
)
=>
{
getListingCount
({
currentStaffGuid
:
userData
.
staffGuid
}).
then
((
res
:
any
)
=>
{
flowDetailLoading
.
value
=
false
;
if
(
res
.
code
==
proxy
.
$passCode
)
{
demandListData
.
value
=
res
.
data
||
[];
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment