actions.js
1.8 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
import * as Types from './types';
function _url({ name }) {
return `//cdn.yoho.cn/${name}`;
}
function _handleData(data) {
const result = {
business_type: data.businessType,
business_name: data.businessName,
social_credit_code: data.socialCreditCode,
cert_name: data.certName,
cert_no: data.certNo,
start_time: data.time.start_time,
expire_time: data.time.noLimit ? '0' : data.time.expire_time,
license_original_image: data.licenseOriginalImage.map(_url).join(''),
license_copy_image: data.licenseCopyImage.map(_url).join(''),
cert_face_image: data.certFaceImage.map(_url).join(''),
cert_reverse_image: data.certReverseImage.map(_url).join('')
};
return result;
}
export default {
async fetchToken({ commit }) {
const result = await this.$api.get('/getToken?type=yohocdn');
commit(Types.FETCH_UFO_UPLOAD_TOKEN_SUCCESS, { token: result.uptoken });
},
async saveLicense({ commit }, data) {
let result = {};
try {
result = await this.$api.post(
'/api/ufo/license/save',
_handleData(data)
);
} catch (e) {
commit(Types.FETCH_UFO_NEED_LOGIN, true);
return result;
}
return result;
},
async licenseStatus({ commit }) {
let result = {};
try {
result = await this.$api.get('/api/ufo/license/status');
} catch (e) {
if (e.code === 401) {
commit(Types.FETCH_UFO_NEED_LOGIN, true);
return;
}
}
if (result.code === 200) {
commit(Types.FETCH_UFO_STATUS_SUCCESS, result.data);
} else {
commit(Types.FETCH_UFO_STATUS_SUCCESS, -1);
}
},
async getStoreStatus({ commit }) {
let result = {};
try {
result = await this.$api.get('/api/ufo/store/status');
} catch (e) {
return result;
}
return result;
}
};