-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 暂无图片
-
-
-
-
{{ art.oldNameFormat }}
-
艺术家:{{ art.author || "未知" }}
-
状态:{{ art.statusMsg }}
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无图片
+
+
+
+
{{ art.oldNameFormat }}
+
艺术家:{{ art.author || '未知' }}
+
状态:{{ art.statusMsg }}
+
+
+
+
+
+
-
-
diff --git a/conditionReport.js b/conditionReport.js
index 5db4db2..9a1897d 100644
--- a/conditionReport.js
+++ b/conditionReport.js
@@ -1,90 +1,109 @@
-import { EditTask } from "@airkoon/cellsys/cellsysUtil";
-import { artApi } from "./artApi";
-import { formatterMillisecond } from "./utils/date";
+import { artApi } from './artApi';
+import { formatterMillisecond } from './utils/date';
+import { Query, QueryTask, EditTask } from './artUtil';
+import CellsysArt from './cellsysArt';
class ConditionReport {
- constructor(params) {
- if (!params) {
- params = {};
+ constructor(params) {
+ if (!params) {
+ params = {};
+ }
+ this.id = params.id;
+ this.artworkRecordId = params.artwork_record_id;
+ this.name = params.name;
+ this.modelOptions = params.model_options || {};
+ // let modelOptions = params.model_options;
+ // if (modelOptions) {
+ // // this.coverImage = new ArtImage(modelOptions.coverImage);//封面图
+ // // let reportInformation = modelOptions.reportInformation;//报告信息
+ // // if (reportInformation) {
+ // // this.checkBy = reportInformation.checkBy;
+ // // this.checkDate = reportInformation.checkDate;
+ // // this.checkLocation = reportInformation.checkLocation;
+ // // this.documentNumber = reportInformation.documentNumber;
+ // // this.conservation = reportInformation.conservation;
+ // // }
+ // // let artworkInformation = modelOptions.artworkInformation;//作品信息
+ // //
+ // // let conditionMapping = modelOptions.conditionMapping;//概况图
+ // //
+ // // let examination = modelOptions.examination;//查验情况
+ // // let grids = modelOptions.grids;//九宫格
+ // // let details = modelOptions.details;//局部图
+ // // let conservation = modelOptions.conservation;//查验结果
+ // // let suggest = modelOptions.suggest;//保存修复建议
+ // // let coverLogo=modelOptions.coverLogo;//封面logo
+ // // let logo=modelOptions.logo;
+ // modelOptions=new ReportBase()
+ // }
+ let artworkRecord = params.artwork_record;
+ if (artworkRecord) {
+ this.recordNumber = artworkRecord.record_number;
+ this.oldName = artworkRecord.old_name;
+ }
+ this.tags = [];
+ if (params.tag_name) {
+ this.tags = params.tag_name.map((name) => {
+ return { name: name };
+ });
+ }
+
+ this.createBy = params.create_by;
+ this.createTime = params.create_time;
+ this.updateBy = params.update_by;
+ this.updateTime = params.update_time;
+ this.creator = params.creator;
+ this.updater = params.updater;
}
- this.id = params.id;
- this.artworkRecordId = params.artwork_record_id;
- this.name = params.name;
- this.modelOptions = params.model_options || {};
- // let modelOptions = params.model_options;
- // if (modelOptions) {
- // // this.coverImage = new ArtImage(modelOptions.coverImage);//封面图
- // // let reportInformation = modelOptions.reportInformation;//报告信息
- // // if (reportInformation) {
- // // this.checkBy = reportInformation.checkBy;
- // // this.checkDate = reportInformation.checkDate;
- // // this.checkLocation = reportInformation.checkLocation;
- // // this.documentNumber = reportInformation.documentNumber;
- // // this.conservation = reportInformation.conservation;
- // // }
- // // let artworkInformation = modelOptions.artworkInformation;//作品信息
- // //
- // // let conditionMapping = modelOptions.conditionMapping;//概况图
- // //
- // // let examination = modelOptions.examination;//查验情况
- // // let grids = modelOptions.grids;//九宫格
- // // let details = modelOptions.details;//局部图
- // // let conservation = modelOptions.conservation;//查验结果
- // // let suggest = modelOptions.suggest;//保存修复建议
- // // let coverLogo=modelOptions.coverLogo;//封面logo
- // // let logo=modelOptions.logo;
- // modelOptions=new ReportBase()
- // }
- let artworkRecord = params.artwork_record;
- if (artworkRecord) {
- this.recordNumber = artworkRecord.record_number;
- this.oldName = artworkRecord.old_name;
+ get createTimeFormat() {
+ return formatterMillisecond(this.createTime);
}
- this.tags = [];
- if (params.tag_name) {
- this.tags = params.tag_name.map((name) => {
- return { name: name };
- });
+ get coverImageUrl() {
+ if (this.modelOptions.coverImage) {
+ return this.modelOptions.coverImage;
+ }
+ }
+ //查询艺术品档案详细信息
+ queryArtworkDetail() {
+ let editTask = new EditTask(artApi.artworkDetails);
+ editTask.addParam('_id', this.artworkRecordId);
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let cellsysArt = new CellsysArt(res.data);
+ resolve(cellsysArt);
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
}
- this.createBy = params.create_by;
- this.createTime = params.create_time;
- this.updateBy = params.update_by;
- this.updateTime = params.update_time;
- this.creator = params.creator;
- this.updater = params.updater;
- }
- get createTimeFormat() {
- return formatterMillisecond(this.createTime);
- }
- get coverImageUrl() {
- if (this.modelOptions.coverImage) {
- return this.modelOptions.coverImage;
+ conditionCheckInsert(params) {
+ let editTask = new EditTask(artApi.conditionCheckInsert);
+ editTask.addParam('_artwork_record_id', params.artworkRecordId);
+ editTask.addParam('_name', params.name);
+ editTask.addParam('_model_options', params.modelOptions);
+ return editTask.execute();
}
- }
- conditionCheckInsert(params) {
- let editTask = new EditTask(artApi.conditionCheckInsert);
- editTask.addParam("_artwork_record_id", params.artworkRecordId);
- editTask.addParam("_name", params.name);
- editTask.addParam("_model_options", params.modelOptions);
- return editTask.execute();
- }
+ conditionCheckUpdate(params) {
+ let editTask = new EditTask(artApi.conditionCheckUpdate);
+ editTask.addParam('_id', params.id);
+ editTask.addParam('_artwork_record_id', params.artworkRecordId);
+ editTask.addParam('_name', params.name);
+ editTask.addParam('_model_options', params.modelOptions);
+ return editTask.execute();
+ }
- conditionCheckUpdate(params) {
- let editTask = new EditTask(artApi.conditionCheckUpdate);
- editTask.addParam("_id", params.id);
- editTask.addParam("_artwork_record_id", params.artworkRecordId);
- editTask.addParam("_name", params.name);
- editTask.addParam("_model_options", params.modelOptions);
- return editTask.execute();
- }
-
- conditionCheckDelete(params) {
- let editTask = new EditTask(artApi.conditionCheckDelete);
- editTask.addParam("_id", params.id);
- return editTask.execute();
- }
+ conditionCheckDelete(params) {
+ let editTask = new EditTask(artApi.conditionCheckDelete);
+ editTask.addParam('_id', params.id);
+ return editTask.execute();
+ }
}
export default ConditionReport;
diff --git a/disease.js b/disease.js
new file mode 100644
index 0000000..146672b
--- /dev/null
+++ b/disease.js
@@ -0,0 +1,54 @@
+import { EditTask } from "./artUtil";
+import { artApi } from "./artApi";
+
+class Disease {
+ constructor(params = {}) {
+ this.id = params.id;
+ this.name = params.name;
+ this.description = params.description;
+ this.categoryId = params.category_id;
+ this.image = params.image; //病害图示
+ this.style = params.style;
+ }
+
+ //更新病害信息
+ updateDisease(params = {}) {
+ let editTask = new EditTask(artApi.diseaseUpdate);
+ editTask.addParam("_id", this.id);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_image", params.image);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_style", params.style);
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let disease = new Disease(res.data);
+ resolve(disease);
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
+
+ //删除病害记录
+ removeDisease() {
+ let editTask = new EditTask(artApi.diseaseDelete);
+ editTask.addParam("_id", this.id);
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ resolve(res);
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
+}
+
+export default Disease;
diff --git a/godownEntry.js b/godownEntry.js
index f89b8cb..0b2907b 100644
--- a/godownEntry.js
+++ b/godownEntry.js
@@ -1,4 +1,4 @@
-import { EditTask, Query, QueryTask } from '@airkoon/cellsys/cellsysUtil';
+import { EditTask, Query, QueryTask } from './artUtil.js';
import { artApi } from './artApi';
import { formatterMillisecond } from './utils/date';
import { godownEntryStatus } from './artEnum';
@@ -21,12 +21,12 @@ class GodownEntry {
this.conditionIssues = params.condition_issues || null; //病害信息
this.conditionIssuesImages = params.condition_issues_images
? params.condition_issues_images.map((item) => {
- return {
- original: item.original || null, //原图
- graphing: item.graphing || null, //遮罩层
- superposition: item.superposition || null, //合并
- };
- })
+ return {
+ original: item.original || null, //原图
+ graphing: item.graphing || null, //遮罩层
+ superposition: item.superposition || null, //合并
+ };
+ })
: []; //病害图 original graphing superposition
this.wareHouseId = params.ware_house_id; //仓库id
let wareHouse = params.ware_house;
@@ -44,8 +44,7 @@ class GodownEntry {
recordNumber: artworkRecord.record_number,
author: artworkRecord.author,
oldName: artworkRecord.old_name,
- creationPeriodEnd: artworkRecord.creation_period_end,
- creationPeriodStart: artworkRecord.creation_period_start,
+ createPeriod: artworkRecord.create_period || '未知',
width: artworkRecord.width,
height: artworkRecord.height,
length: artworkRecord.length,
@@ -56,8 +55,7 @@ class GodownEntry {
recordNumber: null,
author: null,
oldName: null,
- creationPeriodEnd: null,
- creationPeriodStart: null,
+ createPeriod: null,
width: null,
height: null,
length: null,
@@ -69,7 +67,7 @@ class GodownEntry {
return godownEntryStatus[this.status];
}
get entryTimeFormat() {
- return formatterMillisecond(this.entryTime);
+ return formatterMillisecond(this.entryTime, 'YYYY-MM-DD HH:mm:ss');
}
static createWareHouseEntry(params) {
diff --git a/materialType.js b/materialType.js
new file mode 100644
index 0000000..7a81690
--- /dev/null
+++ b/materialType.js
@@ -0,0 +1,66 @@
+import { EditTask } from "./artUtil.js";
+import { artApi } from "./artApi";
+import Material from "./material";
+
+class MaterialType {
+ constructor(params) {
+ if (!params) {
+ params = {};
+ }
+ this.id = params.id;
+ this.name = params.name;
+ this.description = params.description;
+ this.materialCount = params.material_count || 0;
+ this.creator = params.creator;
+ this.updater = params.updater;
+ this.createTime = params.create_time;
+ this.updateTime = params.update_time;
+ }
+ updateMaterialType(params) {
+ let { name, description } = params;
+ let editTask = new EditTask(artApi.materialTypeUpdate);
+ editTask.addParam("_id", this.id);
+ editTask.addParam("_description", description);
+ editTask.addParam("_name", name);
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let materialType = new MaterialType(res.data);
+ resolve(materialType);
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
+ deleteMaterialType(params) {
+ let editTask = new EditTask(artApi.materialTypeDelete);
+ editTask.addParam("_id", this.id);
+ return editTask.execute();
+ }
+ //新增材料
+ createMaterial(params) {
+ let editTask = new EditTask(artApi.materialInsert);
+ editTask.addParam("_material_type_id", this.id);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_images", params.images);
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let materialType = new Material(res.data);
+ resolve(materialType);
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
+}
+export default MaterialType;
diff --git a/outBoundReview.js b/outBoundReview.js
index 0ceb93d..6c6acd5 100644
--- a/outBoundReview.js
+++ b/outBoundReview.js
@@ -1,13 +1,14 @@
-import { EditTask, Query, QueryTask } from '@airkoon/cellsys/cellsysUtil';
+import { EditTask, Query, QueryTask } from './artUtil.js';
import { artApi } from './artApi';
class OutBoundReview {
- constructor(params) {
+ constructor(params = {}) {
this.id = params.id;
this.artworkRecordName = params.artwork_record_name; //艺术品档
this.artworkRecordNumber = params.artwork_record_number; //艺术品
this.wareHouseOutboundId = params.ware_house_outbound_id;
this.reviewerSignatureImage = params.reviewer_signature_image;
+ this.recipientSignatureImage = params.recipient_signature_image;
this.status = params.status;
this.destination = params.destination;
this.remark = params.remark;
@@ -21,11 +22,12 @@ class OutBoundReview {
static createWareHouseOutboundReview(params) {
let editTask = new EditTask(artApi.wareHouseOutboundReviewInsert);
editTask.addParam('_ware_house_outbound_id', params.id);
+ editTask.addParam('_recipient_signature_image', params.recipientSignatureImage);
return editTask.execute();
}
- static updateWarehouseOutboundReview(params) {
+ updateWarehouseOutboundReview(params = {}) {
let editTask = new EditTask(artApi.wareHouseOutboundReviewUpdate);
- editTask.addParam('_id', params.id);
+ editTask.addParam('_id', this.id);
editTask.addParam('_reviewer_signature_image', params.reviewerSignatureImage);
editTask.addParam('_status', params.status);
editTask.addParam('_remark', params.remark);
diff --git a/outbound.js b/outbound.js
index 1d776d3..a7487e3 100644
--- a/outbound.js
+++ b/outbound.js
@@ -1,12 +1,12 @@
-import { EditTask, Query, QueryTask } from '@airkoon/cellsys/cellsysUtil';
+import { EditTask, Query, QueryTask } from './artUtil.js';
import { artApi } from './artApi';
-import CellsysArt from './cellsysArt';
+import ArtworkEquipmentType from './equipmentType';
+import ArtRepairLog from './artRepairLog';
+import outBoundReview from './outBoundReview';
+import OutBoundReview from './outBoundReview';
class Outbound {
- constructor(params) {
- if (!params) {
- params = {};
- }
+ constructor(params = {}) {
this.id = params.id;
this.status = params.status;
this.number = params.number;
@@ -76,30 +76,56 @@ class Outbound {
this.reviewerId = params.reviewer_id;
this.reviewerSignatureimage = params.reviewer_signature_image;
}
- static cerateWarehouseOut(params) {
+ static createWarehouseOut(params = {}) {
let editTask = new EditTask(artApi.wareHouseOutboundInsert);
editTask.addParam('_artwork_record_id', params.artworkRecordId);
editTask.addParam('_recipient', params.recipient);
- editTask.addParam('_recipient_signature_image', params.recipientSignatureimage);
editTask.addParam('_reason', params.reason);
editTask.addParam('_images', params.images);
editTask.addParam('_remark', params.remark);
editTask.addParam('_destination', params.destination);
editTask.addParam('_destination_geometry', params.destinationGeometry);
- return editTask.execute();
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let outbound = new Outbound(res.data);
+ resolve(outbound);
+ } else {
+ reject('数据异常,创建失败!');
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
}
- static updateWarehouseOut(params) {
+ updateWarehouseOut(params = {}) {
let editTask = new EditTask(artApi.wareHouseOutboundUpdate);
- editTask.addParam('_id', params.id);
+ editTask.addParam('_id', this.id);
editTask.addParam('_artwork_record_id', params.artworkRecordId);
editTask.addParam('_recipient', params.recipient);
- editTask.addParam('_recipient_signature_image', params.recipientSignatureimage);
editTask.addParam('_reason', params.reason);
editTask.addParam('_images', params.images);
editTask.addParam('_remark', params.remark);
editTask.addParam('_destination', params.destination);
editTask.addParam('_destination_geometry', params.destinationGeometry);
- return editTask.execute();
+ return new Promise((resolve, reject) => {
+ editTask
+ .execute()
+ .then((res) => {
+ if (res.data) {
+ let outbound = new Outbound(res.data);
+ resolve(outbound);
+ } else {
+ reject('数据异常,创建失败!');
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
}
static deteleWareHouseOut(params) {
let editTask = new EditTask(artApi.wareHouseOutboundDelete);
@@ -147,5 +173,31 @@ class Outbound {
});
});
}
+
+ //查看出库记录对应的出库审核记录信息
+ queryoutboundReview(params = {}) {
+ let query = new Query();
+ let { filter } = params;
+ if (filter) {
+ filter.forEach((item) => {
+ query.addFilter(item['name'], item['operator'], item['value']);
+ });
+ }
+ query.addFilter('ware_house_outbound_id', '=', this.id);
+ let queryTask = new QueryTask(artApi.viewWareHouseOutboundReview, false);
+ return new Promise((resolve, reject) => {
+ queryTask
+ .execute(query)
+ .then((res) => {
+ let resArr = res.map((item) => {
+ return new OutBoundReview(item);
+ });
+ resolve(resArr);
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
}
export default Outbound;
diff --git a/package-lock.json b/package-lock.json
index 6ebeda0..16b6fcf 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,21 +1,26 @@
{
"name": "@airkoon/cellsysArt",
- "version": "1.0.0",
+ "version": "1.0.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@airkoon/cellsysArt",
- "version": "1.0.0",
+ "version": "1.0.2",
"license": "ISC",
"dependencies": {
- "@airkoon/cellsys": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git",
- "dayjs": "~1.10.6"
+ "@airkoon/cellsys": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git#v1.16.3",
+ "@amap/amap-jsapi-loader": "~1.0.1",
+ "axios": "^1.4.0",
+ "dayjs": "~1.10.6",
+ "element-plus": "^2.3.7",
+ "vue-qrcode": "^2.2.2",
+ "vue-signature-pad": "^3.0.2"
}
},
"node_modules/@airkoon/cellsys": {
- "version": "1.15.6",
- "resolved": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git#6040224f29672ea8121809bf394975bb1ab61be5",
+ "version": "1.16.3",
+ "resolved": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git#919709e5601cd746e2c254374a66da58f6f82934",
"license": "ISC",
"dependencies": {
"axios": "~1.4.0",
@@ -23,6 +28,44 @@
"dayjs": "~1.10.6"
}
},
+ "node_modules/@amap/amap-jsapi-loader": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmmirror.com/@amap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.1.tgz",
+ "integrity": "sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw=="
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "peer": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "peer": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.26.5.tgz",
+ "integrity": "sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==",
+ "peer": true,
+ "dependencies": {
+ "@babel/types": "^7.26.5"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
"node_modules/@babel/runtime": {
"version": "7.26.0",
"resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.26.0.tgz",
@@ -39,11 +82,308 @@
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
},
+ "node_modules/@babel/types": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.26.5.tgz",
+ "integrity": "sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==",
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@ctrl/tinycolor": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
+ "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@element-plus/icons-vue": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz",
+ "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==",
+ "peerDependencies": {
+ "vue": "^3.2.0"
+ }
+ },
+ "node_modules/@floating-ui/core": {
+ "version": "1.6.9",
+ "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.6.9.tgz",
+ "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==",
+ "dependencies": {
+ "@floating-ui/utils": "^0.2.9"
+ }
+ },
+ "node_modules/@floating-ui/dom": {
+ "version": "1.6.13",
+ "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.6.13.tgz",
+ "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==",
+ "dependencies": {
+ "@floating-ui/core": "^1.6.0",
+ "@floating-ui/utils": "^0.2.9"
+ }
+ },
+ "node_modules/@floating-ui/utils": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.9.tgz",
+ "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg=="
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "peer": true
+ },
+ "node_modules/@popperjs/core": {
+ "name": "@sxzz/popperjs-es",
+ "version": "2.11.7",
+ "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
+ "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@types/lodash": {
+ "version": "4.17.14",
+ "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.14.tgz",
+ "integrity": "sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A=="
+ },
+ "node_modules/@types/lodash-es": {
+ "version": "4.17.12",
+ "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
+ "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
+ "dependencies": {
+ "@types/lodash": "*"
+ }
+ },
"node_modules/@types/raf": {
"version": "3.4.3",
"resolved": "https://registry.npmmirror.com/@types/raf/-/raf-3.4.3.tgz",
"integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw=="
},
+ "node_modules/@types/web-bluetooth": {
+ "version": "0.0.16",
+ "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
+ "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ=="
+ },
+ "node_modules/@vue/compiler-core": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
+ "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
+ "peer": true,
+ "dependencies": {
+ "@babel/parser": "^7.25.3",
+ "@vue/shared": "3.5.13",
+ "entities": "^4.5.0",
+ "estree-walker": "^2.0.2",
+ "source-map-js": "^1.2.0"
+ }
+ },
+ "node_modules/@vue/compiler-dom": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
+ "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
+ "peer": true,
+ "dependencies": {
+ "@vue/compiler-core": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/compiler-sfc": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
+ "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
+ "peer": true,
+ "dependencies": {
+ "@babel/parser": "^7.25.3",
+ "@vue/compiler-core": "3.5.13",
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/compiler-ssr": "3.5.13",
+ "@vue/shared": "3.5.13",
+ "estree-walker": "^2.0.2",
+ "magic-string": "^0.30.11",
+ "postcss": "^8.4.48",
+ "source-map-js": "^1.2.0"
+ }
+ },
+ "node_modules/@vue/compiler-ssr": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
+ "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
+ "peer": true,
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/reactivity": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.13.tgz",
+ "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
+ "peer": true,
+ "dependencies": {
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/runtime-core": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
+ "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
+ "peer": true,
+ "dependencies": {
+ "@vue/reactivity": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/runtime-dom": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
+ "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
+ "peer": true,
+ "dependencies": {
+ "@vue/reactivity": "3.5.13",
+ "@vue/runtime-core": "3.5.13",
+ "@vue/shared": "3.5.13",
+ "csstype": "^3.1.3"
+ }
+ },
+ "node_modules/@vue/server-renderer": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
+ "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
+ "peer": true,
+ "dependencies": {
+ "@vue/compiler-ssr": "3.5.13",
+ "@vue/shared": "3.5.13"
+ },
+ "peerDependencies": {
+ "vue": "3.5.13"
+ }
+ },
+ "node_modules/@vue/shared": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz",
+ "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==",
+ "peer": true
+ },
+ "node_modules/@vueuse/core": {
+ "version": "9.13.0",
+ "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz",
+ "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==",
+ "dependencies": {
+ "@types/web-bluetooth": "^0.0.16",
+ "@vueuse/metadata": "9.13.0",
+ "@vueuse/shared": "9.13.0",
+ "vue-demi": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@vueuse/core/node_modules/vue-demi": {
+ "version": "0.14.10",
+ "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
+ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
+ "hasInstallScript": true,
+ "bin": {
+ "vue-demi-fix": "bin/vue-demi-fix.js",
+ "vue-demi-switch": "bin/vue-demi-switch.js"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "@vue/composition-api": "^1.0.0-rc.1",
+ "vue": "^3.0.0-0 || ^2.6.0"
+ },
+ "peerDependenciesMeta": {
+ "@vue/composition-api": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@vueuse/metadata": {
+ "version": "9.13.0",
+ "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz",
+ "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@vueuse/shared": {
+ "version": "9.13.0",
+ "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz",
+ "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==",
+ "dependencies": {
+ "vue-demi": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@vueuse/shared/node_modules/vue-demi": {
+ "version": "0.14.10",
+ "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
+ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
+ "hasInstallScript": true,
+ "bin": {
+ "vue-demi-fix": "bin/vue-demi-fix.js",
+ "vue-demi-switch": "bin/vue-demi-switch.js"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "@vue/composition-api": "^1.0.0-rc.1",
+ "vue": "^3.0.0-0 || ^2.6.0"
+ },
+ "peerDependenciesMeta": {
+ "@vue/composition-api": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "peer": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/async-validator": {
+ "version": "4.2.5",
+ "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
+ "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="
+ },
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
@@ -59,6 +399,15 @@
"proxy-from-env": "^1.1.0"
}
},
+ "node_modules/camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "peer": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/canvg": {
"version": "3.0.10",
"resolved": "https://registry.npmmirror.com/canvg/-/canvg-3.0.10.tgz",
@@ -77,6 +426,35 @@
"node": ">=10.0.0"
}
},
+ "node_modules/cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "peer": true,
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "peer": true,
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "peer": true
+ },
"node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
@@ -98,11 +476,26 @@
"url": "https://opencollective.com/core-js"
}
},
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
+ "peer": true
+ },
"node_modules/dayjs": {
"version": "1.10.8",
"resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.10.8.tgz",
"integrity": "sha512-wbNwDfBHHur9UOzNUjeKUOJ0fCb0a52Wx0xInmQ7Y8FstyajiV1NmK1e00cxsr9YrE9r7yAChE0VvpuY5Rnlow=="
},
+ "node_modules/decamelize": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
@@ -111,6 +504,84 @@
"node": ">=0.4.0"
}
},
+ "node_modules/dijkstrajs": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz",
+ "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==",
+ "peer": true
+ },
+ "node_modules/element-plus": {
+ "version": "2.9.3",
+ "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.9.3.tgz",
+ "integrity": "sha512-6tSLp5XytDS4TMZ0P3aGZnr7MXTagfNycepNfIDitd9IgwM9y01+Ssu6mglNi8RiXYhek6LBWNOd/cvpIO12+w==",
+ "dependencies": {
+ "@ctrl/tinycolor": "^3.4.1",
+ "@element-plus/icons-vue": "^2.3.1",
+ "@floating-ui/dom": "^1.0.1",
+ "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
+ "@types/lodash": "^4.14.182",
+ "@types/lodash-es": "^4.17.6",
+ "@vueuse/core": "^9.1.0",
+ "async-validator": "^4.2.5",
+ "dayjs": "^1.11.13",
+ "escape-html": "^1.0.3",
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.21",
+ "lodash-unified": "^1.0.2",
+ "memoize-one": "^6.0.0",
+ "normalize-wheel-es": "^1.2.0"
+ },
+ "peerDependencies": {
+ "vue": "^3.2.0"
+ }
+ },
+ "node_modules/element-plus/node_modules/dayjs": {
+ "version": "1.11.13",
+ "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz",
+ "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "peer": true
+ },
+ "node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "peer": true,
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+ },
+ "node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "peer": true
+ },
+ "node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "peer": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/follow-redirects": {
"version": "1.15.9",
"resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz",
@@ -143,6 +614,75 @@
"node": ">= 6"
}
},
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "peer": true,
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "peer": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
+ },
+ "node_modules/lodash-es": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz",
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
+ },
+ "node_modules/lodash-unified": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
+ "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
+ "peerDependencies": {
+ "@types/lodash-es": "*",
+ "lodash": "*",
+ "lodash-es": "*"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.17",
+ "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz",
+ "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0"
+ }
+ },
+ "node_modules/memoize-one": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
+ "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="
+ },
+ "node_modules/merge-images": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmmirror.com/merge-images/-/merge-images-1.2.0.tgz",
+ "integrity": "sha512-hEGvgnTdXr08uzGvEArxRsKpy7WmozM73YaSi4s5IYF4LxrhANpqfHaz9CgBZ5+0+s2NsjPnPdStz3aCc0Yulw=="
+ },
"node_modules/mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
@@ -162,16 +702,144 @@
"node": ">= 0.6"
}
},
+ "node_modules/nanoid": {
+ "version": "3.3.8",
+ "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.8.tgz",
+ "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "peer": true,
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/normalize-wheel-es": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
+ "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw=="
+ },
+ "node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "peer": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "peer": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "peer": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/performance-now": {
"version": "2.1.0",
"resolved": "https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz",
"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
},
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "peer": true
+ },
+ "node_modules/pngjs": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz",
+ "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==",
+ "peer": true,
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.0",
+ "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.0.tgz",
+ "integrity": "sha512-27VKOqrYfPncKA2NrFOVhP5MGAfHKLYn/Q0mz9cNQyRAKYi3VNHwYU2qKKqPCqgBmeeJ0uAFB56NumXZ5ZReXg==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "peer": true,
+ "dependencies": {
+ "nanoid": "^3.3.8",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
"node_modules/proxy-from-env": {
"version": "1.1.0",
"resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
},
+ "node_modules/qrcode": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmmirror.com/qrcode/-/qrcode-1.5.4.tgz",
+ "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==",
+ "peer": true,
+ "dependencies": {
+ "dijkstrajs": "^1.0.1",
+ "pngjs": "^5.0.0",
+ "yargs": "^15.3.1"
+ },
+ "bin": {
+ "qrcode": "bin/qrcode"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
"node_modules/raf": {
"version": "3.4.1",
"resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz",
@@ -185,6 +853,21 @@
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
},
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "peer": true
+ },
"node_modules/rgbcolor": {
"version": "1.0.1",
"resolved": "https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz",
@@ -193,6 +876,26 @@
"node": ">= 0.8.15"
}
},
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
+ "peer": true
+ },
+ "node_modules/signature_pad": {
+ "version": "3.0.0-beta.4",
+ "resolved": "https://registry.npmmirror.com/signature_pad/-/signature_pad-3.0.0-beta.4.tgz",
+ "integrity": "sha512-cOf2NhVuTiuNqe2X/ycEmizvCDXk0DoemhsEpnkcGnA4kS5iJYTCqZ9As7tFBbsch45Q1EdX61833+6sjJ8rrw=="
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/stackblur-canvas": {
"version": "2.7.0",
"resolved": "https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz",
@@ -201,6 +904,32 @@
"node": ">=0.1.14"
}
},
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "peer": true,
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "peer": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/svg-pathdata": {
"version": "6.0.3",
"resolved": "https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz",
@@ -208,6 +937,123 @@
"engines": {
"node": ">=12.0.0"
}
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+ },
+ "node_modules/vue": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.13.tgz",
+ "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
+ "peer": true,
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/compiler-sfc": "3.5.13",
+ "@vue/runtime-dom": "3.5.13",
+ "@vue/server-renderer": "3.5.13",
+ "@vue/shared": "3.5.13"
+ },
+ "peerDependencies": {
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vue-qrcode": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmmirror.com/vue-qrcode/-/vue-qrcode-2.2.2.tgz",
+ "integrity": "sha512-SbrXq/mSb1g2tbDyXPe9gy9KiMYsvxWKRErlpij1BqiFoHwQckheZV63CTw6yRLLUVG2RXAVlX+APkpdCK7SQQ==",
+ "dependencies": {
+ "tslib": "^2.6.2"
+ },
+ "funding": {
+ "url": "https://opencollective.com/rxts"
+ },
+ "peerDependencies": {
+ "qrcode": "^1.0.0",
+ "vue": "^2.7.0 || ^3.0.0"
+ }
+ },
+ "node_modules/vue-signature-pad": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmmirror.com/vue-signature-pad/-/vue-signature-pad-3.0.2.tgz",
+ "integrity": "sha512-o25o+lROfCmzASS2+fU8ZV801kV+D4/02zkZ+ez3NKeiUmbxW7kwlUf5oKQkvA+l7Ou9xGsGLsirBLch3jyX8A==",
+ "dependencies": {
+ "merge-images": "^1.1.0",
+ "signature_pad": "^3.0.0-beta.3"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "peerDependencies": {
+ "vue": "^3.2.0"
+ }
+ },
+ "node_modules/which-module": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz",
+ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
+ "peer": true
+ },
+ "node_modules/wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "peer": true,
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "peer": true
+ },
+ "node_modules/yargs": {
+ "version": "15.4.1",
+ "resolved": "https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz",
+ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+ "peer": true,
+ "dependencies": {
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "18.1.3",
+ "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz",
+ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+ "peer": true,
+ "dependencies": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
}
}
}
diff --git a/package.json b/package.json
index 3abf48e..cf642ed 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@airkoon/cellsysArt",
- "version": "1.0.2",
+ "version": "1.0.4",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
@@ -8,7 +8,12 @@
"license": "ISC",
"description": "美院相关",
"dependencies": {
- "@airkoon/cellsys": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git",
- "dayjs": "~1.10.6"
+ "@airkoon/cellsys": "git+http://ag:12345678@8.134.38.106:3000/ag/cellsys.git#v1.16.3",
+ "axios": "^1.4.0",
+ "dayjs": "~1.10.6",
+ "element-plus": "^2.3.7",
+ "@amap/amap-jsapi-loader": "~1.0.1",
+ "vue-signature-pad": "^3.0.2",
+ "vue-qrcode": "^2.2.2"
}
}
diff --git a/repairFileAudit.js b/repairFileAudit.js
new file mode 100644
index 0000000..6b8a059
--- /dev/null
+++ b/repairFileAudit.js
@@ -0,0 +1,54 @@
+import AuditRecord from "./auditRecord";
+import { Query, QueryTask, EditTask } from "./artUtil";
+import { artApi } from "./artApi";
+import ArtRepairFile from "./artRepairFile";
+
+class RepairFileAudit extends AuditRecord {
+ constructor(params = {}) {
+ super(params);
+
+ this.reviewerSignatureImage = params.reviewer_signature_image; //审核人签名
+ this.status = params.status;
+ this.applicantsignatureImage = params.applicant_signature_image; //申请人签名
+ this.repairFile = {
+ id: params.repair_record_id,
+ name: params.repair_record ? params.repair_record["name"] : null,
+ };
+ }
+
+ queryRepairFile() {
+ let query = new Query();
+ query.addFilter("id", "=", this.repairFile.id);
+ let queryTask = new QueryTask(artApi.viewRepairRecord, false);
+ return new Promise((resolve, reject) => {
+ queryTask
+ .execute(query)
+ .then((res) => {
+ let resArr = res.map((item) => {
+ return new ArtRepairFile(item);
+ });
+ resolve(resArr);
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+ }
+
+ //修复档案审核
+ updateRepairFileReview(params = {}) {
+ let editTask = new EditTask(artApi.repairRecordArchiveReviewUpdate);
+ editTask.addParam("_id", this.id);
+ editTask.addParam("_repair_record_id", this.repairFile.id);
+ editTask.addParam("_remark", params.remark);
+ editTask.addParam("_status", params.status);
+
+ editTask.addParam(
+ "_reviewer_signature_image",
+ params.reviewerSignatureImage
+ );
+ return editTask.execute();
+ }
+}
+
+export default RepairFileAudit;
diff --git a/repairPlanAudit.js b/repairPlanAudit.js
new file mode 100644
index 0000000..dd32291
--- /dev/null
+++ b/repairPlanAudit.js
@@ -0,0 +1,34 @@
+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);
+
+ editTask.addParam(
+ "_reviewer_signature_image",
+ params.reviewerSignatureImage
+ );
+ return editTask.execute();
+ }
+}
+export default RepairPlanAudit;
diff --git a/synergyAudit.js b/synergyAudit.js
new file mode 100644
index 0000000..6955dde
--- /dev/null
+++ b/synergyAudit.js
@@ -0,0 +1,29 @@
+import { Query, QueryTask } from "./artUtil";
+import { formatterMillisecond } from "./utils/date";
+
+class SynergyAudit {
+ constructor(params = {}) {
+ this.id = params.id;
+ this.orgId = params.org_id;
+ this.dataType = params.data_type;
+ this.dataId = params.data_id;
+ this.dataName = params.data_name;
+ this.status = params.status;
+ this.createTime = params.create_time;
+ this.createBy = params.create_by;
+ this.updateTime = params.updata_time;
+ this.updateBy = params.update_by;
+ this.remark = params.remark;
+ this.createByName = params.create_by_name;
+ this.updateByName = params.update_by_name;
+ }
+
+ get createTimeFormat() {
+ return formatterMillisecond(this.createTime);
+ }
+ get updateTimeFormat() {
+ return formatterMillisecond(this.updateTime);
+ }
+}
+
+export default SynergyAudit;
diff --git a/utils/axios.js b/utils/axios.js
new file mode 100644
index 0000000..c9f8429
--- /dev/null
+++ b/utils/axios.js
@@ -0,0 +1,39 @@
+import axios from 'axios';
+import ArtSystem from '../artSystem';
+
+const service = axios.create({
+ baseURL: '/api', //api 的 base_url,根据开发生产环境配置文件配置
+ withCredentials: true, // 跨域请求时发送 cookies
+ timeout: 0,
+ headers: {
+ 'Content-Type': 'application/json;charset=UTF-8',
+ },
+ responseType: 'json',
+});
+//axiios的response封装不在本库中,由各自引用CellsysArt的项目里去按需封装
+service.interceptors.request.use(
+ (config) => {
+ let url = config.url;
+ let token = ArtSystem.token;
+ if (token && !config.headers['Authorization']) {
+ config.headers['Authorization'] = 'Bearer ' + token;
+ }
+ return config;
+ },
+ (error) => {
+ console.log(error);
+ return Promise.reject(error);
+ },
+);
+
+const post = (url, data, config) => {
+ return service.post(url, data, config);
+};
+
+const get = (url, data) => {
+ return service.get(url, {
+ params: data,
+ });
+};
+
+export { post, get, service };
diff --git a/wareHouse.js b/wareHouse.js
index 95a124a..5e6574b 100644
--- a/wareHouse.js
+++ b/wareHouse.js
@@ -1,101 +1,101 @@
-import { EditTask, Query, QueryTask } from '@airkoon/cellsys/cellsysUtil';
-import { artApi } from './artApi';
+import { EditTask, Query, QueryTask } from "./artUtil.js";
+import { artApi } from "./artApi";
class Warehouse {
- constructor(params) {
- if (!params) {
- params = {};
- }
- this.orgId = params.org_id;
- this.orgName = params.org_name;
- this.id = params.id;
- this.name = params.name;
- this.type = params.type;
- this.status = params.status;
- this.action = params.action || 0;
- this.bufferDistance = params.buffer_distance || 0;
- this.radius = params.radius || 0;
- this.geometry = params.geometry;
- this.typeName = params.type_name;
- this.style = params.style ? params.style : {};
- this.description = params.description;
+ constructor(params) {
+ if (!params) {
+ params = {};
}
- static createWarehouse(params) {
- let editTask = new EditTask(artApi.wareHouseInsert);
- editTask.addParam('_name', params.name);
- editTask.addParam('_description', params.description);
- editTask.addParam('_geometry', params.geometry);
- editTask.addParam('_type', params.type);
- editTask.addParam('_status', 1);
- editTask.addParam('_action', params.action);
- editTask.addParam('_buffer_distance', params.bufferDistance);
- editTask.addParam('_radius', params.radius);
- return editTask.execute();
+ this.orgId = params.org_id;
+ this.orgName = params.org_name;
+ this.id = params.id;
+ this.name = params.name;
+ this.type = params.type;
+ this.status = params.status;
+ this.action = params.action || 0;
+ this.bufferDistance = params.buffer_distance || 0;
+ this.radius = params.radius || 0;
+ this.geometry = params.geometry;
+ this.typeName = params.type_name;
+ this.style = params.style ? params.style : {};
+ this.description = params.description;
+ }
+ static createWarehouse(params) {
+ let editTask = new EditTask(artApi.wareHouseInsert);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_geometry", params.geometry);
+ editTask.addParam("_type", params.type);
+ editTask.addParam("_status", 1);
+ editTask.addParam("_action", params.action);
+ editTask.addParam("_buffer_distance", params.bufferDistance);
+ editTask.addParam("_radius", params.radius);
+ return editTask.execute();
+ }
+ static updateWarehouse(params) {
+ let editTask = new EditTask(artApi.wareHouseUpdate);
+ editTask.addParam("_type", params.type);
+ editTask.addParam("_id", params.id);
+ editTask.addParam("_geometry", params.geometry);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_action", params.action);
+ editTask.addParam("_status", 1);
+ editTask.addParam("_buffer_distance", params.bufferDistance);
+ editTask.addParam("_radius", params.radius);
+ return editTask.execute();
+ }
+ static deleteWarehouse(params) {
+ let editTask = new EditTask(artApi.wareHouseDelete);
+ editTask.addParam("_id", params.id);
+ return editTask.execute();
+ }
+ static queryWarehouse(pageInfo, filters, order) {
+ let query = new Query();
+ if (pageInfo) {
+ query.setCurrPage(pageInfo.currPage);
+ query.setPageSize(pageInfo.pageSize);
}
- static updateWarehouse(params) {
- let editTask = new EditTask(artApi.wareHouseUpdate);
- editTask.addParam('_type', params.type);
- editTask.addParam('_id', params.id);
- editTask.addParam('_geometry', params.geometry);
- editTask.addParam('_name', params.name);
- editTask.addParam('_description', params.description);
- editTask.addParam('_action', params.action);
- editTask.addParam('_status', 1);
- editTask.addParam('_buffer_distance', params.bufferDistance);
- editTask.addParam('_radius', params.radius);
- return editTask.execute();
+ if (filters && filters.length > 0) {
+ filters.forEach((item) => {
+ query.addFilter(item["name"], item["operator"], item["value"]);
+ });
}
- static deleteWarehouse(params) {
- let editTask = new EditTask(artApi.wareHouseDelete);
- editTask.addParam('_id', params.id);
- return editTask.execute();
+ if (order) {
+ query.setOrder(order);
+ } else {
+ query.setOrder({ id: "desc" });
}
- static queryWarehouse(pageInfo, filters, order) {
- 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']);
+ let queryTask = new QueryTask(artApi.viewWareHouse, pageInfo);
+ return new Promise((resolve, reject) => {
+ queryTask
+ .execute(query)
+ .then((res) => {
+ if (pageInfo) {
+ if (res.data) {
+ res.data = res.data.map((item) => {
+ return new Warehouse(item);
+ });
+ resolve(res);
+ }
+ } else {
+ let resArr = res.map((item) => {
+ return new Warehouse(item);
});
- }
- if (order) {
- query.setOrder(order);
- } else {
- query.setOrder({ id: 'desc' });
- }
- let queryTask = new QueryTask(artApi.viewWareHouse, pageInfo);
- return new Promise((resolve, reject) => {
- queryTask
- .execute(query)
- .then((res) => {
- if (pageInfo) {
- if (res.data) {
- res.data = res.data.map((item) => {
- return new Warehouse(item);
- });
- resolve(res);
- }
- } else {
- let resArr = res.map((item) => {
- return new Warehouse(item);
- });
- resolve(resArr);
- }
- })
- .catch((err) => {
- reject(err);
- });
+ resolve(resArr);
+ }
+ })
+ .catch((err) => {
+ reject(err);
});
- }
- static countArtworkInWareHouse(params) {
- // let query = new Query();
- let editTask = new EditTask(artApi.countInWareHouse);
- editTask.addParam('_id', params.id);
- editTask.addParam('_type', params.type);
- return editTask.execute();
- }
+ });
+ }
+ static countArtworkInWareHouse(params) {
+ // let query = new Query();
+ let editTask = new EditTask(artApi.countInWareHouse);
+ editTask.addParam("_id", params.id);
+ editTask.addParam("_type", params.type);
+ return editTask.execute();
+ }
}
export default Warehouse;
diff --git a/wareHouseType.js b/wareHouseType.js
index 4a53a3f..6a91ecb 100644
--- a/wareHouseType.js
+++ b/wareHouseType.js
@@ -1,100 +1,102 @@
-import { CellsysMarkerStyle } from '@airkoon/cellsys/cellsysStyle';
-import { EditTask, Query, QueryTask } from '@airkoon/cellsys/cellsysUtil';
-import { artApi } from './artApi';
+import { CellsysMarkerStyle } from "@airkoon/cellsys/cellsysStyle";
+import { EditTask, Query, QueryTask } from "./artUtil.js";
+import { artApi } from "./artApi";
class WareHouseType {
- constructor(params) {
- if (!params) {
- params = {};
- }
- this.id = params.id;
- this.orgId = params.org_id;
- this.name = params.name;
- this.typeCount = params.type_count;
- this.description = params.description;
- this.style = params.style ? params.style : CellsysMarkerStyle.getDefaultStyle();
- let creator = params.creator;
- this.creator = {
- memberId: null,
- name: null,
- };
- if (creator) {
- this.creator = {
- memberId: creator.member_id,
- name: creator.name,
- };
- }
- let updater = params.updater;
- this.updater = {
- memberId: null,
- name: null,
- };
- if (updater) {
- this.updater = {
- memberId: updater.member_id,
- name: updater.name,
- };
- }
+ constructor(params) {
+ if (!params) {
+ params = {};
}
- static createWareHouseType(params) {
- let editTask = new EditTask(artApi.wareHouseTypeInsert);
- editTask.addParam('_name', params.name);
- editTask.addParam('_description', params.description);
- editTask.addParam('_style', params.style);
- return editTask.execute();
+ this.id = params.id;
+ this.orgId = params.org_id;
+ this.name = params.name;
+ this.typeCount = params.type_count;
+ this.description = params.description;
+ this.style = params.style
+ ? params.style
+ : CellsysMarkerStyle.getDefaultStyle();
+ let creator = params.creator;
+ this.creator = {
+ memberId: null,
+ name: null,
+ };
+ if (creator) {
+ this.creator = {
+ memberId: creator.member_id,
+ name: creator.name,
+ };
}
- static updateWareHouseType(params) {
- let editTask = new EditTask(artApi.wareHouseTypeUpdate);
- editTask.addParam('_id', params.id);
- editTask.addParam('_name', params.name);
- editTask.addParam('_description', params.description);
- editTask.addParam('_style', params.style);
- return editTask.execute();
+ let updater = params.updater;
+ this.updater = {
+ memberId: null,
+ name: null,
+ };
+ if (updater) {
+ this.updater = {
+ memberId: updater.member_id,
+ name: updater.name,
+ };
}
- static deleteWareHouseType(params) {
- let editTask = new EditTask(artApi.wareHouseTypeDelete);
- editTask.addParam('_id', params.id);
- return editTask.execute();
+ }
+ static createWareHouseType(params) {
+ let editTask = new EditTask(artApi.wareHouseTypeInsert);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_style", params.style);
+ return editTask.execute();
+ }
+ static updateWareHouseType(params) {
+ let editTask = new EditTask(artApi.wareHouseTypeUpdate);
+ editTask.addParam("_id", params.id);
+ editTask.addParam("_name", params.name);
+ editTask.addParam("_description", params.description);
+ editTask.addParam("_style", params.style);
+ return editTask.execute();
+ }
+ static deleteWareHouseType(params) {
+ let editTask = new EditTask(artApi.wareHouseTypeDelete);
+ editTask.addParam("_id", params.id);
+ return editTask.execute();
+ }
+ static queryWareHouseType(pageInfo, filters, order) {
+ let query = new Query();
+ if (pageInfo) {
+ query.setCurrPage(pageInfo.currPage);
+ query.setPageSize(pageInfo.pageSize);
}
- static queryWareHouseType(pageInfo, filters, order) {
- 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 (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(artApi.viewWareHouseType, pageInfo);
+ return new Promise((resolve, reject) => {
+ queryTask
+ .execute(query)
+ .then((res) => {
+ if (pageInfo) {
+ if (res.data) {
+ res.data = res.data.map((item) => {
+ return new WareHouseType(item);
+ });
+ resolve(res);
+ }
+ } else {
+ let resArr = res.map((item) => {
+ return new WareHouseType(item);
});
- }
- if (order) {
- query.setOrder(order);
- } else {
- query.setOrder({ id: 'desc' });
- }
- let queryTask = new QueryTask(artApi.viewWareHouseType, pageInfo);
- return new Promise((resolve, reject) => {
- queryTask
- .execute(query)
- .then((res) => {
- if (pageInfo) {
- if (res.data) {
- res.data = res.data.map((item) => {
- return new WareHouseType(item);
- });
- resolve(res);
- }
- } else {
- let resArr = res.map((item) => {
- return new WareHouseType(item);
- });
- resolve(resArr);
- }
- })
- .catch((err) => {
- reject(err);
- });
+ resolve(resArr);
+ }
+ })
+ .catch((err) => {
+ reject(err);
});
- }
+ });
+ }
}
export default WareHouseType;