This commit is contained in:
ann 2024-06-22 17:46:48 +08:00
parent 0f2068dd47
commit 85cd7134a8
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
<p />
<el-input v-model="log" type="textarea" rows="20" />
</el-tab-pane>
<el-tab-pane v-if="formData.taskType === '11'" :label="$t('page.taskResult')">
<el-tab-pane v-if="formData.taskTypeDict === '11'" :label="$t('page.taskResult')">
<el-form>
<!-- <el-form-item :label="$t('page.taskCmdInput')">
<el-input v-model="taskInput" type="textarea" rows="10" />
@ -146,7 +146,7 @@ export default {
this.formData.synergyStatus = !res.data.synergyStatus ? this.$t('page.notSynergistic') : this.$t('page.synergistic')
// this.formData.clusterInfos ? this.selectCluster(this.formData.clusterInfos[0]) : ''
// this.cluster = this.formData.clusterInfos ? this.formData.clusterInfos[0] : []
if (this.formData.taskType === '11') {
if (this.formData.taskTypeDict === '11') {
getDeductiveDetail(this.$route.query.id).then(e => {
this.taskResult = e.data
})