Commit adea777a authored by wanli's avatar wanli

update

parent 682ddfd7
......@@ -179,8 +179,8 @@
"iconUrl": "http://store.evmiot.com/application/360kids.png",
"apkId": "789",
"version": "v1.0",
"homePage": "evue_calculator",
"apkDownloadUrl": "http://store.evmiot.com/evueapps/evm/evue_launcher-1.0-20210420144208/evue_launcher.epk",
"homePage": "evue_album",
"apkDownloadUrl": "evue_album",
"fileList": "360kids"
},
{
......@@ -189,8 +189,8 @@
"iconUrl": "http://store.evmiot.com/application/qq_music.png",
"apkId": "456",
"version": "v1.0",
"homePage": "evue_calculator",
"apkDownloadUrl": "calculator",
"homePage": "evue_music",
"apkDownloadUrl": "evue_music",
"fileList": "qq_music"
},
{
......@@ -199,8 +199,8 @@
"iconUrl": "http://store.evmiot.com/application/gaode.png",
"apkId": "1015",
"version": "v1.0",
"homePage": "evue_calculator",
"apkDownloadUrl": "calculator",
"homePage": "evue_dial",
"apkDownloadUrl": "evue_dial",
"fileList": "gaode"
},
{
......@@ -209,8 +209,8 @@
"iconUrl": "http://store.evmiot.com/application/didi.png",
"apkId": "1014",
"version": "v1.0",
"homePage": "evue_calculator",
"apkDownloadUrl": "calculator",
"homePage": "evue_setting",
"apkDownloadUrl": "evue_setting",
"fileList": "didi"
},
{
......@@ -220,8 +220,8 @@
"apkId": "001",
"version": "v1.0",
"homePage": "evue_calculator",
"apkDownloadUrl": "calculator",
"fileList": "calculator"
"apkDownloadUrl": "evue_calculator",
"fileList": "alipay"
}
]
}
\ No newline at end of file
......@@ -36,7 +36,7 @@ class UserManager(object):
if isExists:
return False, "user already exists"
editor = User.get(uuid=uuid)
editor = User.get(id=uuid)
if not editor:
return False, "current user is not exists"
......
#!/usr/bin/env python
# -*- coding: utf_8 -*-
import os
import logging
import traceback
from flask import Blueprint, request
......
......@@ -28,7 +28,6 @@ def add():
return response_result(ResponseCode.REQUEST_ERROR, msg=message)
except Exception as e:
traceback.print_exc()
logger.error(str(e))
return response_result(ResponseCode.SERVER_ERROR, msg=str(e))
......
'''
Author: your name
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
Description: In User Settings Edit
FilePath: \evm-store\tools\modules\file-manager\main.py
'''
import os
import shutil
import pprint
from pathlib import Path, PurePosixPath, PureWindowsPath
import platform
from pathlib import Path
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"
......
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