From 542f2f5f4e8097bd9d436a52119feeeec63bdfaa Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Thu, 21 Mar 2024 10:52:05 +0800
Subject: [PATCH] 二手交易提交页面必填校验无效问题修复,地址自动回填
---
subPackage/task/workLogDetail.vue | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/subPackage/task/workLogDetail.vue b/subPackage/task/workLogDetail.vue
index cca25cd..01bdea8 100644
--- a/subPackage/task/workLogDetail.vue
+++ b/subPackage/task/workLogDetail.vue
@@ -71,7 +71,10 @@
async onLoad(option) {
await this.getTypeList();
await this.getLabelList();
- this.getDetail(option.id);
+ setTimeout(() => {
+ this.getDetail(option.id);
+ }, 200)
+
},
methods: {
getDetail(id) {
--
Gitblit v1.9.3