|
@ -73,7 +73,6 @@ |
|
|
import * as deviceApi from "@/api/device.js" |
|
|
import * as deviceApi from "@/api/device.js" |
|
|
import * as moldApi from "@/api/mold.js" |
|
|
import * as moldApi from "@/api/mold.js" |
|
|
import * as dictApi from "@/api/dict.js" |
|
|
import * as dictApi from "@/api/dict.js" |
|
|
import * as uploadApi from "@/api/upload.js" |
|
|
|
|
|
import * as deptApi from "@/api/dept.js" |
|
|
import * as deptApi from "@/api/dept.js" |
|
|
const { proxy } = getCurrentInstance() |
|
|
const { proxy } = getCurrentInstance() |
|
|
const loading = ref(false) |
|
|
const loading = ref(false) |
|
@ -278,18 +277,18 @@ |
|
|
success: (res) => { |
|
|
success: (res) => { |
|
|
let filePath = res.tempFilePaths[0] |
|
|
let filePath = res.tempFilePaths[0] |
|
|
proxy.$modal.loading() |
|
|
proxy.$modal.loading() |
|
|
uploadApi.uploadFile({ |
|
|
// uploadApi.uploadFile({ |
|
|
filePath: filePath, |
|
|
// filePath: filePath, |
|
|
name: 'file', |
|
|
// name: 'file', |
|
|
formData: { |
|
|
// formData: { |
|
|
'user': 'test' |
|
|
// 'user': 'test' |
|
|
}, |
|
|
// }, |
|
|
}).then(ret => { |
|
|
// }).then(ret => { |
|
|
proxy.$modal.closeLoading() |
|
|
// proxy.$modal.closeLoading() |
|
|
imgList.value.push(ret.data) |
|
|
// imgList.value.push(ret.data) |
|
|
}).catch((err) => { |
|
|
// }).catch((err) => { |
|
|
proxy.$modal.closeLoading() |
|
|
// proxy.$modal.closeLoading() |
|
|
}); |
|
|
// }); |
|
|
}, |
|
|
}, |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|