fix: 增加initValue和gammaByDB参数
This commit is contained in:
parent
e0ae878a6d
commit
a071df3b66
|
@ -466,7 +466,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 获取样品详情
|
// 获取样品详情
|
||||||
async getSampleDetail() {
|
async getSampleDetail() {
|
||||||
const { dbName, sampleId } = this.sample
|
const { dbName, sampleId, analyst } = this.sample
|
||||||
try {
|
try {
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
// const { success, result, message } = Response
|
// const { success, result, message } = Response
|
||||||
|
@ -478,6 +478,7 @@ export default {
|
||||||
{
|
{
|
||||||
dbName,
|
dbName,
|
||||||
sampleId,
|
sampleId,
|
||||||
|
analyst,
|
||||||
},
|
},
|
||||||
cancelToken
|
cancelToken
|
||||||
)
|
)
|
||||||
|
|
|
@ -519,11 +519,12 @@ export default {
|
||||||
.filter(
|
.filter(
|
||||||
({ sampleType, inputFileName }) => sampleType !== 'B' && inputFileName !== this.sampleData.inputFileName
|
({ sampleType, inputFileName }) => sampleType !== 'B' && inputFileName !== this.sampleData.inputFileName
|
||||||
)
|
)
|
||||||
.forEach(({ inputFileName: fileName, dbName, sampleId }) => {
|
.forEach(({ inputFileName: fileName, dbName, sampleId, analyst }) => {
|
||||||
const params = {
|
const params = {
|
||||||
sampleId,
|
sampleId,
|
||||||
dbName,
|
dbName,
|
||||||
fileName,
|
fileName,
|
||||||
|
analyst,
|
||||||
}
|
}
|
||||||
getAction('/gamma/initValue', params)
|
getAction('/gamma/initValue', params)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user