Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-06-17 16:29:55 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
43090e11172c2052cc0cdfb268f7b84476b5b5fb
43090e11
1 parent
98b85dc2
feat: 新增PDD
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
src/views/pdd-info/detail.vue
src/views/pdd-info/detail.vue
View file @
43090e1
...
...
@@ -987,10 +987,9 @@ export default {
},
mapCurrencyDatas(dicArr, code) {
console.log(dicArr, code);
if (code != "" && code) {
return dicArr.filter((item) => item.itemValue == code)[0]
.itemChineseName
;
const ojb = dicArr.find((item) => item.itemValue == code);
return ojb ? ojb.itemChineseName : ""
;
} else {
return "";
}
...
...
Please
register
or
login
to post a comment