Commit f1f2bde3 by wusiyi

feat: podcn 国家筛选支持多选

parent 498bd9da
...@@ -395,6 +395,7 @@ ...@@ -395,6 +395,7 @@
v-model="searchForm.receiverCountry" v-model="searchForm.receiverCountry"
placeholder="收件国家" placeholder="收件国家"
clearable clearable
multiple
:teleported="false" :teleported="false"
style="width: 150px" style="width: 150px"
filterable filterable
...@@ -1594,6 +1595,12 @@ ...@@ -1594,6 +1595,12 @@
</el-icon> </el-icon>
</div> </div>
<div class="order-detail-item"> <div class="order-detail-item">
<span class="order-detail-item-label">商品总数量:</span>
<span class="order-detail-item-value" :title="row.productNum">
{{ row.productNum }}
</span>
</div>
<div class="order-detail-item">
<span class="order-detail-item-label">自定义标签:</span> <span class="order-detail-item-label">自定义标签:</span>
<span class="order-detail-item-value" :title="getTagName(row)"> <span class="order-detail-item-value" :title="getTagName(row)">
{{ getTagName(row) }} {{ getTagName(row) }}
...@@ -4231,6 +4238,9 @@ const { ...@@ -4231,6 +4238,9 @@ const {
: undefined, : undefined,
interceptStatus: interceptStatus:
status.value === 'INTERCEPTED' ? interceptStatus.value : '', status.value === 'INTERCEPTED' ? interceptStatus.value : '',
receiverCountry: Array.isArray(searchForm.value?.receiverCountry)
? searchForm.value.receiverCountry.join(',')
: searchForm.value?.receiverCountry || '',
}, },
page, page,
pageSize, pageSize,
......
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