@if (!string.IsNullOrWhiteSpace(Model.Feature))
{
产品特色
}
@if (!string.IsNullOrWhiteSpace(Model.Explain))
{
产品说明
}
@if (!string.IsNullOrWhiteSpace(Model.Case))
{
投保案例
}
@if (!string.IsNullOrWhiteSpace(Model.Rule))
{
投保规则
}
@if (!string.IsNullOrWhiteSpace(Model.Flow))
{
理赔流程
}
@if (!string.IsNullOrWhiteSpace(Model.Qa))
{
产品Q&A
}
@if (!string.IsNullOrWhiteSpace(Model.Provision))
{
产品条款
}
@if (!string.IsNullOrWhiteSpace(Model.Channel))
{
如何购买
}
@if (!string.IsNullOrWhiteSpace(Model.Feature))
{
@Html.Raw(Model.Feature)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileFeature) ? Model.MobileFeature : Model.Feature)
}
@if (!string.IsNullOrWhiteSpace(Model.Explain))
{
@Html.Raw(Model.Explain)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileExplain) ? Model.MobileExplain : Model.Explain)
}
@if (!string.IsNullOrWhiteSpace(Model.Case))
{
@Html.Raw(Model.Case)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileCase) ? Model.MobileCase : Model.Case)
}
@if (!string.IsNullOrWhiteSpace(Model.Rule))
{
@Html.Raw(Model.Rule)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileRule) ? Model.MobileRule : Model.Rule)
}
@if (!string.IsNullOrWhiteSpace(Model.Flow))
{
@Html.Raw(Model.Flow)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileFlow) ? Model.MobileFlow : Model.Flow)
}
@if (!string.IsNullOrWhiteSpace(Model.Qa))
{
@Html.Raw(Model.Qa)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileQA) ? Model.MobileQA : Model.Qa)
}
@if (!string.IsNullOrWhiteSpace(Model.Provision))
{
@Html.Raw(Model.Provision)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileProvision) ? Model.MobileProvision : Model.Provision)
}
@if (!string.IsNullOrWhiteSpace(Model.Channel))
{
@Html.Raw(Model.Channel)
@Html.Raw(!string.IsNullOrWhiteSpace(Model.MobileChannel) ? Model.MobileChannel : Model.Channel)
}
@section script{
}