This commit is contained in:
ag 2024-08-22 14:22:18 +08:00
parent 59393335fd
commit 7036e14b58

View File

@ -5,14 +5,13 @@
* @Description:
*/
import {
BASE_URL,
CellsysType,
IMAGE_URL,
Operator,
Query,
QueryTask,
QueryType,
Operator,
CellsysType,
ThirdpartyObjectType,
BASE_URL,
IMAGE_URL,
} from './cellsysUtil.js';
import CellsysElement from './cellsysElement.js';
@ -71,12 +70,12 @@ class CellsysEvent extends CellsysElement {
let { litimg_path, img_path } = params;
this.eventImages = litimg_path.map((item, index) => {
return {
imgPath: img_path[index] ? img_path[index] : litimg_path[index], //原图路径
imgPath: img_path[index], //原图路径
litimgPath: litimg_path[index] ? litimg_path[index] : img_path[index], //压缩版图片路径
};
});
}
this.formatPath = [];
this.formatPath = []; //用拼接路径方式的字段比较古老,建议不再使用该字段,后续会慢慢废弃
if (this.filePath.length > 0) {
this.formatPath = this.filePath.map((item) => {
if (item && item.indexOf('/resources/basePic/') > -1) {
@ -129,4 +128,13 @@ class CellsysEvent extends CellsysElement {
}
}
//转化预览图路径
function formatPreview(url) {
let splitList = url.split('/');
let fileName = splitList[splitList.length - 1];
fileName = fileName.split('.')[0] + '.jpg'; //图片服务压缩过的图片统一都是jpg格式因此这里需要更换图片后缀
splitList.pop(); //移除掉文件名部分
return splitList.join('/') + '/preview/' + fileName;
}
export default CellsysEvent;