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
import { mapActions, mapGetters } from 'vuex';
export default {
props: {
visible: { type: Boolean, default: false },
customerId: Number,
customerPhone: String,
},
watch: {
visible(newVal) {
if (newVal) {
this.fetchUserBaseInfo({
customerId: this.customerId,
});
}
},
customerId(newId) {
if (newId && this.visible) {
this.fetchUserBaseInfo({
customerId: this.customerId,
});
}
},
customerPhone(newPhone) {
if (!this.customerId && newPhone && this.visible) {
this.fetchUserBaseInfoByPhone({
customerPhone: this.customerPhone,
});
}
},
},
created() {
if (this.visible && this.customerId) {
this.fetchUserBaseInfo({
customerId: this.customerId,
});
}
if (this.visible && !this.customerId && this.customerPhone) {
this.fetchUserBaseInfoByPhone({
customerPhone: this.customerPhone,
});
}
},
computed: {
...mapGetters(['customerBaseInfo']),
},
methods: {
...mapActions(['fetchUserBaseInfo', 'fetchUserBaseInfoByPhone']),
},
};