+ {item.mostPopular && (
+
+ {t('pricing.mostPopular')}
+
+ )}
+
+ {/* Icon */}
+
})
+
+ {/* Title */}
+
+ {t(`pricing.${item.type}.type`)}
+
+
+ {/* Description */}
+
+ {t(item.typeDesc)}
+
+
+ {/* Price */}
+
+ {typeof item.priceObj.price !== 'undefined' ? (
+
+ ¥
+
+ {item.priceObj.price.toLocaleString()}
+
+
+ {t(item.priceObj.time)}
+
+
+ ) : (
+
+ {t(item.priceObj.time)}
+
+ )}
+
+
+ {/* CTA Button */}
+
+
+ {/* Features */}
+
+
+

+
+ {t('pricing.memoryCapacity')} { item.memoryCapacity } {t('pricing.entries')}
+
+
+
+

+
+ {t('pricing.intelligentSearchFrequency')}{ item.intelligentSearchFrequency } {t('pricing.timesMonth')}
+
+
+ {['supportServices', 'flexibleDeployment', 'reliableGuarantee'].map(type => {
+ if ((item as any)[type] || type === 'supportServices') {
+ return (
+
+

+
+ {t(`pricing.${type}`)}{t(`pricing.${item.type}.${type}`)}
+
+
+ )
+ }
+ return null
+ })}
+
+