切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
刘朕
5 years ago
提交
2ea2455b08e0d95f9a25d3ea956527f5c1fff5d4
2 个父辈
190d155e
56f5e6a6
1 个管道 的构建
通过
耗费 9 秒
合并分支 'liuzhen' 到 'master'
订单调试 查看合并请求
!156
变更
2
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
4 行增加
和
1 行删除
app/portal/controller/OrderSalesmanController.php
app/portal/controller/PersonalcenterController.php
app/portal/controller/OrderSalesmanController.php
查看文件 @
2ea2455
...
...
@@ -123,6 +123,8 @@ class OrderSalesmanController extends WeChatBaseController
$this
->
success
(
'SUCCESS'
,
''
,
$grade
);
}
public
function
getOrderSalesman
(){
set_time_limit
(
0
);
ini_set
(
'memory_limit'
,
'512M'
);
$param
=
$this
->
request
->
param
();
if
(
!
empty
(
$param
[
'school'
])){
$where
[
'school'
]
=
[
'like'
,
"%
$param[school]%"]
;
...
...
app/portal/controller/PersonalcenterController.php
查看文件 @
2ea2455
...
...
@@ -780,7 +780,8 @@ class PersonalcenterController extends WeChatBaseController{
* 点击学校时获取年级班级
*/
public
function
get_grade_class
(){
set_time_limit
(
0
);
ini_set
(
'memory_limit'
,
'256M'
);
$school_id
=
$_POST
[
'id'
];
$grade_class
=
Db
::
name
(
'grade_class'
)
->
where
(
"school_id"
,
$school_id
)
->
select
()
->
toArray
();
if
(
!
empty
(
$grade_class
)){
...
...
请
注册
或
登录
后发表评论