import { request } from "./http"; import { ResponseType } from "./type" //会务资源列表 export function httpList(data: Object): ResponseType { return request( 'POST', `admin/supplierStore/index`, data ) } //店铺装修图片-列表('详情图片','会议室','客房','会议服务设施') export function httpImages(data: Object): ResponseType { return request( 'POST', `admin/storeImages/index`, data ) } export function httpInfo(data: Object): ResponseType { return request( 'POST', `admin/supplierStoreDetail/info`, data ) } export function httpActivity(data: Object): ResponseType { return request( 'POST', `admin/StoreActivity/index`, data ) }