123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import http from "@/api/http.js"
- export const overseasCustomInterence = {
-
- getSavedSalesList:(params)=>{
- return http.get('/overseas_custom/sale/list',params)
- },
-
- saveSelectedSales:(params)=>{
- return http.post('/overseas_custom/sale/save',params)
- },
-
- getCustomStatus:(params)=>{
- return http.get('/overseas_custom/custom/statistics',params)
- },
-
- getCustomList:(params)=>{
- return http.get('/overseas_custom/custom/list',params)
- },
-
- setCustomTryStatus:(params)=>{
- return http.post('/overseas_custom/custom/overseas_label_set',params)
- },
-
- setCustomHide:(params)=>{
- return http.post('/overseas_custom/custom/hide',params)
- },
-
- setCustomStatus:(params)=>{
- return http.post('/overseas_custom/custom/status_set',params)
- },
-
- getStatisticData:(params)=>{
- return http.get('/overseas_custom/custom/statistics',params)
- },
-
- overseasCustomInterence:(params)=>{
- return http.get('/overseas_custom/custom/label/statistics',params)
- },
-
-
- getOverseasRoadShowUsers: params => {
- return http.get('/roadshow/overseas_custom/sys_user/list',params)
- },
-
- getOverseasRoadShowList: params => {
- return http.get('/roadshow/overseas_custom/calendar/list',params)
- },
-
- getOverseasSellerRoadShowList: params => {
- return http.get('/roadshow/overseas_custom/seller/list',params)
- },
-
- getOverseasResearcherRoadShowList: params => {
- return http.get('/roadshow/overseas_custom/researcher/list',params)
- }
- }
|