|
@@ -106,9 +106,13 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
{
|
|
{
|
|
|
dic["SeoTitle"] = SeoTitle;
|
|
dic["SeoTitle"] = SeoTitle;
|
|
|
}
|
|
}
|
|
|
- if (SeoTitle.Length > 3)
|
|
|
|
|
|
|
+ if (SeoTitle.Length == 4)
|
|
|
{
|
|
{
|
|
|
- dic["SeoTitle"] = SeoTitle.Substring(3);
|
|
|
|
|
|
|
+ dic["SeoTitle"] = SeoTitle.Substring(0,2);
|
|
|
|
|
+ }
|
|
|
|
|
+ if (SeoTitle.Length == 5)
|
|
|
|
|
+ {
|
|
|
|
|
+ dic["SeoTitle"] = SeoTitle.Substring(0,3);
|
|
|
}
|
|
}
|
|
|
// //产品类型
|
|
// //产品类型
|
|
|
// string ProductType = dic["ProductType"].ToString();
|
|
// string ProductType = dic["ProductType"].ToString();
|