接口:yun_shop\app\common\services\MessageService.php 的 MiniNotice方法
49行--69行
### 参数:

|参数名|是否必须|类型|说明|
|:----:|:---:|:-----:|:-----|
|templateId |是  |int | 小程序消息模板id   |
|data    |是  |array | 发送内容   |
|uid     |是  |string| 会员id |
|uniacid |否  |array | 公众号 |
|url     |否  |array | 跳转路由   |
|scene   |否  |array | 支付的 prepay_id   |

※※※ 参数data格式
例如:
$miniParams = [
           'keyword1'=>['value'=> $this->order->belongsToMember->nickname],// 会员姓名
           'keyword2'=>['value'=>  $this->order->order_sn],//订单号
           'keyword3'=>['value'=> $this->getGoodsTitle($goods)],// 物品名称
           'keyword4'=>['value'=> $goods->total],//  数量
           'keyword5'=>['value'=> $goods->price],// 购买金额
           'keyword6'=>['value'=> $this->getOrderTime($status)],//购买时间
        ];