size-request-sheet.vue
4.14 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
<template>
<action-sheet @hidden="onHidden" @hide="onHide" @shown="onShown" position="right" ref="popup" :full="true">
<div class="buy-sheet">
<div class="title">
<h1>添加尺码</h1>
<h3>请选择希望添加的尺码</h3>
</div>
<size-list ref="sizeList"
:list="unusedSizeList"
:multiple="true"
:simple-price="true"
:selected="selected"
@select="onSelected" />
<cube-button :disabled="!canRequest"
@click="_requestSize"><cube-loading v-if="loading"></cube-loading>提交申请</cube-button>
</div>
</action-sheet>
</template>
<script>
import { Button, Loading } from 'cube-ui';
import { get } from 'lodash';
import { createNamespacedHelpers } from 'vuex';
import LayoutApp from '../../../components/layout/layout-app';
import SizeList from './size-list';
import ActionSheet from './action-sheet';
import stateShortCutsMixins from '../mixins';
const { mapActions } = createNamespacedHelpers('product');
export default {
name: 'SizeRequest',
mixins: [stateShortCutsMixins],
props: {
productId: {
type: Number,
},
},
components: {
LayoutApp,
SizeList,
ActionSheet,
'cube-button': Button,
'cube-loading': Loading,
},
data() {
return {
selected: [],
loading: false,
};
},
computed: {
sizeList() {
return get(this.productDetail, 'goods_list[0].size_list', null);
},
otherSizeList() {
return get(this.productDetail, 'goods_list[0].otherSizeList', null);
},
unusedSizeList() {
return this.otherSizeList;
},
canRequest() {
return this.selected.length !== 0 && !this.loading;
},
},
mounted() {
this.$refs.popup.show();
},
methods: {
...mapActions(['requestSize']),
onHidden() {
this.$emit('hidden');
},
onHide() {
this.$emit('hide');
},
onShown() {
if (this.$refs.sizeList) {
this.$refs.sizeList.refreshScroll();
}
},
_requestSize() {
const size_ids = this.selected.map(item => item.size_id).join(',');
const goods_id = this.productDetail.goods_list[0].goods_id;
this.requestSize({ product_id: this.productId, goods_id, size_ids }).then(() => {
this.$createDialog({
type: 'alert',
content: '您的尺码添加申请已提交,我们会尽快审核并通知您,请耐心等待',
confirmBtn: {
text: '我知道了'
},
onConfirm: () => {
this.onBack();
},
}).show();
this.loading = false;
}).catch(() => {
this.loading = false;
});
},
onSelected({selected}) {
this.selected = selected;
},
onBack() {
this.$refs.popup.hide();
},
},
};
</script>
<style lang="scss" scoped>
@import "../product-detail";
.buy-sheet {
display: flex;
flex-direction: column;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
/*width: 100%;*/
/*height: 100%;*/
background: #fff;
.size-list {
flex: 1;
padding: 10px 40px;
}
}
.header {
width: 100%;
height: 90px;
padding-left: 40px;
padding-right: 40px;
background-color: #fff;
display: flex;
align-items: stretch;
box-sizing: border-box;
.flex {
display: flex;
align-items: center;
}
.back-wrapper {
height: 100%;
width: 120px;
}
.back {
width: 48px;
height: 48px;
background: url(~statics/image/address/close.png) no-repeat;
background-size: cover;
}
}
.title {
padding: 20px 40px;
h1, h3 {
margin: 0;
font-weight: normal;
}
h1 {
font-size: 64px;
color: #000;
letter-spacing: 0.82px;
line-height: 82px;
}
h3 {
font-size: 28px;
color: #999;
letter-spacing: 0;
}
}
.cube-btn {
box-sizing: border-box;
border-radius: 0;
padding: 0;
line-height: 60px;
font-size: 14px;
background: #002b47;
&.cube-btn_disabled {
background: #999;
}
}
</style>