|
@@ -229,22 +229,13 @@ export default {
|
|
// 获取分析详情接口
|
|
// 获取分析详情接口
|
|
async getAnalysisDetail() {
|
|
async getAnalysisDetail() {
|
|
try {
|
|
try {
|
|
- console.log(
|
|
|
|
- {
|
|
|
|
- fieldEngineCodes:
|
|
|
|
- this.fieldEngineCodes.length === 0
|
|
|
|
- ? undefined
|
|
|
|
- : this.fieldEngineCodes.join(","),
|
|
|
|
- },
|
|
|
|
- "fieldEngineCodes"
|
|
|
|
- );
|
|
|
|
const result = await analysisDetail({
|
|
const result = await analysisDetail({
|
|
batchCode: this.initBatchCode,
|
|
batchCode: this.initBatchCode,
|
|
analysisTypeCode: this.analysisTypeCode,
|
|
analysisTypeCode: this.analysisTypeCode,
|
|
fieldEngineCodes:
|
|
fieldEngineCodes:
|
|
this.fieldEngineCodes.length === 0
|
|
this.fieldEngineCodes.length === 0
|
|
? undefined
|
|
? undefined
|
|
- : this.fieldEngineCodes,
|
|
|
|
|
|
+ : this.fieldEngineCodes.join(","),
|
|
});
|
|
});
|
|
if (result.data.length > 0) {
|
|
if (result.data.length > 0) {
|
|
this.isShowDescription = true;
|
|
this.isShowDescription = true;
|