search.js
1.29 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
import searchModel from '../../models/brand/search';
import goMiniApp from '../../router/jump-to-miniapp';
import Yas from '../../common/yas';
let app = getApp();
let yas;
Page({
data: {
searchInp: '',
searchResult: '',
noResult: false
},
onLoad: function() {
yas = new Yas(app);
yas.pageOpenReport();
},
cancel: function() {
this.setData({
searchInp: '',
searchResult: '',
noResult: false
});
},
search: function(event) {
let params = {
brandName: event.detail.value
};
searchModel.search(params).then(result => {
if (result.length <= 0) {
this.setData({
searchResult: '',
noResult: true
});
} else {
this.setData({
searchResult: result,
noResult: false
});
}
});
},
goBrandDetail: function(event) {
let brandId = event.currentTarget.id;
let goMiniAppParams = {
app: 'yohobuy',
page: 'brandDetail',
data: {
brand_id: brandId
}
};
goMiniApp(goMiniAppParams);
},
});