You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
567 B
21 lines
567 B
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
'''
|
|
@Date:2022/07/29 09:03:39
|
|
'''
|
|
from flask import Blueprint, jsonify, request
|
|
from Common.Utils import Utils
|
|
from db_logic.client import BllClient
|
|
from Common.auth import token_auth
|
|
|
|
client_router = Blueprint("client", __name__)
|
|
|
|
|
|
# 查看client列表
|
|
@client_router.route("/client_list", methods=["POST"])
|
|
@token_auth.login_required
|
|
def get_client_list():
|
|
data = BllClient().get_all_client_list()
|
|
data_list = Utils.msyql_table_model(data)
|
|
return jsonify(Utils.true_return(data={"data_list": data_list}))
|