candidate-list.vue
3.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<template>
<layout-body>
<layout-filter ref="filter" :model="query">
<filter-item label="品牌">
<select-brand v-model="query.brand"></select-brand>
</filter-item>
<filter-item label="品类">
<select-category v-model="query.sort"></select-category>
</filter-item>
<filter-item label="价格区间">
<Price v-model="query.price"></Price>
</filter-item>
<filter-item label="库存状态">
<Select v-model="query.stockStatus" clearable>
<Option value="1">即将售罄</Option>
<Option value="2">库存正常</Option>
</Select>
</filter-item>
<filter-item>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="error" @click="addSellPool">添加到推广池</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page :total="pageData.total" :current="pageData.current"
@on-change="pageChange" :page-size="20" show-total></Page>
</layout-list>
</layout-body>
</template>
<script>
import CandidateListService from 'services/kol/candidate-list-service';
import {Price} from './components';
export default {
data() {
return {
query: {
brand: null,
sort: [],
price: [],
stockStatus: null
},
pageData: {
total: 0,
current: 1,
},
tableData: [{
col1: '1',
col2: '2'
}, {
col1: '3',
col2: '4'
}, {
col1: '5',
col2: '6'
}],
tableCols: [{
type: 'selection',
width: 60,
align: 'center'
}, {
title: 'skn',
key: 'col1'
}, {
title: '商品图片',
key: 'col2'
}, {
title: '商品名称',
key: 'col2'
}, {
title: '商品品牌',
key: 'col2'
}, {
title: '商品类目',
key: 'col2'
}, {
title: '库存状态',
key: 'col2'
}, {
title: '当前价格(元)',
key: 'col2'
}, {
title: '结算比例',
key: 'col2'
}, {
title: '预估佣金',
key: 'col2'
}]
};
},
created() {
this.candidateListService = new CandidateListService();
},
methods: {
search() {
let params = Object.assign(this.query, this.pageData);
console.log(params);
},
addSellPool() {
},
reset() {
this.$refs.filter.reset();
},
pageChange() {
this.search();
},
edit() {},
del() {}
},
components: {
Price
},
watch: {
}
};
</script>
<style lang="scss">
</style>