Compare commits
2 Commits
5feb566d46
...
d82b894c0b
Author | SHA1 | Date | |
---|---|---|---|
d82b894c0b | |||
1b549768e7 |
|
@ -188,7 +188,7 @@ export default {
|
||||||
this.sampleDetail = data
|
this.sampleDetail = data
|
||||||
this.emitGetFiles(data)
|
this.emitGetFiles(data)
|
||||||
}
|
}
|
||||||
this.ROIAnalyzeLists = data.ROIAnalyzeLists
|
this.ROIAnalyzeLists = data.ROIAnalyzeLists || []
|
||||||
} else {
|
} else {
|
||||||
if (newVal.sampleId) {
|
if (newVal.sampleId) {
|
||||||
this.getSampleDetail()
|
this.getSampleDetail()
|
||||||
|
@ -360,7 +360,7 @@ export default {
|
||||||
// 点击Update
|
// 点击Update
|
||||||
async handleUpdate() {
|
async handleUpdate() {
|
||||||
const hasEmpty = this.roiParamList.some(
|
const hasEmpty = this.roiParamList.some(
|
||||||
([startChannel, endChannel]) => (!startChannel && startChannel !== '0') || (!endChannel && endChannel !== '0')
|
([startChannel, endChannel]) => (!startChannel && startChannel != '0') || (!endChannel && endChannel != '0')
|
||||||
)
|
)
|
||||||
if (hasEmpty) {
|
if (hasEmpty) {
|
||||||
this.$message.warning('Channel cannot be null')
|
this.$message.warning('Channel cannot be null')
|
||||||
|
|
|
@ -109,7 +109,8 @@
|
||||||
<span
|
<span
|
||||||
:class="[
|
:class="[
|
||||||
(record.detFileStatus && record.gasFileStatus && record.qcFileStatus) ||
|
(record.detFileStatus && record.gasFileStatus && record.qcFileStatus) ||
|
||||||
(record.sampleFileName && !record.gasFileName && !record.detFileName && !record.qcFileName)
|
(record.sampleFileName && !record.gasFileName && !record.detFileName && !record.qcFileName) ||
|
||||||
|
(record.sampleSystemType == 'C' && record.sampleFileName)
|
||||||
? 'status_true'
|
? 'status_true'
|
||||||
: 'status_false',
|
: 'status_false',
|
||||||
'status',
|
'status',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user