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

Commit abd81d99 by 李景熙

修复bug

parent 73e979a4
...@@ -187,7 +187,7 @@ def get_state(user_id, data_id): ...@@ -187,7 +187,7 @@ def get_state(user_id, data_id):
# 获取某文件的标注者信息 # 获取某文件的标注者信息
def get_executors(data_id): def get_executors(data_id):
try: try:
find = Relation.select(Relation.user_id, Relation.relation_id).where(Relation.data_id == data_id, Relation.flag == 1) find = Relation.select(Relation.user_id, Relation.relation_id, Relation.flag2).where(Relation.data_id == data_id, Relation.flag == 1)
index = 0 index = 0
list = [] list = []
while index < len(find): while index < len(find):
......
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