文档服务地址:http://47.92.0.57:3000/ 周报索引地址:http://47.92.0.57:3000/s/NruNXRYmV

Commit 723a9d25 by 李景熙

修改获取标注者接口

parent 373d2fb8
......@@ -170,7 +170,7 @@ def get_state(user_id, data_id):
# 获取某文件的标注者信息
def get_executors(data_id):
try:
find = Relation.select(Relation.user_id, Relation.relation_id).where(Relation.data_id == data_id)
find = Relation.select(Relation.user_id, Relation.relation_id).where(Relation.data_id == data_id, Relation.flag == 1, Relation.flag2 == 0)
index = 0
list = []
while index < len(find):
......
1.审核任务的进度变化
2.各任务界面导出功能的添加与统一
3.将前端请求地址更改,保证前后端可同时在服务器运行
4.登录界面修改
5.登录拦截(不能通过地址访问网页,必须先登录)
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