Blame view

store-pc/src/api/lqSms.js 408 Bytes
4528226f   “wangming”   feat: 管理端暗黑焕肤与阿里云...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  import request from '@/utils/request'
  
  /** 按场景发送短信(生日祝福等) */
  export function sendSmsByScene(data) {
    return request({
      url: '/api/Extend/LqSms/SendByScene',
      method: 'post',
      data
    })
  }
  
  /** 生日短信批量发送(可选) */
  export function sendBirthdaySms(data) {
    return request({
      url: '/api/Extend/LqSms/SendBirthday',
      method: 'post',
      data
    })
  }