This commit is contained in:
yanran200730
2023-03-31 15:17:59 +08:00
2 changed files with 11 additions and 11 deletions

View File

@@ -32,7 +32,7 @@
</ai-wrapper>
</template>
</ai-card>
<ai-evaluation :bid="detail.id" :info.sync="evaluation"/>
<ai-evaluation v-if="!!detail.id" :bid="detail.id" :info.sync="evaluation"/>
</div>
<div class="rightZone">
<ai-card title="办理进度">

View File

@@ -64,7 +64,7 @@ export default {
params: {bizId}
}).then(res => {
if (res?.data) {
this.detail = res.data
this.detail = res.data?.[0] || {}
this.$emit("update:info", {...res.data, rateText: this.rateTexts?.[this.detail.score - 1] || ""})
}
})