From 86579f21ded7a639f9d6edcf3becdf51dc3a3e41 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 19 Dec 2022 11:57:14 +0800 Subject: [PATCH] 20221219 1、创建订单增加商品ID的入参 2、增加每日购买次数和购买商品会员等级判断 3、注册会员,设置了会员等级 4、商品接口增加了补贴金额和星级字段,增加总评价数量和总评价星数 --- src/main/resources/templates/febs/views/modules/mallMember/shopApply.html | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html b/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html index 4db2520..dd0b1f5 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html @@ -116,16 +116,21 @@ if (layEvent === 'shopApplyInfo') { febs.modal.open('查看详情', 'modules/mallMember/applyDetail/' + data.id, { - btn: ['通过申请', '驳回申请'], - area : $(window).width() <= 750 ? '95%' : '660px', + btn: ['通过申请', '驳回申请','保存'], + area:['100%','100%'], + // area : $(window).width() <= 750 ? '95%' : '660px', yes: function (index, layero) { $('#shop-apply-detail').find('#agree').trigger('click'); }, btn2: function () { $('#shop-apply-detail').find('#disagree').trigger('click'); + }, + btn3: function () { + $('#shop-apply-detail').find('#applyUpdate').trigger('click'); } }); } + }); // 查询按钮 @@ -157,7 +162,7 @@ {templet: '#apply-status', title: '状态', minWidth: 100}, {title: '操作', templet: function (d) { - return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="shopApplyInfo" shiro:hasPermission="user:update">查看详情</button>' + return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="shopApplyInfo" shiro:hasPermission="user:update">审核</button>' },align:'center'} ]] }); -- Gitblit v1.9.1