From 8486b85b2f8ef6b2d154b0694f220f663f62858b Mon Sep 17 00:00:00 2001 From: ag <2663588772@qq.com> Date: Fri, 21 Mar 2025 17:09:33 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=BD=E6=98=AF=E5=92=8C=E7=8A=B6=E5=86=B5?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E5=85=B3=E8=81=94=E8=AE=BE=E5=A4=87=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E6=9C=89=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReportBase.js | 25 +-- components/materialCard.vue | 377 ++++++++++++++++++++++++++++++++++++ conditionReport.js | 16 ++ equipment.js | 2 +- equipmentType.js | 2 +- package.json | 3 +- 6 files changed, 402 insertions(+), 23 deletions(-) create mode 100644 components/materialCard.vue diff --git a/ReportBase.js b/ReportBase.js index 61c1e78..75fde72 100644 --- a/ReportBase.js +++ b/ReportBase.js @@ -26,18 +26,7 @@ class ReportBase { 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" - // } + this.equipmentData = []; //科学分析-设备数据关联 } setAttribute(reportBase) { @@ -95,18 +84,10 @@ class ReportBase { 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; } @@ -155,6 +136,10 @@ class ReportBase { }; } } + + setEquipmentData(equDataIds) { + this.equipmentData = equDataIds; + } } export default ReportBase; diff --git a/components/materialCard.vue b/components/materialCard.vue new file mode 100644 index 0000000..06f05c8 --- /dev/null +++ b/components/materialCard.vue @@ -0,0 +1,377 @@ + + + diff --git a/conditionReport.js b/conditionReport.js index 9a1897d..5966041 100644 --- a/conditionReport.js +++ b/conditionReport.js @@ -2,6 +2,7 @@ import { artApi } from './artApi'; import { formatterMillisecond } from './utils/date'; import { Query, QueryTask, EditTask } from './artUtil'; import CellsysArt from './cellsysArt'; +import ArtSystem from './artSystem'; class ConditionReport { constructor(params) { @@ -104,6 +105,21 @@ class ConditionReport { editTask.addParam('_id', params.id); return editTask.execute(); } + + //查询状况检查关联的设备数据记录 + //查询设备数据 + queryEquipmentDatas(params = {}) { + let { filter, pageInfo } = params; + if (!filter) { + filter = []; + } + filter.push({ + name: 'condition_check_id', + operator: '=', + value: this.id, + }); + return ArtSystem.viewArtworkEquipmentData({ filter, pageInfo }); + } } export default ConditionReport; diff --git a/equipment.js b/equipment.js index 35d2422..80750f3 100644 --- a/equipment.js +++ b/equipment.js @@ -36,7 +36,7 @@ class Equipment { editTask.addParam('_manufacture', params.manufacturers); editTask.addParam('_number', params.serialNumber); editTask.addParam('_model', params.equipmentModel); - editTask.addParam('_laboratory_id', params.laboratoryAddress); + editTask.addParam('_laboratory_id', params.laboratoryId); editTask.addParam('_name', params.name); return new Promise((resolve, reject) => { diff --git a/equipmentType.js b/equipmentType.js index 02a0578..c633c43 100644 --- a/equipmentType.js +++ b/equipmentType.js @@ -80,7 +80,7 @@ class ArtworkEquipmentType { editTask.addParam('_manufacture', params.manufacturers); editTask.addParam('_number', params.serialNumber); editTask.addParam('_model', params.equipmentModel); - editTask.addParam('_laboratory_id', params.laboratoryAddress); + editTask.addParam('_laboratory_id', params.laboratoryId); editTask.addParam('_name', params.name); return new Promise((resolve, reject) => { diff --git a/package.json b/package.json index af5fb5e..4e95f60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@airkoon/cellsysArt", - "version": "1.0.6", + "version": "1.0.7", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -12,6 +12,7 @@ "axios": "^1.4.0", "dayjs": "~1.10.6", "element-plus": "^2.3.7", + "@element-plus/icons-vue": "^2.3.1", "@amap/amap-jsapi-loader": "~1.0.1", "vue-signature-pad": "^3.0.2", "vue-qrcode": "^2.2.2"