Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
laki_icu_app
Project
Project
Details
Activity
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张宏
laki_icu_app
Commits
1f35a9b7
Commit
1f35a9b7
authored
Jun 20, 2026
by
张宏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整全屏文字
parent
21360be7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
prod.json
env/prod.json
+1
-1
auth_repository.dart
lib/repositories/auth_repository.dart
+3
-3
video_fullscreen_page.dart
lib/views/home/index/widgets/video_fullscreen_page.dart
+8
-8
No files found.
env/prod.json
View file @
1f35a9b7
{
"APP_ENV"
:
"prod"
,
"SERVICE_URL"
:
"http
s://api.yourdomain.com
"
"SERVICE_URL"
:
"http
://121.41.173.189/laki-merchant-service
"
}
lib/repositories/auth_repository.dart
View file @
1f35a9b7
...
...
@@ -8,9 +8,9 @@ import 'mock/auth_mock_data.dart';
class
AuthRepository
{
Future
<
ResponseModel
<
LoginModel
>>
login
(
String
phone
,
String
smsCode
)
{
if
(
Constants
.
useMockData
)
{
return
_mockLogin
();
}
//
if (Constants.useMockData) {
//
return _mockLogin();
//
}
return
DioRequest
.
instance
.
post
<
LoginModel
>(
'/merchant/account/sms-login'
,
data:
{
'phone'
:
phone
,
'smsCode'
:
smsCode
},
...
...
lib/views/home/index/widgets/video_fullscreen_page.dart
View file @
1f35a9b7
...
...
@@ -37,8 +37,8 @@ class VideoFullscreenPage extends StatelessWidget {
children:
[
// 根据模式渲染不同的视频画面
_buildVideoContent
(),
//
顶
部提示栏
_build
Top
Bar
(),
//
底
部提示栏
_build
Bottom
Bar
(),
],
),
),
...
...
@@ -59,18 +59,18 @@ class VideoFullscreenPage extends StatelessWidget {
return
const
SizedBox
.
shrink
();
}
///
顶部提示栏
Widget
_build
Top
Bar
()
{
///
底部提示栏(左下角)
Widget
_build
Bottom
Bar
()
{
return
Positioned
(
top
:
0
,
bottom
:
0
,
left:
0
,
right:
0
,
child:
Container
(
padding:
const
EdgeInsets
.
fromLTRB
(
20
,
48
,
20
,
12
),
padding:
const
EdgeInsets
.
fromLTRB
(
20
,
12
,
20
,
48
),
decoration:
const
BoxDecoration
(
gradient:
LinearGradient
(
begin:
Alignment
.
top
Center
,
end:
Alignment
.
bottom
Center
,
begin:
Alignment
.
bottom
Center
,
end:
Alignment
.
top
Center
,
colors:
[
Colors
.
black54
,
Colors
.
transparent
],
),
),
...
...
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