Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
evm-store
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanli
evm-store
Commits
06038fd0
Commit
06038fd0
authored
Mar 13, 2021
by
wanli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
da3573b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
2 deletions
+1
-2
.gitignore
.gitignore
+1
-0
backend/app-store.db
backend/app-store.db
+0
-0
backend/view/__init__.py
backend/view/__init__.py
+0
-1
frontend/src/views/app-store/build.vue
frontend/src/views/app-store/build.vue
+0
-1
No files found.
.gitignore
View file @
06038fd0
...
@@ -28,6 +28,7 @@ build/
...
@@ -28,6 +28,7 @@ build/
logs/*.log
logs/*.log
logs/*.log.*
logs/*.log.*
*.db
frontend/node_modules
frontend/node_modules
frontend/dist
frontend/dist
...
...
backend/app-store.db
View file @
06038fd0
No preview for this file type
backend/view/__init__.py
View file @
06038fd0
...
@@ -26,7 +26,6 @@ class JsonResponse(Response):
...
@@ -26,7 +26,6 @@ class JsonResponse(Response):
def
force_type
(
cls
,
response
,
environ
=
None
):
def
force_type
(
cls
,
response
,
environ
=
None
):
if
isinstance
(
response
,
(
list
,
dict
)):
if
isinstance
(
response
,
(
list
,
dict
)):
response
=
jsonify
(
response
)
response
=
jsonify
(
response
)
print
(
"======jsonify:===="
,
response
)
return
super
(
Response
,
cls
)
.
force_type
(
response
,
environ
)
return
super
(
Response
,
cls
)
.
force_type
(
response
,
environ
)
class
FlaskAPP
(
Flask
):
class
FlaskAPP
(
Flask
):
...
...
frontend/src/views/app-store/build.vue
View file @
06038fd0
...
@@ -235,7 +235,6 @@ export default {
...
@@ -235,7 +235,6 @@ export default {
const
link
=
document
.
createElement
(
"
a
"
);
const
link
=
document
.
createElement
(
"
a
"
);
body
.
appendChild
(
link
);
body
.
appendChild
(
link
);
link
.
href
=
row
.
app_path
;
link
.
href
=
row
.
app_path
;
link
.
download
=
`
${
row
.
app_name
}
.epk`
;
link
.
click
();
link
.
click
();
document
.
body
.
removeChild
(
link
);
document
.
body
.
removeChild
(
link
);
},
},
...
...
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