对接待办中心
This commit is contained in:
@@ -171,8 +171,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
} else if (row.flowType == '2') {
|
} else if (row.flowType == '2') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds: row.taskIds,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
projectLibraryId: row.projectLibraryId,
|
projectLibraryId: row.projectLibraryId,
|
||||||
@@ -200,8 +204,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
} else if (row.flowType == '3') {
|
} else if (row.flowType == '3') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds: row.taskIds,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
studioEngineer: row.studioEngineer,
|
studioEngineer: row.studioEngineer,
|
||||||
@@ -229,8 +237,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
} else if (row.flowType == '4') {
|
} else if (row.flowType == '4') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds: row.taskIds,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
id: row.projectLibraryId,
|
id: row.projectLibraryId,
|
||||||
projectLibraryId: row.projectLibraryId,
|
projectLibraryId: row.projectLibraryId,
|
||||||
|
|||||||
@@ -121,16 +121,16 @@
|
|||||||
projectName: item.projectName,
|
projectName: item.projectName,
|
||||||
projectNameId: item.projectNameId,
|
projectNameId: item.projectNameId,
|
||||||
targetMarket: item.targetMarket,
|
targetMarket: item.targetMarket,
|
||||||
studioEngineer:item.studioEngineer,
|
studioEngineer: item.studioEngineer
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
},
|
},
|
||||||
standardInformationClick(item){
|
standardInformationClick(item) {
|
||||||
let newUrl = this.$router.resolve({
|
let newUrl = this.$router.resolve({
|
||||||
path: '/docManage/library/detail',
|
path: '/docManage/library/detail',
|
||||||
query: {
|
query: {
|
||||||
id: item.bussDocumentLibraryId,
|
id: item.bussDocumentLibraryId
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
@@ -139,18 +139,18 @@
|
|||||||
let query = {}
|
let query = {}
|
||||||
if (row.flowType == '1') {
|
if (row.flowType == '1') {
|
||||||
query = {
|
query = {
|
||||||
taskDefinitionKey:row.taskDefinitionKey,
|
taskDefinitionKey: row.taskDefinitionKey,
|
||||||
taskIds:row.taskId,
|
taskIds: row.taskId,
|
||||||
prcType:row.flowType,
|
prcType: row.flowType,
|
||||||
prcNum:row.prcNum,
|
prcNum: row.prcNum,
|
||||||
isTrue:true,
|
isTrue: true
|
||||||
}
|
}
|
||||||
let newUrl = this.$router.resolve({
|
let newUrl = this.$router.resolve({
|
||||||
path: '/handshakeProcess',
|
path: '/handshakeProcess',
|
||||||
query: query
|
query: query
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '10'){
|
} else if (row.flowType == '10') {
|
||||||
let newUrl = this.$router.resolve({
|
let newUrl = this.$router.resolve({
|
||||||
path: '/ProjectDetails',
|
path: '/ProjectDetails',
|
||||||
query: {
|
query: {
|
||||||
@@ -158,17 +158,21 @@
|
|||||||
projectName: row.projectName,
|
projectName: row.projectName,
|
||||||
projectNameId: row.projectNameId,
|
projectNameId: row.projectNameId,
|
||||||
targetMarket: row.targetMarket,
|
targetMarket: row.targetMarket,
|
||||||
studioEngineer:row.studioEngineer,
|
studioEngineer: row.studioEngineer,
|
||||||
type:'102',
|
type: '102'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '2'){
|
} else if (row.flowType == '2') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds:row.taskId,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
projectLibraryId:row.projectLibraryId,
|
projectLibraryId: row.projectLibraryId,
|
||||||
id: row.projectLibraryId,
|
id: row.projectLibraryId,
|
||||||
studioEngineer: row.studioEngineer,
|
studioEngineer: row.studioEngineer,
|
||||||
serialNumber: row.serialNumber,
|
serialNumber: row.serialNumber,
|
||||||
@@ -192,13 +196,17 @@
|
|||||||
query: query
|
query: query
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '3'){
|
} else if (row.flowType == '3') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds:row.taskId,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
studioEngineer: row.studioEngineer,
|
studioEngineer: row.studioEngineer,
|
||||||
projectLibraryId:row.projectLibraryId,
|
projectLibraryId: row.projectLibraryId,
|
||||||
serialNumber: row.serialNumber,
|
serialNumber: row.serialNumber,
|
||||||
TaskKey: row.taskDefinitionKey,
|
TaskKey: row.taskDefinitionKey,
|
||||||
flowType: 3,
|
flowType: 3,
|
||||||
@@ -221,7 +229,11 @@
|
|||||||
query: query
|
query: query
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '4'){
|
} else if (row.flowType == '4') {
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds: row.taskId,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
|
|||||||
@@ -171,8 +171,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '2'){
|
}else if(row.flowType == '2'){
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds:row.taskIds,
|
taskIds:row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
projectLibraryId:row.projectLibraryId,
|
projectLibraryId:row.projectLibraryId,
|
||||||
@@ -200,8 +204,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '3'){
|
}else if(row.flowType == '3'){
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds:row.taskIds,
|
taskIds:row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
projectTaskInventoryId: row.projectLawsInventoryId,
|
projectTaskInventoryId: row.projectLawsInventoryId,
|
||||||
studioEngineer: row.studioEngineer,
|
studioEngineer: row.studioEngineer,
|
||||||
@@ -229,8 +237,12 @@
|
|||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}else if(row.flowType == '4'){
|
}else if(row.flowType == '4'){
|
||||||
|
row.taskId = row.taskId + ''
|
||||||
|
if (row.taskId.length > 30) {
|
||||||
|
row.taskId = ''
|
||||||
|
}
|
||||||
query = {
|
query = {
|
||||||
taskIds: row.taskIds,
|
taskIds: row.taskId,
|
||||||
actiProcInstId: row.actiProcInstId,
|
actiProcInstId: row.actiProcInstId,
|
||||||
id: row.projectLibraryId,
|
id: row.projectLibraryId,
|
||||||
projectLibraryId: row.projectLibraryId,
|
projectLibraryId: row.projectLibraryId,
|
||||||
|
|||||||
Reference in New Issue
Block a user