jit.vue
4.53 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<template>
<layout-body>
<layout-filter>
<filter-item :label="filters.sknCode.label">
<Input
v-model.trim="filters.sknCode.model"
:number="true"
:placeholder="filters.sknCode.holder"
:maxlength="9"
/>
</filter-item>
<filter-item label="选择类目">
<select-category :value="categoryValue" @select-change="sortChange"></select-category>
</filter-item>
<filter-item label="选择品牌">
<select-brand v-model="filters.brand.model"></select-brand>
</filter-item>
<filter-item :label="filters.storageType.label">
<Select v-model="filters.storageType.model" @on-change="storageTypeSelect">
<Option v-for="option in filters.storageType.options" :key="option.value" :value="option.value"
>{{ option.label }}
</Option>
</Select>
</filter-item>
<filter-item>
<Button type="primary" @click="filterSearch">筛选</Button>
<Button type="warning" @click="showImportStore">导入库存</Button>
<Button @click="clearFilter">清空条件</Button>
<!-- <filter-tips type="warning" show-icon closable>如果该商品在有货仓库中有库存,会包含在可售库存中进行展示。可以点击【库存分布】查询商品库存详情</filter-tips> -->
</filter-item>
</layout-filter>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
:total="pageData.total"
:current="pageData.current"
:page-size="20"
show-total
@on-change="pageChange"
></Page>
</layout-list>
<edit-store ref="showStoreEdit" @on-success="editSuccess"></edit-store>
<import-store ref="showStoreImport" @on-success="editSuccess"></import-store>
</layout-body>
</template>
<script>
import _ from 'lodash';
import JitService from 'services/repository/jit-service';
import EditStore from './components/edit-store';
import ImportStore from './components/import-store';
import { jit } from './store';
import FilterItem from '../../../components/global/layout-filter-item';
export default {
components: {
FilterItem,
EditStore,
ImportStore,
},
data() {
return jit.call(this);
},
created() {
this.jitService = new JitService();
},
mounted() {
this.getProduct();
},
methods: {
editStore(row) {
this.$refs.showStoreEdit.show(row, this.filters.storageType.model);
},
editSuccess() {
this.getProduct();
},
showImportStore() {
this.$refs.showStoreImport.show();
},
filterParams() {
const productSkn = this.filters.sknCode.model;
const brandId = this.filters.brand.model === -1 ? null : this.filters.brand.model;
const maxSortId = this.filters.maxSortId;
const middleSortId = this.filters.middleSortId;
const smallSortId = this.filters.smallSortId;
const storageType = this.filters.storageType.model;
const pageNo = this.pageData.current;
const pageSize = this.pageData.pageSize;
if (productSkn && !_.isNumber(productSkn)) {
this.$Message.error('SKN编码只能为数字');
return Promise.reject();
}
return Promise.resolve({
productSkn,
brandId,
maxSortId,
middleSortId,
smallSortId,
pageNo,
pageSize,
storageType,
});
},
filterSearch() {
this.getProduct();
},
storageTypeSelect() {
this.getProduct();
},
clearFilter() {
this.filters.sknCode.model = null;
this.filters.brand.model = -1;
this.filters.maxSortId = null;
this.filters.middleSortId = null;
this.filters.smallSortId = null;
this.filters.storageType.model = 3;
this.categoryValue = [];
this.pageData.current = 1;
this.getProduct();
},
pageChange(page) {
this.pageData.current = page;
this.getProduct();
},
getProduct() {
return this.filterParams().then(params => {
return this.jitService.listProduct(params).then(result => {
if (result.code === 200) {
this.tableData = result.data.records;
this.pageData.total = result.data.totalCount;
this.pageData.current = result.data.pageNo;
}
});
});
},
sortChange(sort) {
this.filters.maxSortId = sort.max;
this.filters.middleSortId = sort.mid;
this.filters.smallSortId = sort.min;
},
},
};
</script>
<style lang="scss">
.btn-row-space {
margin-top: 10px;
}
</style>