/* * @desc: 获取业务线 */ function GetDep(params) { return request({ url: '/cashflow/getitems', method: 'get', data: params, }) } /* * @desc: 获取业务线 * 传事业部获取 当前事业部(包含子部门) 每月各事业部数据,默认总 * 传年月,返回各事业部当前年月数据 默认 最近六个月 * 传事业部 + 时间 返回当前时间下事业部的数据 */ function GetData(params) { return request({ url: '/monData', method: 'get', data: params, }) } /* *@desc: 获取收款数据 * */ function getNowData(params) { return request({ url: '/CashFlow/Query', method: 'post', data: params, }) }