示例#1
0
def job_education_stat_json():
    # 学历要求统计数据
    return jsonify(job.education_stat())
示例#2
0
def job_education_stat():
    # 学历要求统计页面
    return render_template('job/education-stat.html',rows=job.education_stat())
示例#3
0
def education_stat_json():
    return jsonify(job_.education_stat())
示例#4
0
def education_stat():
    return render_template('job/education_stat.html',
                           rows=job_.education_stat())
示例#5
0
def job_education_stat_json():
    """学历要求统计数据

    """
    return jsonify(job.education_stat())
示例#6
0
文件: app.py 项目: leeboyjcc/paradise
def job_education_stat_json():
    '''学历要求统计数据'''
    return jsonify(job.education_stat())