Newer
Older
smartcity_merchant_front / src / api / change / dict.js
wangxitong on 22 Feb 2024 763 bytes first commit
import request from '@/utils/request'

// 店铺租赁状态
export function getShopRentStatus() {
  return request({
    url: '/dict/code/shopRentStatus',
    method: 'get'
  })
}

// 店铺上报来源
export function getShopApplySource() {
  return request({
    url: '/dict/code/shopApplySource',
    method: 'get'
  })
}

// 店铺变更申请状态
export function getShopApplyStatus() {
  return request({
    url: '/dict/code/shopApplyStatus',
    method: 'get'
  })
}

// 店铺变更审核意见
export function getShopOpinion() {
  return request({
    url: '/dict/code/shopOpinion',
    method: 'get'
  })
}

// 店铺变更类型
export function getShopChangeType() {
  return request({
    url: '/dict/code/shopChangeType',
    method: 'get'
  })
}