Authored by 毕凯

Merge branch 'gray'

{
"name": "yohobuywap-node",
"version": "6.5.30",
"version": "6.5.31",
"private": true,
"description": "A New Yohobuy Project With Express",
"repository": {
... ...

1.92 KB | W: | H:

2.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2 KB | W: | H:

1.92 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.08 KB | W: | H:

2.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -32,7 +32,7 @@ let goodObj = {
$('.good-item').on('click', '.edit-size-info', function(e) {
self.sizeInfoClick(e);
});
$('.good-item').on('click', '.name,.color-size-row,.img', function(e) {
$('.good-item').on('touchend', '.name,.color-size-row,.img', function(e) {
self.goodClick(e);
});
$('.good-item').on('click', '.bottom .re-add', function(e) {
... ...
... ... @@ -301,8 +301,10 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() {
$(this).removeClass('highlight');
});
$('.nav-home').on('touchstart', function() {
$('.nav-home').on('touchstart', function(e) {
$('.homebuttom').toggleClass('hide');
e.preventDefault();
e.stopPropagation();
});
// 点击关闭头部菜单
... ...
... ... @@ -46,6 +46,9 @@ class NewQrcode extends Page {
reload() {
this.ajax({
url: '/home/newQrcode/reload',
data: {
app_version: this.qs.app_version
}
}).then(result => {
if (result) {
this.qrText = result;
... ...
... ... @@ -39,7 +39,7 @@ html {
.level {
width: 60px;
height: 25px;
height: 38px;
position: absolute;
bottom: -12px;
left: 20px;
... ...