Commit b095b72d by dong

fix20221115

parent aa9aa398
...@@ -815,7 +815,7 @@ def distribute_project(): ...@@ -815,7 +815,7 @@ def distribute_project():
db.session.add(new_project) db.session.add(new_project)
db.session.commit() db.session.commit()
district_list1.append(district) district_list1.append(district)
return jsonify(code=RET.OK, msg="该项目已分发至【{}】对接库。".format(district_list1)) return jsonify(code=RET.OK, msg="该项目已分发至{}对接库。".format(district_list1))
except Exception as e: except Exception as e:
current_app.logger.error(e) current_app.logger.error(e)
return jsonify(code=RET.DATAERR, msg="分发操作出错!") return jsonify(code=RET.DATAERR, msg="分发操作出错!")
......
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