Commit adea777a authored by wanli's avatar wanli

update

parent 682ddfd7
...@@ -179,8 +179,8 @@ ...@@ -179,8 +179,8 @@
"iconUrl": "http://store.evmiot.com/application/360kids.png", "iconUrl": "http://store.evmiot.com/application/360kids.png",
"apkId": "789", "apkId": "789",
"version": "v1.0", "version": "v1.0",
"homePage": "evue_calculator", "homePage": "evue_album",
"apkDownloadUrl": "http://store.evmiot.com/evueapps/evm/evue_launcher-1.0-20210420144208/evue_launcher.epk", "apkDownloadUrl": "evue_album",
"fileList": "360kids" "fileList": "360kids"
}, },
{ {
...@@ -189,8 +189,8 @@ ...@@ -189,8 +189,8 @@
"iconUrl": "http://store.evmiot.com/application/qq_music.png", "iconUrl": "http://store.evmiot.com/application/qq_music.png",
"apkId": "456", "apkId": "456",
"version": "v1.0", "version": "v1.0",
"homePage": "evue_calculator", "homePage": "evue_music",
"apkDownloadUrl": "calculator", "apkDownloadUrl": "evue_music",
"fileList": "qq_music" "fileList": "qq_music"
}, },
{ {
...@@ -199,8 +199,8 @@ ...@@ -199,8 +199,8 @@
"iconUrl": "http://store.evmiot.com/application/gaode.png", "iconUrl": "http://store.evmiot.com/application/gaode.png",
"apkId": "1015", "apkId": "1015",
"version": "v1.0", "version": "v1.0",
"homePage": "evue_calculator", "homePage": "evue_dial",
"apkDownloadUrl": "calculator", "apkDownloadUrl": "evue_dial",
"fileList": "gaode" "fileList": "gaode"
}, },
{ {
...@@ -209,8 +209,8 @@ ...@@ -209,8 +209,8 @@
"iconUrl": "http://store.evmiot.com/application/didi.png", "iconUrl": "http://store.evmiot.com/application/didi.png",
"apkId": "1014", "apkId": "1014",
"version": "v1.0", "version": "v1.0",
"homePage": "evue_calculator", "homePage": "evue_setting",
"apkDownloadUrl": "calculator", "apkDownloadUrl": "evue_setting",
"fileList": "didi" "fileList": "didi"
}, },
{ {
...@@ -220,8 +220,8 @@ ...@@ -220,8 +220,8 @@
"apkId": "001", "apkId": "001",
"version": "v1.0", "version": "v1.0",
"homePage": "evue_calculator", "homePage": "evue_calculator",
"apkDownloadUrl": "calculator", "apkDownloadUrl": "evue_calculator",
"fileList": "calculator" "fileList": "alipay"
} }
] ]
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ class UserManager(object): ...@@ -36,7 +36,7 @@ class UserManager(object):
if isExists: if isExists:
return False, "user already exists" return False, "user already exists"
editor = User.get(uuid=uuid) editor = User.get(id=uuid)
if not editor: if not editor:
return False, "current user is not exists" return False, "current user is not exists"
......
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf_8 -*- # -*- coding: utf_8 -*-
import os
import logging import logging
import traceback import traceback
from flask import Blueprint, request from flask import Blueprint, request
......
...@@ -28,7 +28,6 @@ def add(): ...@@ -28,7 +28,6 @@ def add():
return response_result(ResponseCode.REQUEST_ERROR, msg=message) return response_result(ResponseCode.REQUEST_ERROR, msg=message)
except Exception as e: except Exception as e:
traceback.print_exc() traceback.print_exc()
logger.error(str(e))
return response_result(ResponseCode.SERVER_ERROR, msg=str(e)) return response_result(ResponseCode.SERVER_ERROR, msg=str(e))
......
''' '''
Author: your name Author: your name
Date: 2021-06-21 14:52:24 Date: 2021-06-21 14:52:24
LastEditTime: 2021-06-30 12:27:59 LastEditTime: 2021-07-08 23:50:12
LastEditors: Please set LastEditors LastEditors: Please set LastEditors
Description: In User Settings Edit Description: In User Settings Edit
FilePath: \evm-store\tools\modules\file-manager\main.py FilePath: \evm-store\tools\modules\file-manager\main.py
''' '''
import os import os
import shutil
import pprint import pprint
from pathlib import Path, PurePosixPath, PureWindowsPath from pathlib import Path
import platform
import json import json
from fs.osfs import OSFS
from fs import open_fs
from fs.walk import Walker
disk_root = "D:\\projects\\scriptiot\\evm_app_store_files" disk_root = "D:\\projects\\scriptiot\\evm_app_store_files"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment