测试问题修改
This commit is contained in:
parent
3a5bbf3851
commit
e7e8dab731
|
|
@ -148,7 +148,11 @@ export default {
|
||||||
originalFileList.forEach(file => {
|
originalFileList.forEach(file => {
|
||||||
formData.append('files', file.raw); // 使用 raw 字段获取原始文件对象
|
formData.append('files', file.raw); // 使用 raw 字段获取原始文件对象
|
||||||
});
|
});
|
||||||
formData.append("id", this.addId)
|
const params = {
|
||||||
|
id: this.addId
|
||||||
|
};
|
||||||
|
formData.append('params', JSON.stringify(params));
|
||||||
|
// formData.append("id", this.addId)
|
||||||
addImageEvaluateAPI(formData)
|
addImageEvaluateAPI(formData)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
loading.close();
|
loading.close();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue