Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
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
viitto
mallapp
Commits
e344f711
Commit
e344f711
authored
Oct 19, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
字体大小,购物车底部调整
parent
7d1aefea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
address2.vue
pages/address/address2.vue
+6
-0
cart.vue
pages/cart/cart.vue
+6
-5
order-submit2.vue
pages/order-submit/order-submit2.vue
+2
-2
No files found.
pages/address/address2.vue
View file @
e344f711
...
@@ -146,6 +146,7 @@
...
@@ -146,6 +146,7 @@
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
pageTitle
:
'学员录入'
,
title
:
'选择就读学校'
,
title
:
'选择就读学校'
,
u
:
{},
u
:
{},
School_Id
:
''
,
//要传的校区id
School_Id
:
''
,
//要传的校区id
...
@@ -186,6 +187,11 @@
...
@@ -186,6 +187,11 @@
created
()
{
created
()
{
this
.
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
this
.
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
},
},
mounted
()
{
uni
.
setNavigationBarTitle
({
title
:
this
.
pageTitle
,
});
},
methods
:
{
methods
:
{
// 提交表单
// 提交表单
registered
()
{
registered
()
{
...
...
pages/cart/cart.vue
View file @
e344f711
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
{{
item
.
GoodsName
}}
{{
item
.
GoodsName
}}
</view>
</view>
<view
style=
"width: 440rpx;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;"
v-if=
"IsEducation!=1"
>
<view
style=
"width: 440rpx;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;"
v-if=
"IsEducation!=1"
>
<Text
v-for=
"(attr, inde2x) in item.SpecificationList"
:key=
"inde2x"
style=
"color: #a0a09d;font-size: 2
0
rpx;margin-right: 5rpx;"
>
<Text
v-for=
"(attr, inde2x) in item.SpecificationList"
:key=
"inde2x"
style=
"color: #a0a09d;font-size: 2
2
rpx;margin-right: 5rpx;"
>
{{
attr
}}
{{
attr
}}
</Text>
</Text>
</view>
</view>
...
@@ -77,11 +77,11 @@
...
@@ -77,11 +77,11 @@
</view>
</view>
</view>
</view>
<!-- 新增上课时间 -->
<!-- 新增上课时间 -->
<Text
v-if=
'u.TenantId==27&&item.EduData.ClassTime'
style=
"color: #a0a09d;font-size: 2
0
rpx;margin-right: 5rpx;"
>
<Text
v-if=
'u.TenantId==27&&item.EduData.ClassTime'
style=
"color: #a0a09d;font-size: 2
2
rpx;margin-right: 5rpx;"
>
上课时间:
{{
item
.
EduData
.
ClassTime
}}
上课时间:
{{
item
.
EduData
.
ClassTime
}}
</Text>
</Text>
<!-- 课程数量 -->
<!-- 课程数量 -->
<Text
v-if=
'u.TenantId==27&&item.EduData.ClassNum'
style=
"color: #a0a09d;font-size: 2
0
rpx;margin-right: 5rpx;"
>
<Text
v-if=
'u.TenantId==27&&item.EduData.ClassNum'
style=
"color: #a0a09d;font-size: 2
2
rpx;margin-right: 5rpx;"
>
课程数量:
{{
item
.
EduData
.
ClassNum
}}
次
课程数量:
{{
item
.
EduData
.
ClassNum
}}
次
</Text>
</Text>
...
@@ -96,7 +96,7 @@
...
@@ -96,7 +96,7 @@
</view>
</view>
<!-- 新增绑定物品 -->
<!-- 新增绑定物品 -->
<view
v-if=
'u.TenantId==27'
v-for=
"(attr2, inde4x) in item.GoodsRelevanceList"
:key=
"inde4x"
>
<view
v-if=
'u.TenantId==27'
v-for=
"(attr2, inde4x) in item.GoodsRelevanceList"
:key=
"inde4x"
>
<Text
v-if=
'attr2.RelevanceName'
style=
"color: #a0a09d;font-size: 2
0
rpx;margin-right: 5rpx;"
>
<Text
v-if=
'attr2.RelevanceName'
style=
"color: #a0a09d;font-size: 2
2
rpx;margin-right: 5rpx;"
>
已选物品:
{{
attr2
.
RelevanceName
}}
已选物品:
{{
attr2
.
RelevanceName
}}
</Text>
</Text>
<view
v-if=
'attr2.RelevancePrice'
style=
"font-size: 30rpx;"
:style=
"
{ color: pricecolor }">
<view
v-if=
'attr2.RelevancePrice'
style=
"font-size: 30rpx;"
:style=
"
{ color: pricecolor }">
...
@@ -215,7 +215,8 @@
...
@@ -215,7 +215,8 @@
},
},
mounted
()
{
mounted
()
{
let
currentPages
=
getCurrentPages
();
let
currentPages
=
getCurrentPages
();
let
c
=
this
.
$uiConfig
.
is_bang
?
80
:
52
;
// let c = this.$uiConfig.is_bang ? 80 : 52;
let
c
=
this
.
$uiConfig
.
is_bang
?
80
:
65
;
this
.
bottommargin
=
c
-
2
+
'px'
;
this
.
bottommargin
=
c
-
2
+
'px'
;
this
.
listbottom
=
c
+
44
+
'px'
;
this
.
listbottom
=
c
+
44
+
'px'
;
this
.
contentHeight
=
this
.
$utils
.
calcContentHeight
(
c
-
42
)
+
'px'
;
this
.
contentHeight
=
this
.
$utils
.
calcContentHeight
(
c
-
42
)
+
'px'
;
...
...
pages/order-submit/order-submit2.vue
View file @
e344f711
...
@@ -876,11 +876,11 @@
...
@@ -876,11 +876,11 @@
}
}
.switch-box2
{
.switch-box2
{
font-size
:
2
5
rpx
;
font-size
:
2
8
rpx
;
}
}
.switch-box3
{
.switch-box3
{
font-size
:
18
rpx
;
font-size
:
24
rpx
;
color
:
#999
;
color
:
#999
;
}
}
...
...
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