bugfix: 避免configParams出现null
This commit is contained in:
@@ -499,7 +499,7 @@
|
||||
// 清理掉已被删除的标签引用(从 DOM 中移除的元素)
|
||||
reportTags.value = reportTags.value.filter((tag) => tag.parentNode !== null)
|
||||
|
||||
if (reportTags.value.length > 0 ) {
|
||||
if (reportTags.value.length > 0) {
|
||||
// 移除所有标签及其关联的零宽空格
|
||||
reportTags.value.forEach((tag) => {
|
||||
if (
|
||||
@@ -783,9 +783,9 @@
|
||||
}
|
||||
|
||||
const params = {
|
||||
type: typeValue.value,
|
||||
area: areaValue.value,
|
||||
style: styleValue.value,
|
||||
type: typeValue.value || '',
|
||||
area: areaValue.value || '',
|
||||
style: styleValue.value || '',
|
||||
useReport: reportTags.value.length > 0,
|
||||
temperature: 0.7
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user