161 lines
4.6 KiB
JavaScript
161 lines
4.6 KiB
JavaScript
import { formatterDate } from "@/utils/date";
|
|
|
|
class ReportBase {
|
|
constructor(params) {
|
|
if (!params) {
|
|
params = {};
|
|
}
|
|
this.documentNumber = formatterDate(new Date(), "YYYYMMDDHHmmss");
|
|
this.reportName = params.reportName || null;
|
|
this.checkDate = params.checkDate || new Date().getTime();
|
|
this.checkLocation = params.checkLocation || "";
|
|
this.checkLocationGeometry = params.checkLocationGeometry || null; //geometry格式
|
|
|
|
this.checkBy = params.checkBy || "";
|
|
this.reportBy = params.reportBy || "";
|
|
this.coverImage = params.coverImage; //报告封面图
|
|
this.conditionTypes = [];
|
|
|
|
this.conditionImageList = []; // 状况分析详情图{title,description,image}
|
|
this.conditionMapping = []; //状况图对象数组 {original,graphing,superposition,legend} legend包含{key,desc,color}
|
|
this.grids = {
|
|
gridsNumber: 4,
|
|
gridsImgs: [],
|
|
};
|
|
this.conservation = params.conservation || null;
|
|
this.suggest = params.suggest || null;
|
|
this.environmentTemperature = params.environmentTemperature || null; //不带单位
|
|
this.environmentHumidity = params.environmentHumidity || null; //不带单位
|
|
this.logo = null;
|
|
// this.coverLogo = `${window.GLOBAL["BASE_URL"]}/AppTemplate/conditionReport/images/reportLogo.png`;
|
|
// this.organizationName = params.organizationName;
|
|
// this.organizationEmail = 'ja.atelier@hotmail.com';
|
|
// this.organizationPhone = '+86-13911819084 / +33 (0)7.82.15.72.97';
|
|
// this.signatureInfo = {
|
|
// "weChatImg": `${window.GLOBAL["BASE_URL"]}/AppTemplate/conditionReport/images/erm.png`,
|
|
// "signer": "Jia Peng",
|
|
// "signerInfo":"Conservator - Restorer of the cultural heritage recognized by the Direction of the museums of France (D.M.F)\n" +
|
|
// "Professor of Conservation-Restoration & Material research of Art of Guangzhou Academy of Fine Art (GAFA)\n" +
|
|
// "Director of Guangdong Provincial Key Laboratory of Conservation-Restoration & Materials Research of Artworks"
|
|
// }
|
|
}
|
|
|
|
setAttribute(reportBase) {
|
|
if (!reportBase) {
|
|
return;
|
|
}
|
|
if (reportBase.documentNumber) {
|
|
this.documentNumber = reportBase.documentNumber;
|
|
}
|
|
if (reportBase.checkDate) {
|
|
this.checkDate = reportBase.checkDate;
|
|
}
|
|
|
|
this.reportName = reportBase.reportName;
|
|
|
|
this.checkLocation = reportBase.checkLocation;
|
|
|
|
this.checkBy = reportBase.checkBy;
|
|
|
|
this.reportBy = reportBase.reportBy;
|
|
if (reportBase.coverImage) {
|
|
this.coverImage = reportBase.coverImage;
|
|
}
|
|
if (reportBase.conservation) {
|
|
this.conservation = reportBase.conservation;
|
|
}
|
|
if (reportBase.suggest) {
|
|
this.suggest = reportBase.suggest;
|
|
}
|
|
if (reportBase.grids) {
|
|
//宫格图
|
|
this.grids = reportBase.grids;
|
|
}
|
|
if (reportBase.conditionMapping) {
|
|
this.conditionMapping = reportBase.conditionMapping;
|
|
}
|
|
|
|
if (reportBase.conditionTypes) {
|
|
this.conditionTypes = reportBase.conditionTypes;
|
|
}
|
|
if (reportBase.conditionImageList) {
|
|
this.conditionImageList = reportBase.conditionImageList;
|
|
}
|
|
|
|
this.checkLocationGeometry = reportBase.checkLocationGeometry || null; //geometry格式
|
|
this.environmentTemperature = reportBase.environmentTemperature || null;
|
|
this.environmentHumidity = reportBase.environmentHumidity || null;
|
|
}
|
|
|
|
setReportBy(val) {
|
|
this.reportBy = val;
|
|
}
|
|
|
|
setCoverImage(imageSrc) {
|
|
this.coverImage = imageSrc;
|
|
}
|
|
|
|
setConditionTypes(val) {
|
|
this.conditionTypes = val || [];
|
|
}
|
|
|
|
setConditionImageList(fileList) {
|
|
this.conditionImageList = fileList;
|
|
}
|
|
|
|
/* setImagesLegend(imgSrc, legend) {
|
|
this.conditionMapping["images"] = imgSrc;
|
|
this.conditionMapping["legend"] = legend;
|
|
}*/
|
|
setConditionMapping(items) {
|
|
this.conditionMapping = items;
|
|
}
|
|
setConservation(val) {
|
|
this.conservation = val;
|
|
}
|
|
|
|
setSuggest(val) {
|
|
this.suggest = val;
|
|
}
|
|
|
|
setLogo(val) {
|
|
this.logo = window.GLOBAL["BASE_URL"] + val;
|
|
}
|
|
|
|
setCoverLogo(val) {
|
|
this.coverLogo = val;
|
|
}
|
|
|
|
setOrgName(val) {
|
|
this.organizationName = val;
|
|
}
|
|
|
|
setOrgEmail(val) {
|
|
this.organizationEmail = val;
|
|
}
|
|
|
|
setOrgPhone(val) {
|
|
this.organizationPhone = val;
|
|
}
|
|
|
|
setGrids(gridNumber, girdList) {
|
|
this.grids["gridsNumber"] = gridNumber;
|
|
this.grids["gridsImgs"] = girdList;
|
|
}
|
|
|
|
setCheckLocation(checkLocation) {
|
|
this.checkLocation = checkLocation;
|
|
}
|
|
|
|
setCheckLocationGeometry(geometry) {
|
|
if (geometry) {
|
|
this.checkLocationGeometry = {
|
|
type: "Point",
|
|
coordinates: geometry.coordinates,
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
export default ReportBase;
|