deliver-product.vue
3.21 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
<template>
<Modal
v-model="showModal"
@on-ok="deliver"
width="auto"
class-name="deliver-modal"
cancel-text="取消"
ok-text="提交">
<div class="deliver-modal">
<Spin v-if="showLoading" fix size="large"></Spin>
<div v-else class="deliver-info">
<Row class-name="info-row">
<Col span="4" class-name="info-col">收货仓库:</Col>
<Col span="20">{{houseInfo.storehouseName}}</Col>
</Row>
<Row class-name="info-row">
<Col span="4">物流公司:</Col>
<Col span="20">
<Select v-model="expressId">
<Option v-for="item in houseList"
:value="item.id"
:key="item">
{{ item.companyName }}
</Option>
</Select>
</Col>
</Row>
<Row>
<Col span="4">物流单号:</Col>
<Col span="20"><Input v-model="expressNumber"></Input></Col>
</Row>
<p class="info-tip">
发往:{{houseInfo.storehouseName}}{{houseInfo.address}}{{houseInfo.adminName}}
</p>
</div>
</div>
</Modal>
</template>
<script>
import _ from 'lodash';
import service from 'trade-service';
export default {
name: 'OutStock',
props: {
},
data() {
return {
showModal: false,
showLoading: true,
submitting: false,
houseInfo: {},
expressId: '',
expressNumber: '',
houseList: []
};
},
watch: {
},
methods: {
show() {
this.showModal = true;
service.allotWarehouseInfo()
.then(res => {
this.houseInfo = res.data;
this.showLoading = false;
});
service.allotExpressCompList()
.then(res => {
this.houseList = res.data;
});
},
deliver(){
if(this.submitting) return;
const params = {
expressId: this.expressId,
expressNumber: this.expressNumber,
expressGoodsMap: {
88254: [
{
sku: 934409,
num: 13
}
]
}
};
service.allotDelivery(params)
.then(res => {
console.log(res)
this.showModal = false;
this.submitting = false;
});
}
}
};
</script>
<style lang="scss">
.deliver-modal {
padding: 30px;
.info-row {
margin-bottom: 20px;
}
.info-tip {
margin-top: 20px;
color: #ff0000;
text-align: center;
}
.ivu-modal {
width: 50%;
}
}
</style>