Skip to content

Commit

Permalink
fix bug: 安卓手机app 图片多选异常.
Browse files Browse the repository at this point in the history
  • Loading branch information
baozhoutao committed Aug 19, 2024
1 parent 9aacafa commit 29e4330
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* @Author: [email protected]
* @Date: 2022-10-28 14:15:09
* @LastEditors: liaodaxue
* @LastEditTime: 2023-12-29 10:46:50
* @LastEditors: [email protected]
* @LastEditTime: 2024-08-19 16:26:58
* @Description:
*/
import { getAmisStaticFieldType } from './type';
Expand Down Expand Up @@ -212,6 +212,11 @@ export const getAmisFileEditSchema = (steedosField)=>{
convertData.multiple = true;
convertData.joinValues = false;
convertData.extractValue = true;
if(steedosField.type === 'image'){
if(Steedos.isCordova() && Steedos.isCordova()){
convertData.accept = "";
}
}
}
return convertData;
}
Expand Down

0 comments on commit 29e4330

Please sign in to comment.