order.vue
5.59 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<template>
<LayoutApp class="ufo-font" :class="classes">
<ScrollView ref="scroll" :observe-dom="false" :pull-up-load="true" @pullingUp="onPullingUp">
<div class="order-page">
<div class="title">出售中</div>
<div class="product">
<ImgSize class="pro-img" :src="productInfo.imageUrl" :width="200" :height="200"></ImgSize>
<div class="pro-info">
<p class="pro-name">{{productInfo.productName}}</p>
<p class="stock-info">{{productInfo.colorName}},{{productInfo.sizeNum}}个尺码,{{productInfo.storageNum}}个商品库存</p>
</div>
</div>
<div class="arrival">
<p class="arrival-time">
<i class="iconfont icon-info"></i>
<span>尺码列表左滑选择 不卖了 ,下架当前尺码商品</span>
</p>
</div>
<ProductList
ref="productList"
:skcs="skcs"
@on-change-price="onChangePrice"
@on-no-sale="onNoSale"
></ProductList>
</div>
</ScrollView>
<ModalPrice
v-if="modalLoad"
ref="modalPrice"
@on-change-price="onChangePriceSure">
</ModalPrice>
<ModalUnstock
v-if="modalLoad"
ref="modalUnstock"
@on-no-sale="onNoSaleSure">
</ModalUnstock>
</LayoutApp>
</template>
<script>
import ModalPrice from './components/modal-price';
import ModalUnstock from './components/modal-unstock';
import ImgSize from 'components/img-size';
import {Button} from 'cube-ui';
import ScrollView from 'components/scroll-view';
import ProductList from './components/product-list';
import {createNamespacedHelpers} from 'vuex';
const {mapState, mapActions, mapMutations} = createNamespacedHelpers('ufo/order');
export default {
name: 'OrderPage',
title: '订单',
data() {
return {
classes: {},
page: 1,
modalLoad: false,
pageSize: 10,
};
},
mounted() {
this.modalLoad = true;
},
computed: {
...mapState(['productInfo', 'skcs']),
},
asyncData({store, router}) {
return store.dispatch('ufo/order/fetchProduct', {productId: router.params.orderId});
},
methods: {
...mapMutations(['MERGE_CHANGEPRICE_DATA']),
...mapActions(['fetchProduct', 'postChangePrice', 'postNoSale']),
async onPullingUp() {
const beginCount = this.skcs.length;
await this.fetchProduct({
productId: this.$route.params.orderId,
page: this.page + 1,
pageSize: this.pageSize
});
const afterCount = this.skcs.length;
if (afterCount > beginCount) {
this.page++;
}
this.$refs.scroll.forceUpdate();
},
onChangePrice(skc) {
this.$refs.modalPrice.show({skc, product: this.productInfo});
},
onNoSale(skc) {
this.$refs.modalUnstock.show({skc});
},
refreshProduct(skc, mergeData) {
this.MERGE_CHANGEPRICE_DATA({skc, mergeData}); //eslint-disable-line
this.fetchProduct({
productId: this.$route.params.orderId,
page: 1,
onlyProduct: true
});
},
async onChangePriceSure({skc, price}) {
const result = await this.postChangePrice({
product_id: this.productInfo.productId,
storage_id: skc.storageId,
new_price: price,
old_price: skc.price,
num: skc.storageNum
});
if (result && result.code === 200) {
this.$refs.modalPrice.hide();
this.$createToast({
txt: '调价成功',
type: 'success',
}).show();
this.refreshProduct(skc, {
price
});
} else {
this.$createToast({
txt: result.message || '调价失败',
type: 'warn',
}).show();
}
},
async onNoSaleSure({skc, num}) {
const result = await this.postNoSale({
product_id: this.productInfo.productId,
storage_id: skc.storageId,
old_price: skc.price,
num: num
});
if (result.code === 200) {
this.$refs.modalUnstock.hide();
this.$refs.productList.reset();
this.$createToast({
txt: '下架成功',
type: 'correct'
}).show();
this.refreshProduct(skc, {
storageNum: skc.storageNum - num
});
} else {
this.$createToast({
txt: result.message || '下架失败',
type: 'warn',
}).show();
}
this.slideSkc = {};
},
},
components: {Button, ScrollView, ProductList, ImgSize, ModalPrice, ModalUnstock}
};
</script>
<style lang="scss" scoped>
.order-page {
& > .title {
font-size: 78px;
font-weight: bold;
padding-top: 24px;
padding-left: 40px;
padding-right: 40px;
}
.product {
width: 100%;
padding-left: 40px;
padding-right: 40px;
height: 180px;
display: flex;
.pro-img {
width: 180px;
}
.pro-info {
overflow: hidden;
flex: 1;
padding-left: 40px;
padding-top: 62px;
}
.pro-name {
font-weight: bold;
color: #999;
font-size: 24px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.stock-info {
color: #000;
margin-top: 24px;
}
}
.arrival {
margin-top: 20px;
margin-bottom: 20px;
padding-left: 40px;
padding-right: 40px;
width: 100%;
.arrival-time {
height: 56px;
color: #999;
font-size: 24px;
padding-left: 14px;
padding-right: 14px;
background-color: #f5f5f5;
display: flex;
align-items: center;
i {
font-size: 30px;
margin-right: 10px;
align-items: center;
}
}
}
}
</style>