Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
沈志敏
9 years ago
Commit
f6ab94486b90410bff5556f6678657a248eba37f
1 parent
1d82d13c
fix bug
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
public/vue/me/fav-brand-list.vue
public/vue/me/fav-product-list.vue
public/vue/me/fav-brand-list.vue
View file @
f6ab944
...
...
@@ -4,7 +4,8 @@
<li v-for="item in brandData" track-by="fav_id" id="li-{{item.fav_id}}"
v-touch:panstart="panstart(item.fav_id)"
v-touch:panmove="panmove(item.fav_id)"
v-touch:panend="panend(item.fav_id)">
v-touch:panend="panend(item.fav_id)"
v-touch-options:pan="{direction:'horizontal'}">
<div class="fav-del-left {{editmodel ? 'delshow': ''}}" @click="showDelBtn(item.fav_id)">
<span class="fav-del-span"><span class="icon icon-edit-del"></span></span>
</div>
...
...
public/vue/me/fav-product-list.vue
View file @
f6ab944
...
...
@@ -4,7 +4,8 @@
<li v-for="item in productData" track-by="fav_id" id="li-{{item.fav_id}}"
v-touch:panstart="panstart(item.fav_id)"
v-touch:panmove="panmove(item.fav_id)"
v-touch:panend="panend(item.fav_id)">
v-touch:panend="panend(item.fav_id)"
v-touch-options:pan="{ direction: 'horizontal' }">
<div class="fav-del-left {{editmodel ? 'delshow': ''}}" @click="showDelBtn(item.fav_id)">
<span class="fav-del-span"><span class="icon icon-edit-del"></span></span>
</div>
...
...
Please
register
or
login
to post a comment