controller.js
1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';
import {
Controller
} from 'js/yoho-mvc';
import {
DetailView
} from './view';
import {
globalSearch as search
} from '../models';
class ListController extends Controller {
constructor() {
super();
this.detail = new DetailView();
this.created();
}
created() {
let skn = this.detail.getSkn();
if (!skn) {
return;
}
setTimeout(() => {
search('//m.yohobuy.com/product/global/gethtml', {
skn: skn
}).then((html) => {
this.detail.setDetailHtml(html);
});
if (this.detail.getCart()) {
search('/cart/index/count').then((data) => {
let count;
if (data.code === 200) {
count = data.data.cart_goods_count || 0;
if (count === 0) {
return false;
}
if (count > 99) {
count = '99+';
}
this.detail.setCartCount(count);
}
});
}
}, 500);
}
}
module.exports = ListController;