Commit 8a298f46 authored by 黄奎's avatar 黄奎

页面修改

parent e5f61628
......@@ -550,12 +550,12 @@ namespace Mall.Model.Extend.MarketingCenter
/// <summary>
/// 选中的第几张图 对应的style_list里的height
/// </summary>
public int height { get; set; }
public string height { get; set; }
/// <summary>
/// 选中的第几张图 对应的style_list里的w
/// </summary>
public int w { get; set; }
public string w { get; set; }
/// <summary>
/// 选中的第几张图 对应的style_list里的h
......
......@@ -186,24 +186,27 @@ namespace Mall.WebApi.Controllers.MallBase
member_bg_pic_url = miniProgram.VipBgImg,
//头像内嵌背景图
style_bg_pic_url="",
//账户相关菜单
account = miniProgram?.AccountMenuList.Select(qitem => new{
icon_url=qitem.MenuIcon,
name=qitem.MenuName,
is_show=1,
account = miniProgram?.AccountMenuList.Select(qitem => new
{
icon_url = qitem.MenuIcon,
name = qitem.MenuName,
is_show = 1,
}),
//自定义菜单
menus = miniProgram?.SelfMenuList.Select(qitem => new {
menus = miniProgram?.SelfMenuList.Select(qitem => new
{
icon_url = qitem.MenuIcon,
name = qitem.MenuName,
link_url =qitem.MenuUrl,
open_type= "navigate",
link_url = qitem.MenuUrl,
open_type = "navigate",
@params = "",
}),
//订单菜单列表
order_bar= miniProgram?.OrderMenuList.Select(qitem => new {
order_bar = miniProgram?.OrderMenuList.Select(qitem => new
{
icon_url = qitem.MenuIcon,
name = qitem.MenuName,
link_url = qitem.MenuUrl,
......@@ -211,12 +214,20 @@ namespace Mall.WebApi.Controllers.MallBase
text = "",
}),
//收藏足迹
foot_bar= miniProgram?.FavoriteFootMenuList.Select(qitem => new {
foot_bar = miniProgram?.FavoriteFootMenuList.Select(qitem => new
{
icon_url = qitem.MenuIcon,
name = qitem.MenuName,
link_url = qitem.MenuUrl,
open_type = "navigate",
}),
//版权设置
copyright = new
{
pic_url = miniProgram.CopyRightImg,
description = miniProgram.CopyRightWord,
link_url = miniProgram.CopyRightLink,
}
}
};
mall = new
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment