Files
CompanyProject/芳林公司项目/www.zhiyuanhelp.com/config/setsub.php
2024-09-27 01:32:49 +08:00

211 lines
4.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2020/4/14
* Time: 13:53
*/
return[
'year' => '2019',
//文科1理科2 (前端篩選條件使用)
'subType' => [
0 => [
'id' => 1,
'name' => '文科'
],
1 => [
'id' => 2,
'name' => '理科'
]
],
//文理科給php調用文字
'subTypeName' => [
0 => 0,
1 => "文科",
2 => "理科"
],
//政治1历史2地理3物理4化学5生物6技术7
//新高考科目
'newTestSub' => ['政治','历史','地理','物理','化学','生物','技术'],
//特殊高考科目
'specialTestSub' => [
0 => [
'needNum' => [
0 => [
'id' => 1,
'name' => '历史'
]
],
'optionNum' =>[
0 => [
'id' => 5,
'name' => '化学'
],
1 => [
'id' => 1,
'name' => '政治'
],
2 => [
'id' => 3,
'name' => '地理'
],
3 => [
'id' => 6,
'name' => '生物'
],
]
],
1 => [
'needNum' => [
0 => [
'id' => 4,
'name' => '物理'
]
],
'optionNum' =>[
0 => [
'id' => 5,
'name' => '化学'
],
1 => [
'id' => 1,
'name' => '政治'
],
2 => [
'id' => 3,
'name' => '地理'
],
3 => [
'id' => 6,
'name' => '生物'
],
]
]
],
//政治1历史2地理3物理4化学5生物6技术7
/*
* 科目数据库字段
* */
'subEng'=>[
1 => 'politics',
2 => 'history',
3 => 'geography',
4 => 'physics',
5 => 'chemistry',
6 => 'biology',
7 => 'technology'
],
/*
* 新高考核特殊高考省份
* */
'diffProTest' => [
1 => [1],
2 => [847,842,843,835,853,834]
],
/*
* 院校类型中的院校特色
* */
'schoolFeature' =>[
0 => [
'id' => 'is_985',
'title' => '985'
],
1 => [
'id' => 'is_211',
'title' => '211'
],
2 => [
'id' => 'is_yldx',
'title' => '一流大学建设高校'
],
3 => [
'id' => 'is_ylxk',
'title' => '一流学科建设高校'
]
],
/*
* 是否公办
* */
'is_pub' => [
0 => [
'id' => 2,
'title' => '公办'
],
1 => [
'id' => 1,
'title' => '民办'
]
],
/*
* 院校查询排序配置
* */
'sort' => [
1 => 'rankOfCn ASC',
2 => 'rankOfCn DESC',
3 => 'probability DESC',
4 => 'probability ASC'
],
/*
* 院校类型
* */
'cateArr' => [
'理工'=> 1,
'综合'=> 2,
'财经'=> 3,
'师范' => 4,
'语言'=> 5,
'政法' => 6,
'医药' => 7,
'农林' => 8,
'民族' => 9,
'军事' => 10,
'艺术' => 11,
'体育' => 12,
'其他' => 13
],
'cateName' => [
1=> '理工',
2=> '综合',
3=> '财经',
4 => '师范',
5=> '语言',
6 => '政法',
7 => '医药',
8 => '农林',
9 => '民族',
10 => '军事',
11 => '艺术',
12 => '体育',
13 => '其他'
],
/*
* 特殊高考选科等级
* */
'levelArr' => [
'A+' => 1,
'A' => 2,
'B' => 3,
'B+' => 4,
'C' => 5,
'D' => 6
]
];