You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
923 B
56 lines
923 B
![]()
7 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
export default {
|
||
|
|
||
|
// 获取支行选择列表
|
||
|
bankSelect: function(data) {
|
||
|
return request({
|
||
|
url: '/lpkbank/listAll',
|
||
|
method: 'get'
|
||
|
});
|
||
|
},
|
||
|
|
||
|
// 获取提货点列表
|
||
|
storeListPage: function(data) {
|
||
|
return request({
|
||
|
url: '/lpkstore/storeListPage',
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
});
|
||
|
},
|
||
|
|
||
|
// 新增、保存提货点
|
||
|
saveStore: function(data) {
|
||
|
return request({
|
||
|
url: '/lpkstore/saveStore',
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
});
|
||
|
},
|
||
|
|
||
|
// 初始化提货点
|
||
|
storeInit: function(data) {
|
||
|
return request({
|
||
|
url: '/lpkstore/storeInit/'+data,
|
||
|
method: 'get'
|
||
|
});
|
||
|
},
|
||
|
|
||
|
// 删除提货点
|
||
|
deleteStore: function(data) {
|
||
|
return request({
|
||
|
url: '/lpkstore/deleteStore/'+data,
|
||
|
method: 'delete'
|
||
|
});
|
||
|
},
|
||
|
// 修改状态
|
||
|
updateIsEnable: function(sid,isEnable) {
|
||
|
return request({
|
||
|
url: '/lpkstore/updateIsEnable/'+sid+"/"+isEnable
|
||
|
});
|
||
|
},
|
||
|
|
||
|
|
||
|
}
|
||
|
|