|
@@ -387,7 +387,7 @@ export default {
|
|
|
const suffix = count > 0 ? `<span style="color:#f74e29">(此次增购${count}个省)</span>` : '';
|
|
|
// 1购买2续费3升级4试用
|
|
|
const serviceType = product.service_type;
|
|
|
- const final = finalAreaCount ? `${finalAreaCount}个省` : '';
|
|
|
+ const final = finalAreaCount > 0 ? `${finalAreaCount}个省` : '全国';
|
|
|
if(serviceType == 1 || serviceType == 3) {
|
|
|
result = `${final}${suffix}`;
|
|
|
} else if (serviceType == 2) {
|