12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import http from '@/http/api.js'
- // 首页类型分类
- export function revenueExpenditure(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/revenueExpenditure',
- method: 'GET',
- data
- })
- }
- // 首页类型分类
- export function classification(data) {
- return http.request({
- url: '/store-goods/goodstype/page',
- method: 'GET',
- data
- })
- }
- // 今日上新
- export function newToday(data) {
- return http.request({
- url: '/store-goods/goodsdesc/list',
- method: 'GET',
- data
- })
- }
- // 获取菜单权限
- export function menu(data) {
- return http.request({
- url: '/blade-system/menu/routes',
- method: 'GET',
- data
- })
- }
- // 保存防疫信息
- export function antiepidemicSave(data) {
- return http.request({
- url: '/blade-land/ncp-check/save',
- method: 'post',
- data
- })
- }
- // 授权手机号
- export function authorizationNumber(data) {
- return http.request({
- url: '/blade-land/ncp-check/phone',
- method: 'post',
- data
- })
- }
- // 获取首页营收和支出
- export function revenueAndExpenditure(data) {
- return http.request({
- url: '/blade-purchase-sales/order/orderIncome',
- method: 'GET',
- data
- })
- }
|