12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import http from '@/http/api.js'
- export function submitRecycling(data) {
- return http.request({
- url: '/blade-sales-part/green/recycling/save',
- method: 'post',
- data
- })
- }
- export function updateRecycling(data) {
- return http.request({
- url: '/blade-sales-part/green/recycling/update',
- method: 'post',
- data
- })
- }
- export function getPageList(data) {
- return http.request({
- url: '/blade-sales-part/green/recycling/page',
- method: 'get',
- params: data
- })
- }
- export function getDetail(data) {
- return http.request({
- url: '/blade-sales-part/green/recycling/detail?id=' + data,
- method: 'get'
- })
- }
- export function getCustomerPageList(data) {
- return http.request({
- url: '/blade-sales-part/corpsDesc/page',
- method: 'get',
- params: data
- })
- }
- export function delGreenRecycling(data) {
- return http.request({
- url: '/blade-sales-part/green/recycling/delGreenRecycling?id=' + data,
- method: 'post'
- })
- }
- export function greenRecyclingGoods() {
- return http.request({
- url: '/blade-sales-part/green/recycling/greenRecyclingGoods',
- method: 'post'
- })
- }
|