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
Plain Diff
Browse Files
Authored by
陈轩
9 years ago
Commit
ca2c748ca13b0e5a85131e85b5c2fb7657a3b986
2 parents
3b3930a4
9a5ca543
Merge remote-tracking branch 'origin/develop' into develop
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
76 additions
and
66 deletions
public/vue/channel/brand-cate.vue
public/vue/me/fav-brand-list.vue
public/vue/me/fav-product-list.vue
public/vue/me/order-detail.vue
public/vue/me/order.vue
public/vue/product/shop/shop-top.vue
public/vue/channel/brand-cate.vue
View file @
ca2c748
...
...
@@ -232,8 +232,8 @@
this.leftcurrent = index;
this.cateNavRightData = this.cateNavLeftData[index].sub;
this.rightAll = {
sortId: categoryId,
categoryName: categoryName
sortId: categoryId ? categoryId : '',
categoryName: categoryName ? categoryName : ''
};
},
...
...
public/vue/me/fav-brand-list.vue
View file @
ca2c748
...
...
@@ -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', threshold: 100}">
<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>
...
...
@@ -135,25 +136,24 @@
},
panstart(id) {
event.preventDefault();
if (this.editmodel && this.pandata.id !== id) {
if (this.pandata.id && this.pandata.id !== id) {
$('#li-' + this.pandata.id).css('transform', 'translateX(0px)');
$('#del-' + this.pandata.id).addClass('hide');
return false;
}
} else {
this.pageX = event.targetTouches[0].pageX;
var delBtn = $('#del-' + id);
$('#del-' + id).removeClass('hide');
this.pageX = event.targetTouches[0].pageX;
if (this.pandata.id !== id) {
if (this.pandata.id !== undefined) {
$('#li-' + this.pandata.id).css('transform', 'translateX(0px)');
$('#del-' + this.pandata.id).addClass('hide');
if (delBtn.hasClass('hide')) {
delBtn.removeClass('hide');
this.pandata.objX = 0;
this.pandata.id = id;
}
this.pandata.objX = 0;
this.pandata.id = id;
}
},
panmove(id) {
event.preventDefault();
if (this.
editmodel
&& this.pandata.id !== id) {
if (this.
pandata.id
&& this.pandata.id !== id) {
return false;
}
...
...
@@ -180,7 +180,8 @@
},
panend(id) {
event.preventDefault();
if (this.editmodel && this.pandata.id !== id) {
if (this.pandata.id && this.pandata.id !== id) {
this.pandata = {};
return false;
}
...
...
@@ -196,9 +197,18 @@
}
li.css('transform', 'translateX(' + this.pandata.objX + 'px)');
if (this.
editmodel && this.pandata.id === id && this.
pandata.objX === 0) {
if (this.pandata.objX === 0) {
this.pandata = {};
}
},
updateNavBar() {
const header = $.extend({}, interceptClick.defaultTitleMap[5]);
header.defaultSelectedIndex = '1';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.updateNavigationBar({
header: header
});
}
},
created() {
...
...
@@ -209,14 +219,13 @@
this.hideDelBth();
this.editmodel = !this.editmodel;
this.updateNavBar();
});
let header = $.extend({}, interceptClick.defaultTitleMap[5]);
header.defaultSelectedIndex = '1';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.updateNavigationBar({
header: header
});
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
this.updateNavBar();
}
});
}
};
...
...
public/vue/me/fav-product-list.vue
View file @
ca2c748
<template>
<div class="fav-type" v-infinite-scroll="loadMore()" infinite-scroll-disabled="busy" infinite-scroll-distance="10">
<div class="fav-type" v-infinite-scroll="loadMore()" infinite-scroll-disabled="busy" infinite-scroll-distance="10"
>
<ul class="fav-product-list">
<li v-for="item in productData" track-by="fav_id" id="li-{{item.fav_id}}"
v-touch-options:pan="{ direction: 'horizontal', threshold: 100}"
v-touch:panstart="panstart(item.fav_id)"
v-touch:panmove="panmove(item.fav_id)"
v-touch:panend="panend(item.fav_id)">
...
...
@@ -54,8 +55,8 @@
page: 0,
pageX: 0,
currentX: 0,
pandata: {},
productData: [],
pandata: {},
keys: {}
};
},
...
...
@@ -153,25 +154,24 @@
},
panstart(id) {
event.preventDefault();
if (this.editmodel && this.pandata.id !== id) {
if (this.pandata.id && this.pandata.id !== id) {
$('#li-' + this.pandata.id).css('transform', 'translateX(0px)');
$('#del-' + this.pandata.id).addClass('hide');
return false;
}
} else {
this.pageX = event.targetTouches[0].pageX;
var delBtn = $('#del-' + id);
$('#del-' + id).removeClass('hide');
this.pageX = event.targetTouches[0].pageX;
if (this.pandata.id !== id) {
if (this.pandata.id !== undefined) {
$('#li-' + this.pandata.id).css('transform', 'translateX(0px)');
$('#del-' + this.pandata.id).addClass('hide');
if (delBtn.hasClass('hide')) {
delBtn.removeClass('hide');
this.pandata.objX = 0;
this.pandata.id = id;
}
this.pandata.objX = 0;
this.pandata.id = id;
}
},
panmove(id) {
event.preventDefault();
if (this.
editmodel
&& this.pandata.id !== id) {
if (this.
pandata.id
&& this.pandata.id !== id) {
return false;
}
...
...
@@ -198,7 +198,8 @@
},
panend(id) {
event.preventDefault();
if (this.editmodel && this.pandata.id !== id) {
if (this.pandata.id && this.pandata.id !== id) {
this.pandata = {};
return false;
}
...
...
@@ -214,9 +215,18 @@
}
li.css('transform', 'translateX(' + this.pandata.objX + 'px)');
if (this.
editmodel && this.pandata.id === id && this.
pandata.objX === 0) {
if (this.pandata.objX === 0) {
this.pandata = {};
}
},
updateNavBar() {
const header = $.extend({}, interceptClick.defaultTitleMap[5]);
header.defaultSelectedIndex = '0';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.updateNavigationBar({
header: header
});
}
},
created() {
...
...
@@ -227,14 +237,13 @@
this.hideDelBth();
this.editmodel = !this.editmodel;
this.updateNavBar();
});
let header = $.extend({}, interceptClick.defaultTitleMap[5]);
header.defaultSelectedIndex = '0';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.updateNavigationBar({
header: header
});
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
this.updateNavBar();
}
});
}
};
...
...
public/vue/me/order-detail.vue
View file @
ca2c748
...
...
@@ -111,7 +111,7 @@
if (Number(this.order.status) === 0) {
this.getCancelReason();
}
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}).fail(() => {
...
...
@@ -126,7 +126,7 @@
}, (result) => {
if (result.code === 200) {
location.reload();
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}, () => {
...
...
@@ -189,7 +189,7 @@
if (result.code === 200) {
interceptClick.intercept('/me/order?type=1');
return false;
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}).fail(() => {
...
...
@@ -207,7 +207,7 @@
}).then(result => {
if (result.code === 200) {
location.reload();
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}).fail(() => {
...
...
@@ -228,11 +228,7 @@
dropDown(elementId) {
let dropdown = document.getElementById(elementId);
try {
this.showDropdown(dropdown);
} catch(e) {
console.log(e)
}
this.showDropdown(dropdown);
return false;
},
showDropdown(element) {
...
...
public/vue/me/order.vue
View file @
ca2c748
...
...
@@ -122,7 +122,7 @@
}, (result) => {
if (result.code === 200) {
location.reload();
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}, () => {
...
...
@@ -187,7 +187,7 @@
}).then(result => {
if (result.code === 200) {
_that.orderList.splice(index, 1);
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}).fail(() => {
...
...
@@ -205,7 +205,7 @@
}).then(result => {
if (result.code === 200) {
location.reload();
} else {
} else
if (result.code !== 500)
{
tip(result.message);
}
}).fail(() => {
...
...
@@ -218,11 +218,7 @@
dropDown(elementId){
let dropdown = document.getElementById(elementId);
try {
this.showDropdown(dropdown);
} catch(e) {
console.log(e)
}
this.showDropdown(dropdown);
return false;
},
showDropdown(element) {
...
...
public/vue/product/shop/shop-top.vue
View file @
ca2c748
...
...
@@ -45,7 +45,7 @@
.brand-intro-transition {
transition: all 0.3s ease;
font-size:
16
px;
font-size:
20
px;
line-height: 32px;
width: 90%;
height: 220px;
...
...
@@ -60,7 +60,7 @@
.brand-short {
height: 60px !important;
display: -webkit-box !important;
font-size:
16
px;
font-size:
20
px;
line-height: 32px;
width: 90%;
text-overflow: ellipsis;
...
...
Please
register
or
login
to post a comment