|
|
|
@ -149,6 +149,17 @@ export function postOrganizationStoreRemoveId(params, call, errorCallback) {
|
|
|
|
|
return http.post('/organization/store/remove/id', params).then(call).catch(errorCallback)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改组织 客户
|
|
|
|
|
* @param params 参数
|
|
|
|
|
* @param call 成功回调
|
|
|
|
|
* @param errorCallback 错误回调
|
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
|
*/
|
|
|
|
|
export function postOrganizationCustomerModify(params, call, errorCallback) {
|
|
|
|
|
return http.post('/organization/customer/modify', params).then(call).catch(errorCallback)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
getOrganizationRegionList,
|
|
|
|
|
postOrganizationRegionModify,
|
|
|
|
@ -162,5 +173,6 @@ export default {
|
|
|
|
|
postOrganizationStoreList,
|
|
|
|
|
postOrganizationStoreAdd,
|
|
|
|
|
postOrganizationStoreModify,
|
|
|
|
|
postOrganizationStoreRemoveId
|
|
|
|
|
postOrganizationStoreRemoveId,
|
|
|
|
|
postOrganizationCustomerModify
|
|
|
|
|
}
|
|
|
|
|