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 getRealPath from 'uni-platform/helpers/get-real-path'
|
| export const saveFile = {
| tempFilePath: {
| type: String,
| required: true,
| validator (value, params) {
| params.tempFilePath = getRealPath(value)
| }
| }
| }
|
| const TYPES = ['md5', 'sha1']
|
| export const getFileInfo = {
| filePath: {
| type: String,
| required: true,
| validator (value, params) {
| params.filePath = getRealPath(value)
| }
| },
| digestAlgorithm: {
| type: String,
| validator (value, params) {
| params.digestAlgorithm = TYPES.includes(value) ? value : TYPES[0]
| },
| default: TYPES[0]
| }
| }
|
| export const getSavedFileInfo = {
| filePath: {
| type: String,
| required: true,
| validator (value, params) {
| params.filePath = getRealPath(value)
| }
| }
| }
|
| export const removeSavedFile = {
| filePath: {
| type: String,
| required: true,
| validator (value, params) {
| params.filePath = getRealPath(value)
| }
| }
| }
|
|