Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shop_mobile_uni
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
郑秀明
shop_mobile_uni
Commits
71103f7f
Commit
71103f7f
authored
Apr 17, 2020
by
王建威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
f1d8bf60
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
installmentinfo.vue
pages/installment/installmentinfo.vue
+16
-3
No files found.
pages/installment/installmentinfo.vue
View file @
71103f7f
...
...
@@ -88,7 +88,7 @@
<text
class=
"focus_shop"
v-if=
"data.EquipmentInfo.collect_store === 1"
@
click=
"collectShop(data.StoreInfo.store_id, 0)"
>
已关注
</text>
</view>
<view
class=
"shop_goods"
>
<view
class=
"shop_goods_item"
v-for=
"(val, index) in data.EquipmentList"
:key=
"index"
>
<view
class=
"shop_goods_item"
v-for=
"(val, index) in data.EquipmentList"
:key=
"index"
@
click=
"jumpDetail(val.equipment_id)"
>
<image
:src=
"val.img_url"
></image>
<view
class=
"shop_goods_name"
>
{{
val
.
equipment_name
}}
</view>
<view
class=
"shop_goods_price"
><text
v-if=
"isLogin"
>
¥
</text>
{{
isLogin
?
val
.
equipment_price
:
'登录显示价格'
}}
</view>
...
...
@@ -297,7 +297,12 @@
}
}
})
}
},
jumpDetail
(
id
)
{
uni
.
navigateTo
({
url
:
`/pages/installment/installmentinfo?id=
${
id
}
`
,
});
},
},
components
:
{
uniPopup
,
...
...
@@ -586,13 +591,18 @@
display: block;
}
}
.shop_goods::-webkit-scrollbar {
display: none;
}
.shop_goods {
display: flex;
justify-content:
space-between
;
justify-content:
flex-start
;
padding: 40rpx 24rpx 24rpx;
background: #FFFFFF;
overflow: scroll;
.shop_goods_item {
width: 160rpx;
margin-right: 20rpx;
image {
width: 120rpx;
height: 120rpx;
...
...
@@ -622,6 +632,9 @@
text-align: center;
}
}
.shop_goods_item:last-child {
margin-right: 0;
}
}
.goods_info_bottom_bar {
width: 100%;
...
...
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