Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CFFP-HB
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chao Sun
CFFP-HB
Commits
4eec180a
Commit
4eec180a
authored
Jan 16, 2026
by
Sweet Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
获取缓存方法更换
parent
68eadfda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
environments/environment.ts
+1
-1
myPackageA/product-list/commission-detail.vue
+2
-2
No files found.
environments/environment.ts
View file @
4eec180a
...
@@ -53,7 +53,7 @@ const config = {
...
@@ -53,7 +53,7 @@ const config = {
stage
,
stage
,
prod
prod
}
}
let
env
=
'
dev
'
;
let
env
=
'
prod
'
;
let
baseURL
=
config
[
env
].
base_url
;
let
baseURL
=
config
[
env
].
base_url
;
let
apiURL
=
config
[
env
].
api_url
;
let
apiURL
=
config
[
env
].
api_url
;
...
...
myPackageA/product-list/commission-detail.vue
View file @
4eec180a
...
@@ -160,7 +160,7 @@ const fetchRateData = async () => {
...
@@ -160,7 +160,7 @@ const fetchRateData = async () => {
try
{
try
{
const
params
=
{
const
params
=
{
planBizId
:
planBizId
.
value
,
planBizId
:
planBizId
.
value
,
userId
:
localStorage
.
getItem
(
'cffp_userId'
)
userId
:
uni
.
getStorageSync
(
'cffp_userId'
)
||
''
}
}
const
response
=
await
api
.
queryRate
(
params
)
const
response
=
await
api
.
queryRate
(
params
)
...
@@ -193,7 +193,7 @@ const fetchRateData = async () => {
...
@@ -193,7 +193,7 @@ const fetchRateData = async () => {
// 生命周期
// 生命周期
onMounted
(()
=>
{
onMounted
(()
=>
{
userId
.
value
=
localStorage
.
getItem
(
'cffp_userId'
)
||
''
userId
.
value
=
uni
.
getStorageSync
(
'cffp_userId'
)
||
''
fetchRateData
()
fetchRateData
()
})
})
</
script
>
</
script
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment