modal-unstock.vue
2.08 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
<template>
<Modal class="ufo-font" :value="visiable" @input="onInput" ref="modal" :transfer="true" @on-sure="onSure" @on-cancel="onCancel">
<div class="change-price-modal">
<p class="modal-title">选择你要下架的数量</p>
<Inputx v-model="unStockNum" :maxlength="8" :readonly="true" class="input-number">
<i slot="prefix" class="iconfont icon-plus-minus" @touchend="onChangeNum(-1)"></i>
<i slot="suffix" class="iconfont icon-i-add" @touchend="onChangeNum(1)"></i>
</Inputx>
<p class="stock-txt">
目前还有 {{storageNum}} 个库存
</p>
<p class="tips">
下架商品的保证金将会被释放
</p>
</div>
</Modal>
</template>
<script>
import Inputx from '../../components/inputx.vue';
import Modal from '../../components/modal.vue';
export default {
name: 'ModalPrice',
data() {
return {
visiable: false,
unStockNum: 1,
storageNum: 6,
};
},
methods: {
show({storageNum}) {
this.storageNum = storageNum;
this.visiable = true;
},
onSure() {
this.$emit('on-sure', this.unStockNum);
this.visiable = false;
},
onCancel() {
this.visiable = false;
},
onInput(val) {
this.$emit('input', val);
},
onChangeNum(num) {
const value = this.unStockNum + num;
if (value <= 0 || value > this.storageNum) {
return;
}
this.unStockNum = value;
}
},
components: {Modal, Inputx}
};
</script>
<style lang="scss" scoped>
.change-price-modal {
.stock-txt {
margin-bottom: 10px;
}
.tips {
margin-bottom: 10px;
color: #999;
}
.input-number {
margin-bottom: 10px;
/deep/ .input-prefix,
/deep/ .input-suffix {
padding: 34px 40px;
width: 112px;
.iconfont {
font-size: 32px;
color: #999;
font-weight: bold;
}
}
/deep/ .input {
font-weight: bold;
padding-left: 112px;
padding-right: 112px;
text-align: center;
}
}
.modal-title {
line-height: 100px;
text-align: center;
}
}
</style>