Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jz_Travel
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
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
zhengke
jz_Travel
Commits
9dc3a2c3
Commit
9dc3a2c3
authored
Mar 18, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化样式
parent
672d031a
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
6 deletions
+25
-6
AggregateOrdersList.vue
pages/AggregateOrders/AggregateOrdersList.vue
+10
-1
AggregateOrdersSearch.vue
pages/AggregateOrders/AggregateOrdersSearch.vue
+11
-3
header.vue
pages/AggregateOrders/components/header.vue
+1
-1
searchHeader.vue
pages/AggregateOrders/components/searchHeader.vue
+1
-1
userHeader.vue
pages/user-center/components/userHeader.vue
+1
-0
vipUserHeader.vue
pages/user-center/components/vipUserHeader.vue
+1
-0
No files found.
pages/AggregateOrders/AggregateOrdersList.vue
View file @
9dc3a2c3
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
</
style
>
</
style
>
<
template
>
<
template
>
<view
class=
"AggOrdBox column"
>
<view
class=
"AggOrdBox column"
>
<view
class=
"AggOrdHeader"
>
<view
class=
"AggOrdHeader"
:style=
"[titleStyle]"
>
<AggOrdHeader
:title=
"pageTitle"
<AggOrdHeader
:title=
"pageTitle"
@
change=
"getOrderType"
@
change=
"getOrderType"
:params=
"msg"
></AggOrdHeader>
:params=
"msg"
></AggOrdHeader>
...
@@ -113,6 +113,7 @@
...
@@ -113,6 +113,7 @@
index
:
0
,
index
:
0
,
payindex
:
0
,
payindex
:
0
,
showAuth
:
false
,
showAuth
:
false
,
titleStyle
:{},
}
}
},
},
onLoad
(
options
){
onLoad
(
options
){
...
@@ -121,6 +122,14 @@
...
@@ -121,6 +122,14 @@
},
},
created
()
{
created
()
{
const
that
=
this
uni
.
getSystemInfo
({
success
(
res
)
{
that
.
titleStyle
=
{
paddingTop
:
`
${
res
.
statusBarHeight
}
px`
};
},
});
this
.
getOrderEnums
()
this
.
getOrderEnums
()
this
.
research
()
this
.
research
()
},
},
...
...
pages/AggregateOrders/AggregateOrdersSearch.vue
View file @
9dc3a2c3
...
@@ -78,11 +78,10 @@
...
@@ -78,11 +78,10 @@
</
style
>
</
style
>
<
template
>
<
template
>
<view
class=
"AggOrdBox column"
>
<view
class=
"AggOrdBox column"
>
<view
class=
"AggOrdHeader"
>
<view
class=
"AggOrdHeader"
:style=
"[titleStyle]"
>
<AggOrdSearch
<AggOrdSearch
@
change=
"change"
@
change=
"change"
:params=
"msg"
></AggOrdSearch>
:params=
"msg"
></AggOrdSearch>
</view>
</view>
<view
class=
"col"
style=
"height: 1px;flex: 1;overflow: hidden;padding-top: 40rpx;"
>
<view
class=
"col"
style=
"height: 1px;flex: 1;overflow: hidden;padding-top: 40rpx;"
>
<view
v-if=
"!msg.keyword"
>
<view
v-if=
"!msg.keyword"
>
...
@@ -194,7 +193,8 @@
...
@@ -194,7 +193,8 @@
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247342163794.jpg'
,
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247342163794.jpg'
,
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247230118434.jpg'
,
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247230118434.jpg'
,
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247194112722.jpg'
,
'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638772247194112722.jpg'
,
]
],
titleStyle
:
{},
}
}
},
},
onLoad
(
options
){
onLoad
(
options
){
...
@@ -203,6 +203,14 @@
...
@@ -203,6 +203,14 @@
}
}
},
},
created
()
{
created
()
{
const
that
=
this
uni
.
getSystemInfo
({
success
(
res
)
{
that
.
titleStyle
=
{
paddingTop
:
`
${
res
.
statusBarHeight
}
px`
};
},
});
// #ifdef MP-AG
// #ifdef MP-AG
this
.
getEnumList
()
this
.
getEnumList
()
// #endif
// #endif
...
...
pages/AggregateOrders/components/header.vue
View file @
9dc3a2c3
...
@@ -197,7 +197,7 @@ export default {
...
@@ -197,7 +197,7 @@ export default {
position
:
relative
;
position
:
relative
;
}
}
.carrHeader
{
.carrHeader
{
padding-top
:
85rpx
;
//
padding-top: 85rpx;
}
}
.carrHeader-right
{
.carrHeader-right
{
padding-right
:
200rpx
;
padding-right
:
200rpx
;
...
...
pages/AggregateOrders/components/searchHeader.vue
View file @
9dc3a2c3
...
@@ -109,7 +109,7 @@ export default {
...
@@ -109,7 +109,7 @@ export default {
position
:
relative
;
position
:
relative
;
}
}
.carrHeader
{
.carrHeader
{
padding-top
:
85rpx
;
//
padding-top: 85rpx;
}
}
.carrHeader-right
{
.carrHeader-right
{
width
:
1px
;
width
:
1px
;
...
...
pages/user-center/components/userHeader.vue
View file @
9dc3a2c3
...
@@ -171,6 +171,7 @@
...
@@ -171,6 +171,7 @@
text-align
:
center
;
text-align
:
center
;
font-size
:
16px
;
font-size
:
16px
;
color
:
#000
;
color
:
#000
;
margin-top
:
15rpx
;
}
}
.userHeadPic
{
.userHeadPic
{
padding
:
49rpx
20rpx
25rpx
62rpx
;
padding
:
49rpx
20rpx
25rpx
62rpx
;
...
...
pages/user-center/components/vipUserHeader.vue
View file @
9dc3a2c3
...
@@ -165,6 +165,7 @@
...
@@ -165,6 +165,7 @@
text-align
:
center
;
text-align
:
center
;
font-size
:
16px
;
font-size
:
16px
;
color
:
#FFF
;
color
:
#FFF
;
margin-top
:
15rpx
;
}
}
.userHeadPic
{
.userHeadPic
{
padding
:
37rpx
20rpx
78rpx
54rpx
;
padding
:
37rpx
20rpx
78rpx
54rpx
;
...
...
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