切换导航条
此项目
正在载入...
登录
李忠强
/
temporaryfood
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
何书鹏
3 years ago
提交
49f4ba5b956fb54c0693c00068ebc7efc5838172
1 个父辈
50c6e088
api更新
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
8 行增加
和
2 行删除
application/api/controller/Index.php
application/api/controller/Index.php
查看文件 @
49f4ba5
...
...
@@ -210,6 +210,7 @@ class Index extends Api
"price": "100.00", 价格
"line_price": "1000.00", 划线价
"image_text": "图片地址"
"stock_num": 68, 商品总库存
}
]
})
...
...
@@ -236,6 +237,8 @@ class Index extends Api
->
find
();
$item
[
'price'
]
=
$goods_spec
[
'goods_price'
];
$item
[
'line_price'
]
=
$goods_spec
[
'line_price'
];
// 总库存
$item
->
append
([
'stock_num'
]);
});
}
else
{
$list
=
$model
->
where
(
'keywords'
,
'like'
,
'%'
.
$text
.
'%'
)
...
...
@@ -250,15 +253,18 @@ class Index extends Api
->
find
();
$item
[
'price'
]
=
$goods_spec
[
'goods_price'
];
$item
[
'line_price'
]
=
$goods_spec
[
'line_price'
];
// 总库存
$item
->
append
([
'stock_num'
]);
});
}
// 搜索记录
$search_text
=
UserSearch
::
where
([
'user_id'
=>
$this
->
auth
->
id
,
'text'
=>
$text
])
->
find
();
$user_id
=
$this
->
auth
->
isLogin
()
?
$this
->
auth
->
id
:
0
;
$search_text
=
UserSearch
::
where
([
'user_id'
=>
$user_id
,
'text'
=>
$text
])
->
find
();
if
(
$search_text
){
$search_text
->
save
([
'updatetime'
=>
time
()]);
}
else
{
UserSearch
::
create
([
'user_id'
=>
$
this
->
auth
->
id
,
'user_id'
=>
$
user_
id
,
'text'
=>
$text
]);
}
...
...
请
注册
或
登录
后发表评论