Commit c18f0593 by linjinhong

fix:修改问题

parent f94dee6c
......@@ -1224,17 +1224,15 @@
<span class="order-detail-item-label">自定义标签:</span>
<span
class="order-detail-item-value"
:title=" row.customTagList?.length
? row.customTagList
.map((item: { name: string }) => item.name)
.join(',')
: ''"
:title="
row.customTagList?.length
? row.customTagList.map((item) => item.name).join(',')
: ''
"
>
{{
row.customTagList?.length
? row.customTagList
.map((item: { name: string }) => item.name)
.join(',')
? row.customTagList.map((item) => item.name).join(',')
: ''
}}
</span>
......
......@@ -1386,17 +1386,15 @@
<span class="order-detail-item-label">自定义标签:</span>
<span
class="order-detail-item-value"
:title=" row.customTagList?.length
? row.customTagList
.map((item: { name: string }) => item.name)
.join(',')
: ''"
:title="
row.customTagList?.length
? row.customTagList.map((item) => item.name).join(',')
: ''
"
>
{{
row.customTagList?.length
? row.customTagList
.map((item: { name: string }) => item.name)
.join(',')
? row.customTagList.map((item) => item.name).join(',')
: ''
}}
</span>
......
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