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
566b24d2
Commit
566b24d2
authored
Oct 31, 2025
by
王炽
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab2.dui88.com/fh/20250528_FHQ1
into dev
parents
7564f230
4c499680
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
request.js
api/request.js
+6
-6
SeckillSection.less
components/SeckillSection.less
+3
-0
index.vue
v3/more/index.vue
+4
-0
No files found.
api/request.js
View file @
566b24d2
...
...
@@ -29,9 +29,9 @@ const request = (options = {}) => {
// "Content-Type": "application/x-www-form-urlencoded"
// }
// if(options.url == '/c/ai/chat/query'){
// baseUrl = "https://docs.dui88.com/mock/1956";
// baseUrl = "https://docs.dui88.com/mock/1956";
// }
return
new
Promise
((
resolve
,
reject
)
=>
{
uni
.
request
({
...
...
@@ -57,7 +57,7 @@ const request = (options = {}) => {
success
:
false
});
globalStore
.
setIsShowLoading
(
false
);
}
}
else
if
(
!
data
.
data
?.
ok
)
{
// uni.showToast({
// title: data.data?.message,
...
...
@@ -70,7 +70,7 @@ const request = (options = {}) => {
success
:
false
});
globalStore
.
setIsShowLoading
(
false
);
}
}
else
{
resolve
(
data
.
data
);
}
...
...
@@ -93,7 +93,7 @@ const get = async (url, data, options = {}) => {
options
.
type
=
"GET"
;
options
.
data
=
data
;
options
.
url
=
url
;
try
{
return
await
request
(
options
);
}
catch
(
error
)
{
...
...
@@ -106,7 +106,7 @@ const post = async (url, data, options = {}) => {
options
.
type
=
"POST"
;
options
.
data
=
data
;
options
.
url
=
url
;
try
{
return
await
request
(
options
);
}
catch
(
error
)
{
...
...
components/SeckillSection.less
View file @
566b24d2
...
...
@@ -359,6 +359,7 @@
}
.good_name {
font-weight: 500;
font-size: 24rpx;
// 颜色通过内联样式动态设置
overflow: hidden;
...
...
@@ -375,6 +376,7 @@
margin-bottom: 8rpx;
.good_price {
font-weight: 600;
font-size: 24rpx;
// 颜色通过内联样式动态设置
}
...
...
@@ -456,6 +458,7 @@
}
.good_name {
font-weight: 500;
font-size: 28rpx;
margin-bottom: 16rpx;
display: -webkit-box;
...
...
v3/more/index.vue
View file @
566b24d2
...
...
@@ -126,6 +126,10 @@ export default {
case
'partnership'
:
// 跳转到异业合作页面
// uni.navigateTo({ url: '/pages/partnership/index' })
jump
({
type
:
JumpType
.
H5
,
url
:
'https://xingmahui.wjx.cn/vm/mZCydha.aspx'
});
break
case
'feedback'
:
// 跳转到意见反馈页面
...
...
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