切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
王晓刚
5 years ago
提交
04cda8333472e6cbb43bc6a26f6972be386cfac6
1 个父辈
46460371
1 个管道 的构建
通过
耗费 0 秒
bug
变更
4
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
18 行增加
和
6 行删除
app/portal/controller/GoodsdetailsController.php
app/portal/controller/ShopcartController.php
public/themes/simpleboot3/portal/goodsdetails/goods_details.html
public/themes/simpleboot3/portal/shopcart/shop_cart.html
app/portal/controller/GoodsdetailsController.php
查看文件 @
04cda83
...
...
@@ -207,6 +207,10 @@ class GoodsdetailsController extends WeChatBaseController{
$ret
[
'type'
]
=
20
;
return
json_encode
(
$ret
);
}
if
(
in_array
(
intval
(
$my_user
[
'status'
]),[
1
,
5
,
6
])){
$ret
[
'type'
]
=
21
;
return
json_encode
(
$ret
);
}
$goods_id
=
$_POST
[
'id'
];
$data
[]
=
Db
::
name
(
'goods'
)
->
where
(
'id'
,
$goods_id
)
->
find
();
$data
[
0
][
'book_num'
]
=
1
;
...
...
app/portal/controller/ShopcartController.php
查看文件 @
04cda83
...
...
@@ -201,10 +201,12 @@ class ShopcartController extends WeChatBaseController{
$uid
=
cmf_get_current_user_id
();
$my_user
=
Db
::
name
(
'my_user'
)
->
where
(
'uid'
,
$uid
)
->
find
();
if
(
$my_user
[
'status'
]
==
2
){
return
false
;
if
(
in_array
(
intval
(
$my_user
[
'status'
]),[
1
,
5
,
6
])){
return
2
;
}
else
if
(
$my_user
[
'status'
]
==
2
){
return
0
;
}
else
{
return
true
;
return
1
;
}
}
...
...
public/themes/simpleboot3/portal/goodsdetails/goods_details.html
查看文件 @
04cda83
...
...
@@ -238,7 +238,11 @@
obj
=
JSON
.
parse
(
data
);
if
(
obj
.
type
==
20
){
alert
(
'业务员不能购买'
);
}
if
(
obj
.
type
==
3
){
}
if
(
obj
.
type
==
21
){
alert
(
'业务员申请中'
);
}
if
(
obj
.
type
==
3
){
alert
(
'业务员商品和平台商品不能同时购买!'
);
}
else
if
(
obj
.
type
==
1
){
window
.
location
.
href
=
"{:url('Orderpage/order_page')}?indet_id="
+
obj
.
indet_id
;
...
...
public/themes/simpleboot3/portal/shopcart/shop_cart.html
查看文件 @
04cda83
...
...
@@ -144,7 +144,7 @@
alert
(
'请选择商品'
);
}
else
{
$
.
post
(
"{:url('Shopcart/is_to_pay')}"
,{},
function
(
data
){
if
(
data
){
if
(
data
==
1
){
goods_id
=
goods_id
.
join
(
','
);
myprice
=
$
(
'#myprice'
).
text
();
$
.
post
(
"{:url('Shopcart/shop_cart_pay')}"
,{
id
:
goods_id
,
myprice
:
myprice
},
function
(
data
){
...
...
@@ -158,8 +158,10 @@
}
});
}
else
{
}
else
if
(
data
==
0
)
{
alert
(
'业务员不能购买书籍'
);
}
else
{
alert
(
'业务员审核中,不能购买书籍'
)
}
});
...
...
请
注册
或
登录
后发表评论