Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
飞
飞鹤小程序
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
FH
飞鹤小程序
Commits
e6571a75
Commit
e6571a75
authored
Nov 04, 2025
by
spc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed
parent
b47bbaae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
14 deletions
+33
-14
CanEatAnswerPopup.vue
components/CanEatAnswerPopup.vue
+24
-10
orderList.vue
v3/orderList/orderList.vue
+8
-3
My.vue
views/My.vue
+1
-1
No files found.
components/CanEatAnswerPopup.vue
View file @
e6571a75
...
@@ -9,10 +9,11 @@
...
@@ -9,10 +9,11 @@
<!-- 结果标题和图标 -->
<!-- 结果标题和图标 -->
<view
class=
"result-header"
>
<view
class=
"result-header"
>
<text
class=
"result-title"
>
{{
isCorrect
?
'你太棒了,回答正确!'
:
'快来补课吧
,
回答错误哦!'
}}
</text>
<text
class=
"result-title"
>
{{
isCorrect
?
'你太棒了,回答正确!'
:
'快来补课吧
,
回答错误哦!'
}}
</text>
<view
class=
"result-icon"
>
<view
class=
"result-icon"
>
<image
v-if=
"isCorrect"
:src=
"`$
{$baseUrl}homepage/Q3Res/eat_goodIcon.png`" mode="aspectFit">
</image>
<image
class=
"correct"
v-if=
"isCorrect"
:src=
"`$
{$baseUrl}homepage/Q3Res/eat_goodIcon.png`"
<image
v-else
:src=
"`$
{$baseUrl}homepage/Q3Res/eat_cryIcon.png`" mode="aspectFit">
</image>
mode="aspectFit">
</image>
<image
class=
"incorrect"
v-else
:src=
"`$
{$baseUrl}homepage/Q3Res/eat_cryIcon.png`" mode="aspectFit">
</image>
</view>
</view>
</view>
</view>
...
@@ -164,9 +165,9 @@ export default {
...
@@ -164,9 +165,9 @@ export default {
// 添加曝光埋点
// 添加曝光埋点
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
md
.
sensorPopLogTake
({
md
.
sensorPopLogTake
({
xcxPopExposure
:
"true"
,
xcxPopExposure
:
"true"
,
toolName
:
"能不能吃"
,
toolName
:
"能不能吃"
,
popName
:
"解析弹窗"
popName
:
"解析弹窗"
});
});
});
});
},
},
...
@@ -191,9 +192,9 @@ export default {
...
@@ -191,9 +192,9 @@ export default {
<
style
scoped
>
<
style
scoped
>
.answer-popup-container
{
.answer-popup-container
{
width
:
750
rpx
;
width
:
750
rpx
;
height
:
986
rpx
;
position
:
relative
;
position
:
relative
;
margin
:
0
auto
;
margin
:
0
auto
;
bottom
:
0
rpx
;
overflow
:
visible
;
overflow
:
visible
;
}
}
...
@@ -244,7 +245,20 @@ export default {
...
@@ -244,7 +245,20 @@ export default {
line-height
:
1.4
;
line-height
:
1.4
;
}
}
.result-icon
{
.result-icon
.correct
{
width
:
164
rpx
;
height
:
164
rpx
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
position
:
relative
;
top
:
-20
rpx
;
left
:
-170
rpx
;
}
.result-icon
.incorrect
{
width
:
164
rpx
;
width
:
164
rpx
;
height
:
164
rpx
;
height
:
164
rpx
;
display
:
flex
;
display
:
flex
;
...
@@ -252,7 +266,7 @@ export default {
...
@@ -252,7 +266,7 @@ export default {
justify-content
:
center
;
justify-content
:
center
;
position
:
relative
;
position
:
relative
;
top
:
0
rpx
;
top
:
0
rpx
;
left
:
-1
4
0
rpx
;
left
:
-1
2
0
rpx
;
}
}
.result-icon
image
{
.result-icon
image
{
...
@@ -356,7 +370,7 @@ export default {
...
@@ -356,7 +370,7 @@ export default {
.analysis-section
{
.analysis-section
{
background
:
#FFFFFF
;
background
:
#FFFFFF
;
height
:
446
rpx
;
max-
height
:
446
rpx
;
padding
:
40
rpx
;
padding
:
40
rpx
;
border-radius
:
36
rpx
;
border-radius
:
36
rpx
;
margin-bottom
:
40
rpx
;
margin-bottom
:
40
rpx
;
...
...
v3/orderList/orderList.vue
View file @
e6571a75
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
<text
class=
"product-name"
>
{{
order
.
productName
}}
</text>
<text
class=
"product-name"
>
{{
order
.
productName
}}
</text>
<text
class=
"product-points"
>
{{
order
.
points
}}{{
order
.
creditsTypeName
}}
</text>
<text
class=
"product-points"
>
{{
order
.
points
}}{{
order
.
creditsTypeName
}}
</text>
</view>
</view>
<
text
class=
"product-description"
>
{{
order
.
description
}}
</text
>
<
!--
<text
class=
"product-description"
>
{{
order
.
description
}}
</text>
--
>
<!-- 卡券有效期 -->
<!-- 卡券有效期 -->
<text
v-if=
"order.productType === 'coupon' && order.validUntil"
class=
"validity-period"
>
<text
v-if=
"order.productType === 'coupon' && order.validUntil"
class=
"validity-period"
>
...
@@ -115,8 +115,8 @@ export default {
...
@@ -115,8 +115,8 @@ export default {
// 遍历订单列表,为显示"查看详情"按钮的订单添加曝光埋点
// 遍历订单列表,为显示"查看详情"按钮的订单添加曝光埋点
this
.
orderList
.
forEach
((
order
)
=>
{
this
.
orderList
.
forEach
((
order
)
=>
{
// 只有当订单状态不是 pending_payment、pending_use、pending_take 时才显示"查看详情"按钮
// 只有当订单状态不是 pending_payment、pending_use、pending_take 时才显示"查看详情"按钮
if
(
order
.
status
!==
'pending_payment'
&&
if
(
order
.
status
!==
'pending_payment'
&&
order
.
status
!==
'pending_use'
&&
order
.
status
!==
'pending_use'
&&
order
.
status
!==
'pending_take'
)
{
order
.
status
!==
'pending_take'
)
{
md
.
sensorComponentLogTake
({
md
.
sensorComponentLogTake
({
xcxComponentExposure
:
"true"
,
xcxComponentExposure
:
"true"
,
...
@@ -548,6 +548,7 @@ export default {
...
@@ -548,6 +548,7 @@ export default {
flex
:
1
;
flex
:
1
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
justify-content
:
space-between
;
}
}
.product-name-row
{
.product-name-row
{
...
@@ -558,11 +559,15 @@ export default {
...
@@ -558,11 +559,15 @@ export default {
}
}
.product-name
{
.product-name
{
width
:
350
rpx
;
font-size
:
30
rpx
;
font-size
:
30
rpx
;
color
:
#333333
;
color
:
#333333
;
font-weight
:
600
;
font-weight
:
600
;
flex
:
1
;
flex
:
1
;
margin-right
:
20
rpx
;
margin-right
:
20
rpx
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
.product-points
{
.product-points
{
...
...
views/My.vue
View file @
e6571a75
...
@@ -106,7 +106,7 @@
...
@@ -106,7 +106,7 @@
<!-- 完成任务模块 -->
<!-- 完成任务模块 -->
<view
class=
"task-module"
<view
class=
"task-module"
v-if=
"
!cfgStatus.isRegister ||
(babyInfo?.allBabyBaseInfo && babyInfo.allBabyBaseInfo.length > 0)"
>
v-if=
"
cfgStatus.isRegister &&
(babyInfo?.allBabyBaseInfo && babyInfo.allBabyBaseInfo.length > 0)"
>
<image
class=
"task-guide-bg"
:src=
"$baseUrl + 'homepage/Q3Res/my_taskGuideBg.png'"
></image>
<image
class=
"task-guide-bg"
:src=
"$baseUrl + 'homepage/Q3Res/my_taskGuideBg.png'"
></image>
<image
class=
"task-do-btn"
:src=
"$baseUrl + 'homepage/Q3Res/my_taskDoBtn.png'"
@
tap=
"handleTaskClick"
></image>
<image
class=
"task-do-btn"
:src=
"$baseUrl + 'homepage/Q3Res/my_taskDoBtn.png'"
@
tap=
"handleTaskClick"
></image>
</view>
</view>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment