spring
4 天以前 fd3e3b19aaf23c4f68d8b98d514499510b152e39
src/api/basicData/customerFile.js
@@ -42,10 +42,11 @@
    })
}
// 删除客户档案
export function delCustomer(id) {
export function delCustomer(ids) {
    return request({
        url: '/basic/customer/' + id,
        method: 'delete'
        url: '/basic/customer/delCustomer',
        method: 'delete',
        data: ids
    })
}