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
e86f32dc
Commit
e86f32dc
authored
Nov 06, 2025
by
王炽
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.dui88.com/fh/20250528_FHQ1
into dev
parents
02868c86
a023651b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
7 deletions
+20
-7
CanEatAnswerPopup.vue
components/CanEatAnswerPopup.vue
+1
-1
webview.vue
pages/gameWebview/webview.vue
+6
-3
Home.vue
views/Home.vue
+13
-3
No files found.
components/CanEatAnswerPopup.vue
View file @
e86f32dc
...
...
@@ -194,7 +194,7 @@ export default {
width
:
750
rpx
;
position
:
relative
;
margin
:
0
auto
;
bottom
:
0
rpx
;
bottom
:
-8
0
rpx
;
overflow
:
visible
;
}
...
...
pages/gameWebview/webview.vue
View file @
e86f32dc
...
...
@@ -138,10 +138,13 @@ const initWebviewUrl = async () => {
// 获取会员信息(优先从 memberInfo 获取,如果没有则从 userInfo 获取)
const
memberInfo
=
userStore
.
memberInfo
||
userStore
.
userInfo
const
babyInfo
=
userStore
.
babyInfo
// 添加微信昵称(如果存在)
if
(
memberInfo
?.
memberName
)
{
params
.
wxNickName
=
memberInfo
.
memberName
// 添加微信昵称(优先使用 babyInfo.babyName,没有则使用默认值)
if
(
babyInfo
?.
babyName
)
{
params
.
wxNickName
=
babyInfo
.
babyName
}
else
{
params
.
wxNickName
=
'暂无昵称'
}
// 添加 memberId(如果已注册)
...
...
views/Home.vue
View file @
e86f32dc
...
...
@@ -369,6 +369,8 @@
<!-- 金币动画模块 -->
<view
class=
"gold-coin-animation"
v-if=
"showGoldCoinAnimation"
@
tap=
"hideGoldCoinAnimation"
>
<!-- 背景底 -->
<view
class=
"gold-coin-background"
></view>
<view
class=
"gold-coin-content"
@
tap
.
stop
>
<view
class=
"gold-coin-title"
>
{{
goldCoinConfig
.
title
}}
</view>
<view
class=
"gold-coin-description"
>
{{
goldCoinConfig
.
description
}}
</view>
...
...
@@ -2655,17 +2657,24 @@ export default {
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
animation: fadeIn 0.3s ease-out;
}
/* 背景底 */
.gold-coin-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
}
.gold-coin-
animation
::after {
.gold-coin-
background
::after {
content: '';
position: absolute;
bottom: 42rpx;
...
...
@@ -2682,6 +2691,7 @@ export default {
.gold-coin-content {
text-align: center;
padding: 60rpx 40rpx;
z-index: 1;
}
.gold-coin-title {
...
...
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