prod.js 1.17 KB
import request from '@/utils/request'
import {
  Notification
} from 'element-ui'
// export const getPersonInfo = data => {
//   return service({
//     url: '/person_pay/getpersoninfo',
//     method: 'post',
//     data
//   })
// }

export function fetchList(query) {
  // console.log('api/prod/list/ ==fetchList=== query', query);
  const options = {
    type: 'error',
    message: query,
    title: '==query value ===',
    showClose: true,
    duration: 4000
  }
  Notification(options)
  return request({
    url: '/yp/prod/list',
    method: 'post',
    params: query
  })
}

// export function fetchArticle(id) {
//   return request({
//     url: '/yp/article/detail',
//     method: 'get',
//     params: {
//       id
//     }
//   })
// }

// export function fetchPv(pv) {
//   return request({
//     url: '/yp/article/pv',
//     method: 'get',
//     params: {
//       pv
//     }
//   })
// }

// export function createArticle(data) {
//   return request({
//     url: '/yp/article/create',
//     method: 'post',
//     data
//   })
// }

// export function updateArticle(data) {
//   return request({
//     url: '/yp/article/update',
//     method: 'post',
//     data
//   })
// }