def job_count_top10(): '''职位数排名前10的城市页面''' return render_template('job/count-top10.html', rows=job.count_top10())
def job_count_top10_json(): """职位数排名前十的城市数据 """ return jsonify(job.count_top10())
def count_top10(): return render_template('job/count_top10.html', query=job_.count_top10())
def job_count_top10(): """职位数排名前十的城市页面 """ return render_template('job/count-top10.html', rows=job.count_top10())