Commit c18f0593 by linjinhong

fix:修改问题

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