select-express.vue
922 Bytes
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
<template>
<Select :value="value" @input="handleChange">
<Option v-for="i in list" :value="i.id" :key="item">{{ i.companyName }}</Option>
</Select>
</template>
<script>
import InvoiceService from 'services/repository/invoice-service';
export default {
name: 'select-express',
props: ['value'],
created() {
this.invoiceService = new InvoiceService();
},
data() {
return {
list: []
};
},
mounted() {
this.getExpressList();
},
methods: {
getExpressList() {
return this.invoiceService.listExpress().then((result) => {
this.list = result.data;
});
},
handleChange(value) {
this.$emit('input', value);
}
}
};
</script>
<style>
</style>