From 50ecdeae23d1b05d1859ffe8d5a13307e35eb45c Mon Sep 17 00:00:00 2001 From: ag <2663588772@qq.com> Date: Tue, 25 Feb 2025 09:47:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=93=E5=89=8D=E6=9C=80=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- artRepairPlan.js | 215 +++++----- artSystem.js | 63 ++- artUser.js | 244 ++++++------ components/amapSearch.vue | 740 ++++++++++++++++++++--------------- components/chooseArtwork.vue | 3 +- equipment.js | 102 +++++ equipmentData.js | 63 +++ equipmentType.js | 101 +++++ laboratory.js | 61 +++ material.js | 58 +++ repairPlanAudit.js | 53 ++- 11 files changed, 1117 insertions(+), 586 deletions(-) create mode 100644 equipment.js create mode 100644 equipmentData.js create mode 100644 equipmentType.js create mode 100644 laboratory.js create mode 100644 material.js diff --git a/artRepairPlan.js b/artRepairPlan.js index 21b2e59..11b85f3 100644 --- a/artRepairPlan.js +++ b/artRepairPlan.js @@ -1,107 +1,128 @@ -import ArtImage from "./artImage"; -import { formatterMillisecond } from "./utils/date"; -import { EditTask } from "./artUtil.js"; -import { artApi } from "./artApi"; -import { artRepairPlanStatus } from "./artEnum"; +import ArtImage from './artImage'; +import { formatterMillisecond } from './utils/date'; +import { EditTask, Query, QueryTask } from './artUtil.js'; +import { artApi } from './artApi'; +import { artRepairPlanStatus } from './artEnum'; +import RepairPlanAudit from './repairPlanAudit'; class ArtRepairPlan { - constructor(params = {}) { - this.id = params.id; - this.name = params.name; - this.repairRecordId = params.repair_record_id; - this.repairNodes = params.repair_nodes; - this.creatorSignatureImage = params.creator_signature_image; - this.status = params.status; - this.creator = params.creator; - this.updater = params.updater; - this.createTime = params.create_time; - this.updateTime = params.update_time; - this.artworkRecord = { - artworkRecordId: params.artwork_record_id, //关联的艺术品id - }; - if (params.artwork_record) { - let { record_number, old_name, images } = params.artwork_record; - this.artworkRecord["recordNumber"] = record_number; - this.artworkRecord["oldName"] = old_name; - this.artworkRecord["artworkImages"] = images.map((url) => { - return new ArtImage(url); - }); + constructor(params = {}) { + this.id = params.id; + this.name = params.name; + this.repairRecordId = params.repair_record_id; + this.repairNodes = params.repair_nodes; + this.creatorSignatureImage = params.creator_signature_image; + this.status = params.status; + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + this.artworkRecord = { + artworkRecordId: params.artwork_record_id, //关联的艺术品id + }; + if (params.artwork_record) { + let { record_number, old_name, images } = params.artwork_record; + this.artworkRecord['recordNumber'] = record_number; + this.artworkRecord['oldName'] = old_name; + this.artworkRecord['artworkImages'] = images.map((url) => { + return new ArtImage(url); + }); + } } - } - //艺术品封面图 - get coverImageUrl() { - if (this.artworkRecord && this.artworkRecord["artworkImages"].length > 0) { - return this.artworkRecord["artworkImages"][0].compressionUrl; + //艺术品封面图 + get coverImageUrl() { + if (this.artworkRecord && this.artworkRecord['artworkImages'].length > 0) { + return this.artworkRecord['artworkImages'][0].compressionUrl; + } } - } - //艺术品封面图 - get oldNameFormat() { - return `《${this.artworkRecord["oldName"]}》`; - } - get createTimeFormat() { - return formatterMillisecond(this.createTime); - } + //艺术品封面图 + get oldNameFormat() { + return `《${this.artworkRecord['oldName']}》`; + } + get createTimeFormat() { + return formatterMillisecond(this.createTime); + } - get updateTimeFormat() { - return formatterMillisecond(this.updateTime); - } - get statusMsg() { - return artRepairPlanStatus[this.status]; - } - updateRepairPlan(params = {}) { - let editTask = new EditTask(artApi.repairPlanUpdate); - editTask.addParam("_id", this.id); - editTask.addParam("_repair_record_id", params.repairRecordId); - editTask.addParam("_name", params.name); - editTask.addParam("_repair_nodes", params.repairNodes); - return new Promise((resolve, reject) => { - editTask - .execute() - .then((res) => { - if (res.data) { - let artRepairFile = new ArtRepairPlan(res.data); - resolve(artRepairFile); - } - }) - .catch((err) => { - reject(err); + get updateTimeFormat() { + return formatterMillisecond(this.updateTime); + } + get statusMsg() { + return artRepairPlanStatus[this.status]; + } + updateRepairPlan(params = {}) { + let editTask = new EditTask(artApi.repairPlanUpdate); + editTask.addParam('_id', this.id); + editTask.addParam('_repair_record_id', params.repairRecordId); + editTask.addParam('_name', params.name); + editTask.addParam('_repair_nodes', params.repairNodes); + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let artRepairFile = new ArtRepairPlan(res.data); + resolve(artRepairFile); + } + }) + .catch((err) => { + reject(err); + }); }); - }); - } - deleteRepairPlan() { - let editTask = new EditTask(artApi.repairPlanDelete); - editTask.addParam("_id", this.id); - return editTask.execute(); - } - //变更修复方案 - modificationRepairPlan(params) { - let editTask = new EditTask(artApi.repairPlanInsert); - editTask.addParam("_repair_record_id", this.id); - editTask.addParam("_id", params.id); - editTask.addParam("_name", params.name); - editTask.addParam("_repair_nodes", params.repairNodes); - return new Promise((resolve, reject) => { - editTask - .execute() - .then((res) => { - if (res.data) { - let artRepairFile = new ArtRepairPlan(res.data); - resolve(artRepairFile); - } - }) - .catch((err) => { - reject(err); + } + deleteRepairPlan() { + let editTask = new EditTask(artApi.repairPlanDelete); + editTask.addParam('_id', this.id); + return editTask.execute(); + } + //变更修复方案 + modificationRepairPlan(params) { + let editTask = new EditTask(artApi.repairPlanInsert); + editTask.addParam('_repair_record_id', this.id); + editTask.addParam('_id', params.id); + editTask.addParam('_name', params.name); + editTask.addParam('_repair_nodes', params.repairNodes); + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let artRepairFile = new ArtRepairPlan(res.data); + resolve(artRepairFile); + } + }) + .catch((err) => { + reject(err); + }); }); - }); - } - //创建审核 - createRepairPlanReview(params = {}) { - let { signatureImage } = params; - let editTask = new EditTask(artApi.repairPlanReviewInsert); - editTask.addParam("_repair_plan_id", this.id); - editTask.addParam("_applicant_signature_image", signatureImage); - return editTask.execute(); - } + } + //创建审核 + createRepairPlanReview(params = {}) { + let { signatureImage } = params; + let editTask = new EditTask(artApi.repairPlanReviewInsert); + editTask.addParam('_repair_plan_id', this.id); + editTask.addParam('_applicant_signature_image', signatureImage); + return editTask.execute(); + } + + //获取修复方案审核结果批注信息 + queryRepairPlanReview(params = {}) { + let query = new Query(); + query.addFilter('repair_plan_id', '=', this.id); + let queryTask = new QueryTask(artApi.viewRepairPlanReview, false); + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + let resArr = res.map((item) => { + return new RepairPlanAudit(item); + }); + resolve(resArr); + }) + .catch((err) => { + reject(err); + }); + }); + } } export default ArtRepairPlan; diff --git a/artSystem.js b/artSystem.js index 8a882eb..081e07f 100644 --- a/artSystem.js +++ b/artSystem.js @@ -17,11 +17,13 @@ import ArtCategory from './artCategory'; import Equipment from './equipment'; import Laboratory from './laboratory'; import ArtworkEquipmentType from './equipmentType'; +import EquipmentData from "./equipmentData"; class ArtSystem { constructor(orgId) {} static orgId = window.CELLSYSORG ? window.CELLSYSORG.id : null; static token = null; + //查询艺术品材质字典 static queryMaterials(params = {}) { let query = new Query(); @@ -416,12 +418,15 @@ class ArtSystem { //查询系统修复记录列表 static queryRepairLogs(params) { let query = new Query(); - let { filter, pageInfo } = params; + let { filter, pageInfo,order } = params; if (filter) { filter.forEach((item) => { query.addFilter(item['name'], item['operator'], item['value']); }); } + if (order) { + query.setOrder(order); + } let queryTask = new QueryTask(artApi.viewRepairLog, !!pageInfo); return new Promise((resolve, reject) => { queryTask @@ -642,6 +647,45 @@ class ArtSystem { }); }); } + static viewArtworkEquipmentData(params){ + let query = new Query(); + let { filter, pageInfo, order } = params; + // query.addFilter('equipment_id', '=', this.id); + if (filter) { + filter.forEach((item) => { + query.addFilter(item["name"], item["operator"], item["value"]); + }); + } + + if (order) { + query.setOrder(order); + } + let queryTask = new QueryTask(artApi.viewArtworkEquipmentData, !!pageInfo); + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + if (pageInfo) { + if (res.data) { + res.data = res.data.map((item) => { + return new EquipmentData(item); + }); + resolve(res); + } else { + reject(new Error("数据格式异常")); + } + } else { + let resArr = res.map((item) => { + return new EquipmentData(item); + }); + resolve(resArr); + } + }) + .catch((err) => { + reject(err); + }); + }); + } //查询实验室列表 static queryLaboratoryList(params) { let query = new Query(); @@ -713,23 +757,6 @@ class ArtSystem { }, }); } - - //查询待审核事项数量记录 - static queryAuditNumberCount(params = {}) { - let query = new Query(); - let queryTask = new QueryTask(artApi.viewStatsAuditNumberCount, false); - - return new Promise((resolve, reject) => { - queryTask - .execute(query) - .then((res) => { - resolve(res); - }) - .catch((err) => { - reject(err); - }); - }); - } } export default ArtSystem; diff --git a/artUser.js b/artUser.js index 76c05eb..da1c212 100644 --- a/artUser.js +++ b/artUser.js @@ -1,130 +1,144 @@ -import CellsysUser from "@airkoon/cellsys/cellsysUser.js"; -import { QueryType } from "@airkoon/cellsys/cellsysUtil"; -import { Query, QueryTask } from "./artUtil"; -import { artApi } from "./artApi"; +import CellsysUser from '@airkoon/cellsys/cellsysUser.js'; +import { QueryType } from '@airkoon/cellsys/cellsysUtil'; +import { Query, QueryTask } from './artUtil'; +import { artApi } from './artApi'; -import RepairFileAudit from "./repairFileAudit"; -import RepairPlanAudit from "./repairPlanAudit"; -import SynergyAudit from "./synergyAudit"; +import RepairFileAudit from './repairFileAudit'; +import RepairPlanAudit from './repairPlanAudit'; +import SynergyAudit from './synergyAudit'; class ArtUser extends CellsysUser { - constructor(params = {}) { - super(params); - } + constructor(params = {}) { + super(params); + } - //查询修复档案归档申请列表 - queryRepairFileArchive(params = {}) { - let { pageInfo, order, filters } = params; - let query = new Query(); - if (pageInfo) { - query.setCurrPage(pageInfo.currPage); - query.setPageSize(pageInfo.pageSize); - } - query.addFilter("status", "=", 0); //查询审核中的记录 - if (filters && filters.length > 0) { - filters.forEach((item) => { - query.addFilter(item["name"], item["operator"], item["value"]); - }); - } - let queryTask = new QueryTask( - artApi.viewRepairRecordArchiveReview, - !!pageInfo - ); - return new Promise((resolve, reject) => { - queryTask - .execute(query) - .then((res) => { - if (pageInfo) { - if (res.data) { - res.data = res.data.map((item) => { - return new RepairFileAudit(item); - }); - resolve(res); - } - } else { - let resArr = res.map((item) => { - return new RepairFileAudit(item); + //查询修复档案归档申请列表 + queryRepairFileArchive(params = {}) { + let { pageInfo, order, filters } = params; + let query = new Query(); + if (pageInfo) { + query.setCurrPage(pageInfo.currPage); + query.setPageSize(pageInfo.pageSize); + } + query.addFilter('status', '=', 0); //查询审核中的记录 + if (filters && filters.length > 0) { + filters.forEach((item) => { + query.addFilter(item['name'], item['operator'], item['value']); }); - resolve(resArr); - } - }) - .catch((err) => { - reject(err); + } + let queryTask = new QueryTask(artApi.viewRepairRecordArchiveReview, !!pageInfo); + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + if (pageInfo) { + if (res.data) { + res.data = res.data.map((item) => { + return new RepairFileAudit(item); + }); + resolve(res); + } + } else { + let resArr = res.map((item) => { + return new RepairFileAudit(item); + }); + resolve(resArr); + } + }) + .catch((err) => { + reject(err); + }); }); - }); - } - //查询审核修复方案列表 - queryRepairPlanArchive(params = {}) { - let { pageInfo, order, filters } = params; - let query = new Query(); - if (pageInfo) { - query.setCurrPage(pageInfo.currPage); - query.setPageSize(pageInfo.pageSize); } - query.addFilter("status", "=", 0); //查询审核中的记录 - if (filters && filters.length > 0) { - filters.forEach((item) => { - query.addFilter(item["name"], item["operator"], item["value"]); - }); - } - let queryTask = new QueryTask(artApi.viewRepairPlanReview, !!pageInfo); - return new Promise((resolve, reject) => { - queryTask - .execute(query) - .then((res) => { - if (pageInfo) { - if (res.data) { - res.data = res.data.map((item) => { - return new RepairPlanAudit(item); - }); - resolve(res); - } - } else { - let resArr = res.map((item) => { - return new RepairPlanAudit(item); + //查询审核修复方案列表 + queryRepairPlanAudit(params = {}) { + let { pageInfo, order, filters } = params; + let query = new Query(); + if (pageInfo) { + query.setCurrPage(pageInfo.currPage); + query.setPageSize(pageInfo.pageSize); + } + query.addFilter('status', '=', 0); //查询审核中的记录 + if (filters && filters.length > 0) { + filters.forEach((item) => { + query.addFilter(item['name'], item['operator'], item['value']); }); - resolve(resArr); - } - }) - .catch((err) => { - reject(err); + } + let queryTask = new QueryTask(artApi.viewRepairPlanReview, !!pageInfo); + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + if (pageInfo) { + if (res.data) { + res.data = res.data.map((item) => { + return new RepairPlanAudit(item); + }); + resolve(res); + } + } else { + let resArr = res.map((item) => { + return new RepairPlanAudit(item); + }); + resolve(resArr); + } + }) + .catch((err) => { + reject(err); + }); }); - }); - } - //查询待审核共享数据列表 - querySyneryData(params = {}) { - let { pageInfo, filters, order } = params; - let query = new Query(); - if (pageInfo) { - query.setCurrPage(pageInfo.currPage); - query.setPageSize(pageInfo.pageSize); } - if (filters && filters.length > 0) { - filters.forEach((item) => { - query.addFilter(item["name"], item["operator"], item["value"]); - }); - } - if (order) { - query.setOrder(order); - } else { - query.setOrder({ id: "desc" }); - } - let queryTask = new QueryTask(QueryType.syneryData, false); + //查询待审核共享数据列表 + querySyneryData(params = {}) { + let { pageInfo, filters, order } = params; + let query = new Query(); + if (pageInfo) { + query.setCurrPage(pageInfo.currPage); + query.setPageSize(pageInfo.pageSize); + } + if (filters && filters.length > 0) { + filters.forEach((item) => { + query.addFilter(item['name'], item['operator'], item['value']); + }); + } + if (order) { + query.setOrder(order); + } else { + query.setOrder({ id: 'desc' }); + } + let queryTask = new QueryTask(QueryType.syneryData, false); - return new Promise((resolve, reject) => { - queryTask - .execute(query) - .then((res) => { - let resArr = res.map((item) => { - return new SynergyAudit(item); - }); - resolve(resArr); - }) - .catch((err) => { - reject(err); + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + let resArr = res.map((item) => { + return new SynergyAudit(item); + }); + resolve(resArr); + }) + .catch((err) => { + reject(err); + }); }); - }); - } + } + + //查询待审核事项数量记录 + queryAuditNumberCount(params = {}) { + let query = new Query(); + let queryTask = new QueryTask(artApi.viewStatsAuditNumberCount, false); + + return new Promise((resolve, reject) => { + queryTask + .execute(query) + .then((res) => { + resolve(res); + }) + .catch((err) => { + reject(err); + }); + }); + } } export default ArtUser; diff --git a/components/amapSearch.vue b/components/amapSearch.vue index 1eb43a1..26d786a 100644 --- a/components/amapSearch.vue +++ b/components/amapSearch.vue @@ -1,359 +1,447 @@ diff --git a/components/chooseArtwork.vue b/components/chooseArtwork.vue index c553ed9..7832118 100644 --- a/components/chooseArtwork.vue +++ b/components/chooseArtwork.vue @@ -222,9 +222,10 @@ export default { display: flex; } .art-wrap { + width: 100%; display: flex; flex-flow: row wrap; - margin: 2.1rem; + margin-top: 2.1rem; } .search-input { margin: 0 auto; diff --git a/equipment.js b/equipment.js new file mode 100644 index 0000000..ba7e3eb --- /dev/null +++ b/equipment.js @@ -0,0 +1,102 @@ +import { artApi } from './artApi'; +import { Query, QueryTask, EditTask } from './artUtil'; +import EquipmentData from './equipmentData'; +import ArtSystem from './artSystem'; + +class Equipment { + constructor(params) { + if (!params) { + params = {}; + } + this.id = params.id; + this.name = params.name; + this.description = params.description; + this.equipmentTypeId = params.type_id; + this.manufacturers = params.manufacture; //厂商 + this.serialNumber = params.number; //SN码--设备编号 + this.equipmentModel = params.model; //设备型号 + this.laboratoryId = params.laboratory_id; //实验室id + if (params.artwork_equipment_type) { + let { name, chart_option, data_type } = params.artwork_equipment_type; + this.equipmentTypeName = name; + this.chartConfiguration = chart_option; + this.dataType = data_type; + } + + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + } + + updateEquipment(params = {}) { + let editTask = new EditTask(artApi.equipmentUpdate); + editTask.addParam('_id', this.id); + editTask.addParam('_description', params.description); + editTask.addParam('_manufacture', params.manufacturers); + editTask.addParam('_number', params.serialNumber); + editTask.addParam('_model', params.equipmentModel); + editTask.addParam('_laboratory_id', params.laboratoryAddress); + editTask.addParam('_name', params.name); + + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let materialType = new Equipment(res.data); + resolve(materialType); + } + }) + .catch((err) => { + reject(err); + }); + }); + } + deleteEquipment(params) { + let editTask = new EditTask(artApi.equipmentDelete); + editTask.addParam('_id', this.id); + return editTask.execute(); + } + + createEquipmentData(params) { + let editTask = new EditTask(artApi.artworkEquipmentDataInsert); + editTask.addParam('_equipment_id', this.id); + editTask.addParam('_images', params.images); + editTask.addParam('_name', params.name); + editTask.addParam('_data', params.data); + editTask.addParam('_material_id', params.materialId); + editTask.addParam('_remarks', params.remarks); + editTask.addParam('_date_time', params.dateTime); + editTask.addParam('_geometry', params.geometry); + + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let materialType = new EquipmentData(res.data); + resolve(materialType); + } + }) + .catch((err) => { + reject(err); + }); + }); + } + + //获取设备所在实验室信息 + queryLaboratory(params = {}) { + let { filter, pageInfo } = params; + if (!filter) { + filter = []; + } + filter.push({ + name: 'id', + operator: '=', + value: this.laboratoryId, + }); + return ArtSystem.queryLaboratoryList({ filter, pageInfo }); + } +} +export default Equipment; diff --git a/equipmentData.js b/equipmentData.js new file mode 100644 index 0000000..a448ddc --- /dev/null +++ b/equipmentData.js @@ -0,0 +1,63 @@ +import { formatterMillisecond } from './utils/date'; +import { EditTask } from './artUtil'; +import { artApi } from './artApi'; +import ArtSystem from './artSystem'; + +class EquipmentData { + constructor(params) { + if (!params) { + params = {}; + } + this.id = params.id; + this.name = params.name; + this.equipmentId = params.equipment_id; + this.images = params.images; + this.geometry = params.geometry; + this.data = params.data; + this.materialId = params.material_id || null; + this.remarks = params.remarks; + this.dateTime = params.date_time; + this.tags = []; + if (params.tag_name) { + this.tags = params.tag_name.map((name) => { + return { name: name }; + }); + } + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + } + get dateTimeFormat() { + return formatterMillisecond(this.dateTime); + } + get createTimeFormat() { + return formatterMillisecond(this.createTime); + } + get updateTimeFormat() { + return formatterMillisecond(this.updateTime); + } + deleteEquipmentData() { + let editTask = new EditTask(artApi.artworkEquipmentDataDelete); + editTask.addParam('_id', this.id); + return editTask.execute(); + } + + //获取关联的材料信息 + queryqueryMateria(params = {}) { + let { filter, pageInfo } = params; + if (!filter) { + filter = []; + } + filter.push({ + name: 'id', + operator: '=', + value: this.materialId, + }); + return ArtSystem.queryMaterial({ + filter, + pageInfo, + }); + } +} +export default EquipmentData; diff --git a/equipmentType.js b/equipmentType.js new file mode 100644 index 0000000..02a0578 --- /dev/null +++ b/equipmentType.js @@ -0,0 +1,101 @@ +import { EditTask } from './artUtil'; +import { artApi } from './artApi'; +import Equipment from './equipment'; + +class ArtworkEquipmentType { + constructor(params) { + if (!params) { + params = {}; + } + this.id = params.id; + this.name = params.name; + this.description = params.description; + this.dataType = params.data_type; + + if (params.chart_option) { + this.chartConfiguration = { + type: '折线图', + xAxis: params.chart_option.xAxis, + yAxis: params.chart_option.yAxis, + }; + } else { + this.chartConfiguration = { + type: '折线图', + xAxis: { + key: null, + unit: null, + }, + yAxis: { + key: null, + unit: null, + }, + }; + } + this.equipmentCount = params.equipment_count || 0; + this.style = params.style; + this.tags = []; + if (params.tag_name) { + this.tags = params.tag_name.map((item) => { + return { name: item }; + }); + } + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + } + updateEquipmentType(params) { + let { name, description, style, tags, dataType, chartConfiguration } = params; + let editTask = new EditTask(artApi.equipmentTypeUpdate); + editTask.addParam('_id', this.id); + editTask.addParam('_description', description); + editTask.addParam('_name', name); + editTask.addParam('_style', style); + editTask.addParam('_data_type', dataType); + editTask.addParam('_chart_option', chartConfiguration); + + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let materialType = new ArtworkEquipmentType(res.data); + resolve(materialType); + } + }) + .catch((err) => { + reject(err); + }); + }); + } + deleteEquipmentType(params) { + let editTask = new EditTask(artApi.equipmentTypeDelete); + editTask.addParam('_id', this.id); + return editTask.execute(); + } + createEquipment(params) { + let editTask = new EditTask(artApi.equipmentInsert); + editTask.addParam('_type_id', this.id); + editTask.addParam('_description', params.description); + editTask.addParam('_manufacture', params.manufacturers); + editTask.addParam('_number', params.serialNumber); + editTask.addParam('_model', params.equipmentModel); + editTask.addParam('_laboratory_id', params.laboratoryAddress); + editTask.addParam('_name', params.name); + + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let equipment = new Equipment(res.data); + resolve(equipment); + } + }) + .catch((err) => { + reject(err); + }); + }); + } +} +export default ArtworkEquipmentType; diff --git a/laboratory.js b/laboratory.js new file mode 100644 index 0000000..e422aec --- /dev/null +++ b/laboratory.js @@ -0,0 +1,61 @@ +import { EditTask } from "./artUtil.js"; +import { artApi } from "./artApi"; + +class Laboratory { + constructor(params) { + if (!params) { + params = {}; + } + this.id = params.id; + this.name = params.name; + this.description = params.description; + this.geometry = params.geometry; + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + this.style = { + name: "坐标", + fillColor: "#1890ff", + fillOpacity: 1, + rotate: 0, + data: "M526.1121875 122.86625c-158.5603125 0.301875-286.9940625 128.9025-286.9940625 287.53125 0 148.111875 120.916875 303.909375 260.7384375 471.5015625 7.348125 8.829375 16.8534375 13.5796875 26.255625 14.1196875 9.4021875-0.54 18.9075-5.2903125 26.251875-14.1196875 139.8225-167.5921875 260.7403125-323.38875 260.7403125-471.5015625 0-158.6296875-128.4346875-287.229375-286.993125-287.53125zM526.1121875 501.6565625c-61.940625-0.335625-112.089375-50.58375-112.089375-112.5928125s50.14875-112.25625 112.089375-112.5928125c61.9396875 0.335625 112.0846875 50.58375 112.0846875 112.5928125s-50.1440625 112.25625-112.0846875 112.5928125z", + }; + } + + updateLaboratory(params) { + let editTask = new EditTask(artApi.laboratoryUpdate); + editTask.addParam("_id", this.id); + editTask.addParam("_description", params.description); + editTask.addParam("_name", params.name); + editTask.addParam("_geometry", params.geometry); + + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let materialType = new Laboratory(res.data); + resolve(materialType); + } + }) + .catch((err) => { + reject(err); + }); + }); + } + + deleteLaboratory(params) { + let editTask = new EditTask(artApi.laboratoryDelete); + editTask.addParam("_id", this.id); + return editTask.execute(); + } + + LaboratoryCountEquipmentIn(params) { + let editTask = new EditTask(artApi.countArtworkEquipmentInLaboratory); + editTask.addParam("_id", this.id); + return editTask.execute(); + } +} + +export default Laboratory; diff --git a/material.js b/material.js new file mode 100644 index 0000000..e672c1d --- /dev/null +++ b/material.js @@ -0,0 +1,58 @@ +import { EditTask } from "./artUtil.js"; +import { artApi } from "./artApi"; + +class Material { + constructor(params) { + if (!params) { + params = {}; + } + this.id = params.id; + this.name = params.name; + this.description = params.description; + this.images = params.images || null; + this.materialTypeId = params.material_type_id; //材料类型ID + this.materialType = params.material_type; + this.creator = params.creator; + this.updater = params.updater; + this.createTime = params.create_time; + this.updateTime = params.update_time; + } + //封面图(表格展示缩略图) + get imageUrlPreviewPath() { + if (this.images && this.images.length > 0) { + return this.images[0].previewPath; + } + } + get imageUrlimgPath() { + if (this.images && this.images.length > 0) { + return this.images[0].imgPath; + } + } + updateMaterial(params) { + let { name, description, images } = params; + let editTask = new EditTask(artApi.materialUpdate); + editTask.addParam("_id", this.id); + editTask.addParam("_description", description); + editTask.addParam("_name", name); + editTask.addParam("_images", images); + return new Promise((resolve, reject) => { + editTask + .execute() + .then((res) => { + if (res.data) { + let material = new Material(res.data); + resolve(material); + } + }) + .catch((err) => { + reject(err); + }); + }); + } + deleteMaterial(params) { + let editTask = new EditTask(artApi.materialDelete); + editTask.addParam("_id", this.id); + return editTask.execute(); + } +} +export default Material; diff --git a/repairPlanAudit.js b/repairPlanAudit.js index dd32291..264ce4e 100644 --- a/repairPlanAudit.js +++ b/repairPlanAudit.js @@ -1,34 +1,29 @@ -import AuditRecord from "./auditRecord"; -import { EditTask } from "./artUtil.js"; -import { artApi } from "./artApi"; +import AuditRecord from './auditRecord'; +import { EditTask } from './artUtil.js'; +import { artApi } from './artApi'; class RepairPlanAudit extends AuditRecord { - constructor(params) { - super(params); - this.repairPlanId = params.repair_plan_id; - this.reviewerSignatureImage = params.reviewer_signature_image; //审核人签名 - this.status = params.status; - this.applicantsignatureImage = params.applicant_signature_image; //申请人签名 - this.remark = params.remark; - this.repairPlan = { - name: params.repair_plan ? params.repair_plan["name"] : null, - repairNodes: params.repair_plan - ? params.repair_plan["repair_nodes"] - : null, - }; - } - updateRepairPlanReview(params = {}) { - let editTask = new EditTask(artApi.repairPlanReviewUpdate); - editTask.addParam("_id", this.id); - editTask.addParam("_repair_record_id", params.repairPlanId); - editTask.addParam("_remark", params.remark); - editTask.addParam("_status", params.status); + constructor(params) { + super(params); + this.repairPlanId = params.repair_plan_id; + this.reviewerSignatureImage = params.reviewer_signature_image; //审核人签名 + this.status = params.status; + this.applicantsignatureImage = params.applicant_signature_image; //申请人签名 + this.remark = params.remark; + this.repairPlan = { + name: params.repair_plan ? params.repair_plan['name'] : null, + repairNodes: params.repair_plan ? params.repair_plan['repair_nodes'] : null, + }; + } + updateRepairPlanReview(params = {}) { + let editTask = new EditTask(artApi.repairPlanReviewUpdate); + editTask.addParam('_id', this.id); + editTask.addParam('_repair_record_id', this.repairPlanId); + editTask.addParam('_remark', params.remark); + editTask.addParam('_status', params.status); - editTask.addParam( - "_reviewer_signature_image", - params.reviewerSignatureImage - ); - return editTask.execute(); - } + editTask.addParam('_reviewer_signature_image', params.reviewerSignatureImage); + return editTask.execute(); + } } export default RepairPlanAudit;