[聚合文章] 11、ABPZero系列教程之拼多多卖家工具 拼团提醒功能页面实现

JavaScript 2018-01-18 20 阅读

  上一篇讲解了拼团提醒逻辑功能实现,现在继续实现页面功能。

Core项目

 打开AbpZeroTemplate-zh-CN.xml语言文件,在末尾添加如下代码:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Core\Localization\AbpZeroTemplate\AbpZeroTemplate-zh-CN.xml

 

<text name="Pdd" value="拼多多" />
<text name="Pdd.KaiTuan" value="开团提醒" />
<text name="Pdd.MallExist" value="店铺已存在" />

 

 

 打开文件AppPermissions.cs,在末尾添加如下代码:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Core\Authorization\AppPermissions.cs

public const string Pages_Pdd = "Pages.Pdd";//权限路径
public const string Pages_Pdd_KaiTuan = "Pages.Pdd.KaiTuan";//权限路径

 

 

打开AppAuthorizationProvider.cs文件,在SetPermissions方法最后添加如下代码:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Core\Authorization\AppAuthorizationProvider.cs

var pdd = pages.CreateChildPermission(AppPermissions.Pages_Pdd, L("Pdd"));
            pdd.CreateChildPermission(AppPermissions.Pages_Pdd_KaiTuan, L("Pdd.KaiTuan"));

 

 

 Web项目

 打开文件PageNames.cs,

文件路径 :D:\abpweb\PddSellerAssistant\PddSellerAssistant.Web\App_Start\Navigation\PageNames.cs

在Command下添加一个常量:

public const string Pdd = "Pdd";

 

 

在32行位置添加如下代码:

/// <summary>
            ///拼多多
            /// </summary>
            public static class Pdd
            {
                public const string KaiTuan = "KaiTuan";    //开团提醒
            }

 

 

 打开MpaNavigationProvider.cs文件,在末尾添加菜单,代码如下:

 文件路径:D:\abpweb\PddSellerAssistant\PddSellerAssistant.Web\Areas\Mpa\Startup\MpaNavigationProvider.cs

 

.AddItem(new MenuItemDefinition(
                    PageNames.App.Common.Pdd,//一个常量,控制菜单是否被选中
                    L("Pdd"),//菜单显示名称,在语言文件中配置
                    url: "Mpa/Pdd",//菜单路径
                    icon: "icon-social-dropbox"//菜单图标
                    ).AddItem(new MenuItemDefinition(
                        PageNames.App.Pdd.KaiTuan,//一个常量,控制菜单是否被选中
                        L("Pdd.KaiTuan"),//菜单显示名称,在语言文件中配置
                        url: "Mpa/KaiTuan",//菜单路径
                        icon: "icon-pie-chart",//菜单图标
                        requiredPermissionName: AppPermissions.Pages_Pdd_KaiTuan//菜单权限,登录用户所在角色有此权限才会显示出来
                        ))
                )

 

 

以上就把菜单添加好了,生成解决方案,浏览器打开网站后台,以管理员身份登录,但是并没有发现刚刚添加的菜单,这是因为加了菜单加权限的关系,接以下操作即可。

打开角色菜单,分别修改admin、user角色:

 

 

 切换到权限选项卡,勾选我们需要显示的菜单,如下:

 

 保存之后,再次登录就可以显示出来菜单了。以下是user角色的菜单:

 

 

 控制器

我先在Areas\Mpa\Controllers目录下新建Pdd目录,用于保存所有跟拼多多相关的控制器。

添加文件 KaiTuanController.cs 代码如下:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Web\Areas\Mpa\Controllers\Pdd\KaiTuanController.cs 

/// <summary>
    /// 开团提醒
    /// </summary>
    public class KaiTuanController : AbpZeroTemplateControllerBase
    {
        private readonly IMallAppService _mallAppService;

        public KaiTuanController(IMallAppService mallAppService)
        {
            _mallAppService = mallAppService;
        }

        // GET: Mpa/KaiTuan
        public ActionResult Index()
        {
            return View();
        }

        public ActionResult CreateModal()
        {
            return PartialView("_CreateModal");
        }

        public ActionResult SharpModal(string title, string link, string img, string timeOut)
        {
            ViewBag.title = title;
            ViewBag.link = link;
            ViewBag.img = img;
            ViewBag.timeOut = timeOut;
            return PartialView("_SharpModal");
        }
    }

 

 

视图

接着再创建对应的视图文件

添加文件Index.cshtml,代码如下:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Web\Areas\Mpa\Views\KaiTuan\Index.cshtml

@using Abp.Web.Mvc.Extensions
@using MyCompanyName.AbpZeroTemplate.Web.Navigation
@{
    ViewBag.CurrentPageName = PageNames.App.Pdd.KaiTuan;//作用就是选中菜单时会高亮
}
@section Styles{
    <style>
        .jtable-child-table-container {
            margin-left: 50px;
        }
    </style>
    <link href="~/metronic/assets/global/plugins/bootstrap-toastr/toastr.css" rel="stylesheet" />
}
@section Scripts
{
    @Html.IncludeScript("~/metronic/assets/global/plugins/fuelux/js/spinner.min.js")
    @Html.IncludeScript("~/metronic/assets/global/plugins/bootstrap-toastr/toastr.min.js")
    @Html.IncludeScript("~/Areas/Mpa/Views/KaiTuan/Index.js")
    @Html.IncludeScript("~/Areas/Mpa/Common/Scripts/GolbalHelper.js")
    @Html.IncludeScript("~/Areas/Mpa/Views/KaiTuan/ui-toastr.js")
    <!--分享功能代码-->
    <script type="text/javascript" src="http://v1.jiathis.com/code/jia.js?uid=1575631" charset="utf-8"></script>
}
<div class="row margin-bottom-5">
    <div class="col-xs-6">
        <div class="page-head">
            <div class="page-title">
                <h1>
                    <span>@L("Pdd.KaiTuan")</span> <small></small>
                </h1>
            </div>
        </div>
    </div>
    @*这里是添加的按钮代码*@
    <div class="col-xs-6 text-right">
        <button id="CreateNewMallButton" class="btn btn-primary blue"><i class="fa fa-plus"></i>添加店铺</button>
    </div>
</div>
<div class="portlet light margin-bottom-0">
    <div class="portlet-title portlet-title-filter">
        <div class="inputs inputs-full-width">
            <div class="portlet-input">
                <div class="row">
                    <div class="col-xs-6">
                        <div class="form-group">
                            <label class="control-label">店铺</label>
                            <select id="mallCombobox" class="form-control"></select>
                        </div>
                    </div>
                    <div class="col-xs-6">
                        <div class="form-group">
                            <label class="control-label">提醒间隔(分钟)</label>
                            <div id="spinner3">
                                <div class="input-group" style="width: 150px;">
                                    <input type="text" id="interval" class="spinner-input form-control" maxlength="3" readonly>
                                    <div class="spinner-buttons input-group-btn">
                                        <button type="button" class="btn spinner-up default">
                                            <i class="fa fa-angle-up"></i>
                                        </button>
                                        <button type="button" class="btn spinner-down default">
                                            <i class="fa fa-angle-down"></i>
                                        </button>
                                    </div>
                                </div>
                            </div>


                        </div>
                    </div>
                </div>
                <div class="row">
                    <div class="col-sm-12  text-right">
                        <button id="LoginPddButton" class="btn red"><i class="fa fa-user"></i> 登录拼多多</button>
                        <button id="StartButton" class="btn blue"><i class="fa fa-play"></i> 开始监控</button>
                        <button id="StopButton" class="btn purple"><i class="fa fa-stop"></i> 停止监控</button>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="portlet-body">
        <div>
            <div id="Table"></div>
        </div>
    </div>
</div>

<script id="tm" type="template">
    <button type="button" class="sharp btn red" data-link="{link}" data-title="{title}" data-img="{img}" data-timeOut="{timeOut}">分享到...</button>

</script>

 

 

添加对应的JS文件Index.js,代码如下:

文件路径:D:\abp version\aspnet-zero-3.4.0\aspnet-zero-3.4.0\src\MyCompanyName.AbpZeroTemplate.Web\Areas\Mpa\Views\KaiTuan\Index.js

var _$kaituanTable = $('#Table');
var _mallService = abp.services.app.mall;
var _productService = abp.services.app.product;
var timer;//调用setInterval,返回的数字,用于停止时钟
var mallId;//记录店铺id
(function () {
    $(function () {
        /**
         添加店铺模态框
         */
        var _createModal = new app.ModalManager({
            viewUrl: abp.appPath + 'Mpa/KaiTuan/CreateModal',//加载视图
            scriptUrl: abp.appPath + 'Areas/Mpa/Views/KaiTuan/_CreateModal.js',//加载对应js
            modalClass: 'CreateMallModal'
        });

        /**
         分享模态框
         */
        var _sharpModal = new app.ModalManager({
            viewUrl: abp.appPath + 'Mpa/KaiTuan/SharpModal',
            scriptUrl: abp.appPath + 'Areas/Mpa/Views/KaiTuan/_SharpModal.js',
            modalClass: 'SharpModal'
        });

        _$kaituanTable.jtable({
            title: app.localize('Pdd.KaiTuan'),
            paging: true, //启用分页
            sorting: true, //启用排序
            pageSize: 500,
            multiSorting: true, //启用多列排序
            defaultSorting: 'goodId ASC',
            recordsLoaded: function (e, data) {
                var count = data.serverResponse.TotalRecordCount;
                if (count > 0) {
                    SoundHelper.PlaySound();
                }

            },
            actions: {
                listAction: {
                    method: _productService.getKaiTuanProductsAsync,
                }
            },
            fields: {
                id: {
                    key: true,
                    list: false
                },
                kaituan: {
                    title: '操作',
                    width: '5%',
                    sorting: false,
                    edit: false,
                    create: false,
                    display: function (product) {
                        //创建一个将用于打开子表的图像
                        var $img = $('<img src="/metronic/assets/admin/layout4/img/hor-menu-red-arrow.png" title="打开开团详细列表" />');
                        //用户单击图像时打开子表
                        $img.click(function () {
                            $('#Table').jtable('openChildTable',
                                    $img.closest('tr'),
                                    {
                                        title: '最新开团列表(最后更新时间为:' + DateHelper.CurentTime() + ")",
                                        paging: true, //启用分页
                                        sorting: true, //启用排序
                                        recordsLoaded: function (e, data) {
                                            console.info(data);
                                            var count = data.serverResponse.TotalRecordCount;
                                            toastr["info"]("当前开团人数共有(" + count + ")人", "提示");
                                        },
                                        actions: {
                                            listAction: {
                                                method: _productService.getAllKaiTuansByGoodId
                                            }
                                        },
                                        fields: {
                                            action: {
                                                title: '',
                                                width: '15%',
                                                display: function (kaituan) {
                                                    //操作按钮
                                                    var a = $("#tm").html();
                                                    a = a.replace(new RegExp(/(\{title\})/gm), product.record.name);
                                                    a = a.replace(new RegExp(/(\{link\})/gm), "http://mobile.yangkeduo.com/group500.html?group_order_id=" + kaituan.record.kaiTuanOrderNum + "&cid=nogroup_expire_mms_" + mallId);
                                                    a = a.replace(new RegExp(/(\{img\})/gm), product.record.img);
                                                    a = a.replace(new RegExp(/(\{timeOut\})/gm), kaituan.record.timeLeft);
                                                    return a;
                                                }
                                            },
                                            id: {
                                                title: '宝贝ID',
                                                //defaultValue: product.record.goodId,
                                                width: '10%',
                                                sorting: false
                                            },
                                            nickName: {
                                                title: '用户昵称',
                                                width: '20%',
                                                sorting: false
                                            },
                                            sku: {
                                                title: 'SKU',
                                                width: '20%',
                                                sorting: false
                                            },
                                            orderNum: {
                                                title: '订单编号',
                                                width: '20%',
                                                sorting: false
                                            },
                                            timeLeft: {
                                                title: '剩余时间',
                                                width: '20%',
                                            },
                                            kaiTuanOrderNum: {
                                                title: '开团单号',
                                                width: '20%',
                                                sorting: false
                                            }
                                        }
                                    }, function (data) { //加载子表数据
                                        data.childTable.jtable('load', {
                                            goodId: product.record.goodId,
                                            mallId: mallId,
                                            username: username
                                        });
                                    });
                        });
                        //返回图像显示在行上
                        return $img;
                    }
                },
                goodId: {
                    title: "宝贝ID",
                    width: '10%',
                    display: function (product) {
                        var img = "<img src='" + product.record.img + "' style='width: 64px; height: 64px;'/>";
                        var a = "<a href='http://mobile.yangkeduo.com/goods.html?goods_id=" + product.record.goodId + "' target='_blank'>" + product.record.goodId + "</a>";
                        return a + img;
                    }
                },
                name: {
                    title: "宝贝名称",
                    width: '70%'
                },
                kaiTuanCount: {
                    title: "开团人数",
                    width: '20%'
                },
            }
        });

        //页面加载完执行
        getMalls();
        $('#spinner3').spinner({ value: 60, min: 30, max: 1000 });
        UIToastr.init();



        //添加店铺点击事件
        $('#CreateNewMallButton').click(function () {
            _createModal.open();
        });
        //店铺成功保存后事件注册
        abp.event.on('app.createMallModalSaved', function () {
            //getCategories(true);
            getMalls();
        });


        $("#Table").delegate(".sharp", "click", function () {
            var t = $(this);
            _sharpModal.open({
                title: $(t).attr("data-title"),
                link: $(t).attr("data-link"),
                img: $(t).attr("data-img"),
                timeOut: $(t).attr("data-timeOut")
            });
        });

        //开始监控点击事件
        $("#StartButton").click(function () {
            mallId = $('#mallCombobox').val();
            if (mallId == null) {
                abp.message.warn('请至少添加一个店铺!', '警告');
                return;
            }
            $(this).attr("Disabled", "Disabled");
            $(this).text("正在监控中");

            getkaituans();
            timer = window.setInterval("getkaituans(false)", 1000 * 60 * $("#interval").val());
        });
        //停止监控点击事件
        $("#StopButton").click(function () {
            window.clearInterval(timer);
            $("#StartButton").removeAttr("Disabled");
            $("#StartButton").html("<i class='fa fa-play'></i> 开始监控");
        });

    });
})();

//获取列表
function getkaituans(reload) {
    if (reload) {
        _$kaituanTable.jtable('reload');
    } else {
        $(_$kaituanTable.find(".jtable-title-text")[0]).html(app.localize('Pdd.KaiTuan') + "(最后更新时间为:" + DateHelper.CurentTime() + ")");
        _$kaituanTable.jtable('load', {
            mallId: mallId,
            interval: $("#interval").val()
        });
    }
}
function getMalls() {
    _mallService.getMalls().done(function (result) {
        var malls = result.items;
        console.log(result);
        $("#mallCombobox").html("");
        for (var i = 0; i < malls.length; i++) {
            console.info(1);
            $("#mallCombobox").append("<option value='" + malls[i].mallId + "'>" + malls[i].mallId + "【" + malls[i].name + "】</option>");
        }
                

注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。