gamma 重分析接口增加processKey参数
This commit is contained in:
parent
006ae8fc22
commit
c1270be5c2
|
@ -1528,7 +1528,9 @@ export default {
|
||||||
try {
|
try {
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
const { inputFileName: fileName } = this.sample
|
const { inputFileName: fileName } = this.sample
|
||||||
const { success, result, message } = await postAction(`/gamma/Reprocessing?fileName=${fileName}`)
|
const { success, result, message } = await postAction(
|
||||||
|
`/gamma/Reprocessing?fileName=${fileName}&processKey=userId_${Date.now()}`
|
||||||
|
)
|
||||||
if (success) {
|
if (success) {
|
||||||
this.isReAnalyed = true
|
this.isReAnalyed = true
|
||||||
this.bAnalyed = result.bAnalyed
|
this.bAnalyed = result.bAnalyed
|
||||||
|
|
|
@ -517,6 +517,7 @@ export default {
|
||||||
* @param {Array<any>} willAddList
|
* @param {Array<any>} willAddList
|
||||||
*/
|
*/
|
||||||
callInitValue(willAddList) {
|
callInitValue(willAddList) {
|
||||||
|
console.log('willAddListwillAddList', willAddList)
|
||||||
willAddList
|
willAddList
|
||||||
.filter(
|
.filter(
|
||||||
({ sampleType, inputFileName }) => sampleType !== 'B' && inputFileName !== this.sampleData.inputFileName
|
({ sampleType, inputFileName }) => sampleType !== 'B' && inputFileName !== this.sampleData.inputFileName
|
||||||
|
@ -537,7 +538,7 @@ export default {
|
||||||
const params = {
|
const params = {
|
||||||
sampleId,
|
sampleId,
|
||||||
dbName,
|
dbName,
|
||||||
analyst,
|
analyst: analyst ? analyst : null,
|
||||||
sampleFileName,
|
sampleFileName,
|
||||||
gasFileName,
|
gasFileName,
|
||||||
detFileName,
|
detFileName,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user