Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
31e9c5912d5d94c76c4e639c04a84b9f51141f49
1 parent
aa2b2bab
修复我的消息中领取生日券的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
2 deletions
library/LibModels/Wap/Home/UserData.php
static/js/me/message-detail.js
template/m.yohobuy.com/partials/layout/use.phtml
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/models/Index/User.php
library/LibModels/Wap/Home/UserData.php
View file @
31e9c59
...
...
@@ -493,6 +493,23 @@ class UserData
}
/**
* vip会员领取生日券
* @param type $uid 用户id
* @param type $couponId 生日券号
* @return type
*/
public
static
function
getBirthCoupon
(
$uid
,
$couponId
)
{
$param
=
Yohobuy
::
param
();
$param
[
'method'
]
=
'app.promotion.getCoupon'
;
$param
[
'uid'
]
=
$uid
;
$param
[
'couponId'
]
=
$couponId
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
);
}
/**
* 在线客服接口
*
* @return array 消息接口返回的数据
...
...
static/js/me/message-detail.js
0 → 100644
View file @
31e9c59
var
$
=
require
(
'jquery'
),
dialog
=
require
(
'./dialog'
);
var
$page
=
$
(
'.massage-page'
);
var
pickBusy
=
false
;
// 领取生日券
$page
.
on
(
'touchstart'
,
'.pick-coupon-btn'
,
function
()
{
if
(
pickBusy
)
{
return
;
}
pickBusy
=
true
;
var
$id
=
$
(
this
).
data
(
'id'
);
$
.
ajax
({
type
:
'POST'
,
url
:
'/home/pickCoupon'
,
data
:
{
id
:
$id
},
success
:
function
(
data
)
{
if
(
data
.
code
===
200
)
{
dialog
.
showDialog
({
dialogText
:
'领取成功'
,
autoHide
:
2000
,
fast
:
true
});
$
(
this
).
removeClass
(
'pick-coupon-btn'
);
}
pickBusy
=
false
;
dialog
.
showDialog
({
dialogText
:
data
.
message
,
autoHide
:
2000
,
fast
:
true
});
}
});
});
...
...
template/m.yohobuy.com/partials/layout/use.phtml
View file @
31e9c59
...
...
@@ -345,3 +345,8 @@
seajs.use('js/me/message');
</script>
{{/if}}
{{#if messageDetailPage}}
<script>
seajs.use('js/me/message-detail');
</script>
{{/if}}
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
31e9c59
...
...
@@ -334,6 +334,8 @@ class HomeController extends AbstractAction
$uid
=
$this
->
getUid
(
true
);
$data
=
UserModel
::
getMessageDetail
(
$uid
,
$id
);
$data
[
'pageFooter'
]
=
true
;
$data
[
'messageDetailPage'
]
=
true
;
$this
->
_view
->
display
(
'message-main'
,
$data
);
}
...
...
@@ -351,7 +353,7 @@ class HomeController extends AbstractAction
}
$uid
=
$this
->
getUid
(
true
);
$id
=
$this
->
ge
t
(
'id'
,
0
);
$id
=
$this
->
pos
t
(
'id'
,
0
);
$result
=
UserModel
::
pickBirthCoupon
(
$uid
,
$id
);
}
while
(
false
);
...
...
yohobuy/m.yohobuy.com/application/models/Index/User.php
View file @
31e9c59
...
...
@@ -935,10 +935,11 @@ class UserModel
break
;
}
$coupon
=
UserData
::
getBirthCoupon
ById
(
$uid
,
$id
);
$coupon
=
UserData
::
getBirthCoupon
(
$uid
,
$id
);
if
(
!
isset
(
$coupon
[
'code'
]))
{
break
;
}
$result
=
$coupon
;
}
while
(
false
);
...
...
Please
register
or
login
to post a comment