From 7036e14b58cd973b912e7de09d4eb5d79ec3a487 Mon Sep 17 00:00:00 2001 From: ag <2663588772@qq.com> Date: Thu, 22 Aug 2024 14:22:18 +0800 Subject: [PATCH] ag --- cellsysEvent.js | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/cellsysEvent.js b/cellsysEvent.js index de7f5b0..7bf5b82 100644 --- a/cellsysEvent.js +++ b/cellsysEvent.js @@ -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;