Commit 3437660d by lijiabin

【需求 17679】 fix: 修复回显的bug

parent e02e14c2
...@@ -375,10 +375,11 @@ onActivated(async () => { ...@@ -375,10 +375,11 @@ onActivated(async () => {
isRelateColleague, isRelateColleague,
sendType, sendType,
sendTime, sendTime,
id,
} }
// 回显主副标签 // 回显主副标签
form.value.mainTagId = String(tagIdList[0]) || '' form.value.mainTagId = tagIdList[0] || ''
form.value.tagList = tagIdList.slice(1) || [] form.value.tagList = tagIdList.slice(1) || []
const { imgUrl, faceUrl } = data const { imgUrl, faceUrl } = data
...@@ -388,6 +389,7 @@ onActivated(async () => { ...@@ -388,6 +389,7 @@ onActivated(async () => {
} else { } else {
form.value.faceUrl = faceUrl form.value.faceUrl = faceUrl
} }
console.log(form.value, 'form.value')
} }
}) })
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment