|
@@ -40,7 +40,8 @@
|
|
|
<i v-for='(info,infoIndex) in detail.brandList' :key='infoIndex'>
|
|
|
{{ info.brandname || 'xxx' }}
|
|
|
-
|
|
|
- {{ info.shopsnumList ?info.shopsnumList.replaceAll(',','、'): 'xxx' }}
|
|
|
+ <!-- {{ info.shopsnumList ?info.shopsnumList.replaceAll(',','、'): 'xxx' }} -->
|
|
|
+ {{ info.shopsnumList ?info.shopsnumList.replace(/,/g,'、') : 'xxx' }}
|
|
|
{{infoIndex===detail.brandList.length-1? '':',' }}
|
|
|
</i>
|
|
|
</span>
|
|
@@ -61,7 +62,8 @@
|
|
|
<i v-for='(info,infoIndex) in detail.brandList' :key='infoIndex'>
|
|
|
{{ info.brandname || 'xxx' }}
|
|
|
-
|
|
|
- {{ info.shopsnumList ? info.shopsnumList.replaceAll(',','、') : 'xxx' }}
|
|
|
+ <!-- {{ info.shopsnumList ? info.shopsnumList.replaceAll(',','、') : 'xxx' }} -->
|
|
|
+ {{ info.shopsnumList ?info.shopsnumList.replace(/,/g,'、') : 'xxx' }}
|
|
|
{{ infoIndex === detail.brandList.length - 1 ? '' : ',' }}
|
|
|
</i>
|
|
|
</span>
|