diff --git a/artApi.js b/artApi.js index 0a03ed6..36f5c52 100644 --- a/artApi.js +++ b/artApi.js @@ -31,6 +31,7 @@ const artApi = { conditionCheckUpdate: '/rpc/conditionCheckUpdate', //修改状况检查 conditionCheckDelete: '/rpc/conditionCheckDelete', //删除状况检查 viewConditionCheck: '/rpc/viewConditionCheck', //查询状况检查 + viewOrgUnionRepairRecord:'/rpc/viewOrgUnionRepairRecord',//查询联合档案列表 viewRepairRecord: '/rpc/viewRepairRecord', //查询修复档案列表 repairRecordInsert: '/rpc/repairRecordInsert', //创建修复档案 repairRecordUpdate: '/rpc/repairRecordUpdate', //编辑修复档案 diff --git a/artRepairFile.js b/artRepairFile.js index bad1466..6d2fdd7 100644 --- a/artRepairFile.js +++ b/artRepairFile.js @@ -39,20 +39,22 @@ class ArtRepairFile { return { name: name }; }); } + this.orgName = params.org_name; //发布状态有关逻辑 this.isPublish = params.is_publish; this.isUnlock = params.is_unlock; - this.publishRange = params.publish_range; + this.publishRange=params.publish_range this.publishGroup = params.publish_group ? params.publish_group : []; //发布的群组 } //艺术品封面图 get coverImageUrl() { - if (this.artworkRecord['artworkImages'] && this.artworkRecord['artworkImages'].length > 0) { + if (this.artworkRecord && this.artworkRecord['artworkImages'].length > 0) { return this.artworkRecord['artworkImages'][0].compressionUrl; } } + //艺术品封面图 get oldNameFormat() { return `《${this.artworkRecord['oldName']}》`; } diff --git a/artSystem.js b/artSystem.js index a1be5a2..e2fb787 100644 --- a/artSystem.js +++ b/artSystem.js @@ -20,7 +20,10 @@ import ArtworkEquipmentType from './equipmentType'; import EquipmentData from './equipmentData'; class ArtSystem { - constructor(orgId) {} + constructor(orgId) { + + } + static unionStatus=null static token = null; //查询艺术品材质字典 @@ -351,13 +354,20 @@ class ArtSystem { //查询系统修复档案列表 static queryRepairFiles(params) { let query = new Query(); - let { filter, pageInfo } = params; + let { filter, pageInfo,getUnion } = params; if (filter) { filter.forEach((item) => { query.addFilter(item['name'], item['operator'], item['value']); }); } - let queryTask = new QueryTask(artApi.viewRepairRecord, !!pageInfo); + let queryType=artApi.viewRepairRecord + if ( ArtSystem.unionStatus&&getUnion === true) { + //联合状态为父级组织,并且需要获取联合信息 + queryType = artApi.viewOrgUnionRepairRecord; + } else { + query.setOrder({ org_id: 'asc', id: 'desc' }); + } + let queryTask = new QueryTask(queryType, !!pageInfo); return new Promise((resolve, reject) => { queryTask .execute(query) diff --git a/package.json b/package.json index 095ac27..c4684cc 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "license": "ISC", "description": "美院相关", "dependencies": { - "@airkoon/cellsys": "git+http://zhangqg:12345678@airkoon.cn:8418/airkoon/cellsysBase.git#V1.16.4", + "@airkoon/cellsys": "git+http://airkoon.cn:8418/airkoon/cellsysBase.git#V1.16.4", "axios": "^1.4.0", "dayjs": "~1.10.6", "element-plus": "^2.3.7",