logistics-company.vue
2.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<template>
<div class="companylist-page">
<div class="search-input">
<input class="iconfont" type="text" placeholder="搜索快递公司" v-model="inputname" @input="search">
</div>
<div class="company-data">
<div class="company-item" v-for="(item, index) in showData" :key="index">
<a class="tag" :name="index">{{ index }}</a>
<span v-for="val in item" :key="val.id" @click="select(val.id, val.company_name)">{{val.company_name}}</span>
</div>
</div>
<index-list style="margin-top: 70px;"></index-list>
</div>
</template>
<script>
import indexList from 'vues/components/tools/index-list.vue';
const $ = require('yoho-jquery');
const bus = require('js/plugin/vue-bus');
module.exports = {
data() {
return {
inputname: '',
company_list: [],
showData: []
};
},
components: {
indexList
},
methods: {
/**
* 获取快递公司列表
*/
getCompanyList() {
$.get('/home/return/refund/getCompanyList', result => {
this.showData = this.company_list = result;
});
},
search() {
let inputname = this.inputname;
if (!inputname) {
this.showData = this.company_list;
return;
}
let filter = {};
for (let k in this.company_list) {
if (this.company_list.hasOwnProperty(k)) {
this.company_list[k].forEach(d => {
if (d.company_name.indexOf(inputname) > -1) {
if (!filter[k]) {
filter[k] = [];
}
filter[k].push(d);
}
});
}
}
this.showData = filter;
},
select(companyId, companyName) {
bus.$emit('changeView', {
view: 'logistics',
company_id: companyId,
company_name: companyName
});
// 重置列表
this.inputname = '';
this.showData = this.company_list;
}
},
created() {
this.getCompanyList();
}
};
</script>