123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import request from '@/utils/request'
- // 新增
- export function save(data) {
- return request({
- url: '/goods/merc-mini/goodsMode/save',
- method: 'post',
- data:data
- })
- }
- // 修改
- export function update(data) {
- return request({
- url: '/goods/merc-mini/goodsMode/update',
- method: 'post',
- data:data
- })
- }
- // 对象查询
- export function searchObj(data) {
- return request({
- url: '/goods/merc-mini/goodsMode/obj',
- method: 'post',
- data:data
- })
- }
- // 分页
- export function goodsPage(data) {
- return request({
- url: '/goods/merc-mini/goodsMode/page',
- method: 'post',
- data:data
- })
- }
- // 商品类目
- export function categoryTree(data) {
- return request({
- url: '/goods/merc-mini/goods/category/tree',
- method: 'post',
- data:data
- })
- }
- // 商品规格
- export function listIdName(data) {
- return request({
- url: '/goods/merc-mini/goods/unit/listIdName',
- method: 'post',
- data:data
- })
- }
- // 设备商品价格修改
- export function changePrice(data) {
- return request({
- url: '/goods/merc-mini/goodsDevice/update',
- method: 'post',
- data:data
- })
- }
|