Blame view

src/api/business.js 461 Bytes
yangwei committed
1 2 3 4 5 6 7 8 9
import request from '@/utils/request'
import SERVER from './config'

class business {
  /* 
    成功率统计
    startDate:开始日期
    endDate:结束日期 
  */
10
  async getSuucessRate(startDate,endDate,qxdm) {
yangwei committed
11 12 13 14 15
    return request({
      url: SERVER.SERVERAPI + '/rest/statistics/Business/sf',
      method: 'get',
      params: {
        startDate:startDate,
16 17
        endDate:endDate,
        qxdm:qxdm
yangwei committed
18 19 20 21 22
      }
    })
  }
}
export default new business()