cell-stock-out.vue
1.04 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
<template>
<div class="cell-stock-out">
<p class="row">
缺货<span class="num">
<Input number @on-change="change"></Input>
</span>
</p>
<p class="row">缺货数:{{lackNum}}</p>
<p class="row">
<Button type="error" @click="confirm">上传确认缺货</Button>
</p>
</div>
</template>
<script>
export default {
name: 'CellDeliver',
props: {
lackNum: {
type: [String, Number]
}
},
data() {
return {
}
},
methods: {
confirm(){
this.$Message.error('上传缺货')
},
change(val){
this.$emit('num-change', val)
}
}
}
</script>
<style lang="scss" scoped>
.cell-stock-out {
text-align: left;
.row {
margin: 10px 0;
}
.num {
display: inline-block;
width: 50px;
padding-left: 5px;
}
}
</style>