Compare commits

...

4 Commits

4 changed files with 30 additions and 2 deletions

View File

@ -208,7 +208,7 @@ const columns = [
}, },
}, },
{ {
title: 'E-MAIL', title: 'ServerAddress',
align: 'center', align: 'center',
dataIndex: 'emailServerAddress', dataIndex: 'emailServerAddress',
}, },

View File

@ -435,4 +435,29 @@ export default {
} }
} }
} }
//
.spectrum-analysis-sub-operators {
flex-shrink: 0;
margin-bottom: 19px;
display: flex;
gap: 11px;
flex-wrap: nowrap;
overflow: auto;
height: 46px;
align-items: center;
.pop-over-with-icon {
height: 32px;
flex-shrink: 0;
&:nth-child(1) {
width: 224px;
}
&:nth-child(3) {
width: 125px;
}
}
}
//
</style> </style>

View File

@ -726,6 +726,8 @@ export default {
}) })
} else if (el.fileType == 'C') { } else if (el.fileType == 'C') {
obj.sampleSystemType = el.fileType obj.sampleSystemType = el.fileType
obj.gasFileName = ''
obj.qcFileName = ''
el.files.forEach((item) => { el.files.forEach((item) => {
if (item.includes('_S_')) { if (item.includes('_S_')) {
obj.sampleFileName = item obj.sampleFileName = item

View File

@ -602,7 +602,8 @@ export default {
callInitValue(willAddList) { callInitValue(willAddList) {
willAddList willAddList
.filter( .filter(
({ sampleType, inputFileName }) => sampleType !== 'B' && inputFileName !== this.sampleData.inputFileName ({ sampleType, inputFileName }) =>
sampleType !== 'B' && sampleType !== 'C' && inputFileName !== this.sampleData.inputFileName
) )
.forEach(({ inputFileName: fileName, dbName, sampleId, analyst }) => { .forEach(({ inputFileName: fileName, dbName, sampleId, analyst }) => {
const params = { const params = {