消息提醒:您有新的订单,请及时处理

外卖吃多了,你都听到过这中声音,有好奇过是怎么实现的吗?

其实很简单,就是前端不断的请求后台接口,根据情况自动播放前端的mp3之类的早就准备好的音频。

前端核心代码:

  <div class="btn-group float-left message">
                <a href="javascript:" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown"
                   style="position: relative">
                    <span>消息提醒</span>
                    <div class="text-center ml-2 totalNum"
                         hidden
                         style="width: 18px;height: 18px;line-height: 18px;border-radius:999px;display: inline-block;background-color: #ff4544;color:#fff;">
                        5
                    </div>
                </a>
                <div class="dropdown-menu dropdown-menu-right message-list" hidden>
                </div>
            </div>


   <script>
            var checkUrl = "<?=Yii::$app->urlManager->createUrl(['mch/get-data/order'])?>";
            var checkUrlNew = "<?=Yii::$app->urlManager->createUrl(['mch/get-data/order-pharmacist'])?>";
            var pharmacist="<?=$pharmacist?>";
            var sound='';
            if(pharmacist){
                sound = "<?=Yii::$app->request->baseUrl . '/statics/'?>Baidu-TTS.mp3";
            }else {
                sound = "<?=Yii::$app->request->baseUrl . '/statics/'?>/5611.wav";
            }

            function playSound(id) {
                var borswer = window.navigator.userAgent.toLowerCase();
                if (borswer.indexOf("ie") >= 0) {
                    //IE内核浏览器
                    var strEmbed = '<embed name="embedPlay" src="' + sound + '" autostart="true" hidden="true" loop="false"></embed>';
                    if ($("body").find("embed").length <= 0)
                        $("body").append(strEmbed);
                    var embed = document.embedPlay;

                    //浏览器不支持 audion,则使用 embed 播放
                    embed.volume = 100;
                } else {
                    //非IE内核浏览器
                    var strAudio = "<audio id='audioPlay' src='" + sound + "' hidden='true'>";
                    if ($("body").find("audio").length <= 0)
                        $("body").append(strAudio);
                    var audio = document.getElementById("audioPlay");
                    //浏览器支持 audion
                    audio.play();
                }
            }


            function is_index(indexOf, list) {
                for (var i = 0; i < list.length; i++) {
                    if (indexOf == list[i]) {
                        return true;
                    }
                }
                return false;
            }


            // 订单消息
            function checkmessage() {
                $.ajax({
                    url: checkUrl,
                    type: 'get',
                    dataType: 'json',
                    success: function (res) {
                        var sound_list = JSON.parse(localStorage.getItem('sound_list'));
                        if (!sound_list) {
                            sound_list = [];
                        }
                        if (res.code == 0) {
                            var count = res.data.length;
                            if (count == 0) {
                                return;
                            }
                            $('.message-list').empty();

                            for (var i = 0; i < count; i++) {
                                $('.message-list').prop('hidden', false);
                                $('.totalNum').prop('hidden', false).html(count);
                                var type = res.data[i].type;
                                var order_type = res.data[i].order_type;
                                if (order_type == 4) {
                                    var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "申请商品上架</a>";
                                } else {
                                    if (type == 0) {
                                        var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "下了一个订单</a>";
                                    } else {
                                        var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "一个售后订单</a>";
                                    }
                                }

                                $('.message-list').append(html);

                                if (res.data[i].is_sound == 0 && !is_index(res.data[i].id, sound_list)) {
                                    sound_list.push(res.data[i].id);
                                    playSound(res.data[i].id);
                                }

                            }
                            localStorage.setItem('sound_list', JSON.stringify(sound_list));
                            $('.message-list').append("<a class='dropdown-item' style='text-align:center' href='<?=Yii::$app->urlManager->createUrl(['mch/store/order-message', 'status' => 1])?>'>全部消息</a>");
                        }
                    }
                });
            }

            //药师订单消息
            function checkmessage_ph() {
                $.ajax({
                    url:checkUrlNew,
                    type: 'get',
                    dataType: 'json',
                    success: function (res) {
                        var sound_list_new = JSON.parse(localStorage.getItem('sound_list_new'));
                        if (!sound_list_new) {
                            sound_list_new = [];
                        }
                        if (res.code == 0) {
                            var count = res.data.length;
                            if (count == 0) {
                                return;
                            }
                            $('.message-list').empty();
                            console.log(res.data);
                            for (var i = 0; i < count; i++) {
                                $('.message-list').prop('hidden', false);
                                $('.totalNum').prop('hidden', false).html(count);
                                var type = res.data[i].type;
                                var order_type = res.data[i].order_type;
                                var rx_exist=res.data[i].rx_exist;
                                if (order_type == 4) {
                                    var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "申请商品上架</a>";
                                } else {
                                    if (type == 0) {
                                            if(rx_exist==1){
                                                var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "下了一个处方药订单</a>";
                                            }
                                            if(rx_exist==0){
                                                var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "下了一个订单</a>";
                                            }
                                    } else {
                                        var html = "<a target='_blank' class='dropdown-item' data-index='" + res.data[i].id + "' href='" + res.data[i].url + "'>" + res.data[i].name + "一个售后订单</a>";
                                    }
                                }

                                $('.message-list').append(html);

                                if (!is_index(res.data[i].id, sound_list_new)) {
                                    sound_list_new.push(res.data[i].id);
                                    if(res.data[i].rx_exist==1){
                                        playSound(res.data[i].id);
                                    }
                                }
                            }
                            localStorage.setItem('sound_list_new', JSON.stringify(sound_list_new));
                            $('.message-list').append("<a class='dropdown-item' style='text-align:center' href='<?=Yii::$app->urlManager->createUrl(['mch/store/order-message', 'status' => 1])?>'>全部消息</a>");
                        }
                    }
                });
            }

            $(document).ready(function () {
                $('.message').hover(function () {
                    $('.message-list').show();
                }, function () {
                    $('.message-list').hide();
                });
                $('.message-list').on('click', 'a', function () {
                    var num = $('.totalNum');
                    num.text(num.text() - 1);
                    if (num.text() == 0) {
                        num.prop('hidden', true);
                        $('.message-list').prop('hidden', true)
                    }
                    $.ajax({
                        url: '<?=Yii::$app->urlManager->createUrl(['mch/get-data/message-del'])?>',
                        type: 'get',
                        dataType: 'json',
                        data: {
                            'id': $(this).data('index')
                        },
                        success: function (res) {
                            if (res.code == 0) {
                                window.location.href = $(this).data('url');
                            }
                        }
                    });
                    $(this).remove();
                });
                setInterval(function () {
                    <?php if($pharmacist){?>
                    checkmessage_ph();
               <?php }else{?>
                    checkmessage();
               <?php }?>
                }, 30000);
            });
        </script>
public function search()
    {
        if (!$this->validate()) {
            return $this->errorResponse;
        }
        $query = OrderMessage::find()->alias('om')->where([
            'om.store_id' => $this->store_id,
            'om.shop_id' => 0,
            'om.is_delete' => 0,
            'om.order_type' => [0, 1, 2, 3, 4]
        ]);
        if ($this->is_read) {
            $query->andWhere(['or',['om.is_read' => 0],['om.is_sound'=>0]]);
        }
        $count = $query->count();
        $pagination = new Pagination(['totalCount' => $count, 'pageSize' => $this->limit]);

        $list = $query->orderBy(['om.addtime' => SORT_DESC])
            ->limit($pagination->limit)
            ->offset($pagination->offset)
            ->asArray()
            ->all();

        $urlManager = \Yii::$app->urlManager;
        // 此处考虑在 cache 或 setting 内做缓存,存储 order_message 表的更新时间,以及查询结果
        // 插入 order_message 时,在 beforeInsert 内清空缓存
        // -- wi1dcard
        foreach ($list as $index => &$value) {
            switch ($value['order_type']) {
                case 3:
                    $yy_order = YyOrder::findOne(['id' => $value['order_id'], 'store_id' => $this->store_id]);
                    if ($value['type'] == 0) {
                        $value['url'] = $urlManager->createUrl(['mch/book/order/index', 'status' => 1]);
                    } else {
                        $value['url'] = $urlManager->createUrl(['mch/book/order/index', 'status' => 3]);
                    }
                    $user = User::findOne(['id' => $yy_order->user_id]);
                    $order['order_no'] = $yy_order->order_no;
                    $order['name'] = $user->nickname;
                    break;
                case 4:
                    $mch_goods = Goods::findOne(['id' => $value['order_id']]);
                    $mch = Mch::findOne(['id' => $mch_goods->mch_id]);
                    $value['url'] = $urlManager->createUrl(['mch/mch/goods/goods', 'keyword' => $mch_goods->name]);
                    $order['order_no'] = $mch_goods->name;
                    $order['name'] = $mch->name;
                    break;
                default:
                    if ($value['type'] == 0) {
                        $value['url'] = $urlManager->createUrl(['mch/order/index', 'status' => 1]);
                    } else {
                        $value['url'] = $urlManager->createUrl(['mch/order/refund']);
                    }
                    switch ($value['order_type']) {
                        case 0:
                            $class = "app\models\Order";
                            break;
                        case 1:
                            $class = "app\models\MsOrder";
                            $value['url'] = $urlManager->createUrl(['mch/miaosha/order/index', 'status' => 1]);
                            break;
                        case 2:
                            $class = "app\models\PtOrder";
                            $value['url'] = $urlManager->createUrl(['mch/group/order/index', 'status' => 1]);
                            break;
                        default:
                            break;
                    }
                    $order = $class ? $class::findOne(['id' => $value['order_id'], 'store_id' => $this->store_id]) : [];
                    //砍价订单
                    if($value['order_type']==0 && $order->type==2){
                        $value['url'] = $urlManager->createUrl(['mch/bargain/order/index']);
                        $value['is_bargain'] = 1;
                    }
            }
            $value['order_no'] = $order['order_no'];
            $value['name'] = $order['name'];
            $value['platform'] = User::find()->where(['id' => $order['user_id']])->select('platform')->scalar();

            $time = time() - $value['addtime'];

            if ($time < 60) {
                $value['time'] = $time . '秒前';
            } elseif ($time < 3600) {
                $value['time'] = ceil($time / 60) . '分钟前';
            } elseif ($time < 86400) {
                $value['time'] = ceil($time / 3600) . '小时前';
            } else {
                $value['time'] = ceil($time / 86400) . '天前';
            }
        }
        return [
            'list' => $list,
            'pagination' => $pagination
        ];
    }

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
可以使用JavaMail API来实现给需要付款的人发送邮件。以下是一个简单的示例代码: ```java import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class PaymentReminder { public static void main(String[] args) { final String username = "your_email@example.com"; final String password = "your_email_password"; Properties props = new Properties(); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.starttls.enable", "true"); props.put("mail.smtp.host", "smtp.example.com"); props.put("mail.smtp.port", "587"); Session session = Session.getInstance(props, new javax.mail.Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(username, password); } }); try { Message message = new MimeMessage(session); message.setFrom(new InternetAddress("your_email@example.com")); message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("recipient_email@example.com")); message.setSubject("Payment Reminder"); message.setText("Dear customer," + "\n\nYou have an order waiting for payment. Please process it as soon as possible. If the payment is not received after three reminders, the order will be cancelled."); Transport.send(message); System.out.println("Payment reminder email sent successfully!"); } catch (MessagingException e) { throw new RuntimeException(e); } } } ``` 在上面的代码中,需要将`your_email@example.com`和`your_email_password`替换为你自己的邮箱地址和密码,将`smtp.example.com`替换为你的SMTP服务器地址。同时,需要将`recipient_email@example.com`替换为需要发送邮件的收件人邮箱地址。 当你运行这个程序时,它将会发送一封邮件给收件人,提醒他们有一个订单需要支付。如果三次提醒后仍未支付,订单将会被取消。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值