| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import http from '@/http/api.js'
- // 列表
- export function getList(data) {
- return http.request({
- url: '/gubersail-app/corpsDesc/list',
- method: 'GET',
- data
- })
- }
- // 详情
- export function getAppDetails(data) {
- return http.request({
- url: '/gubersail-shop-app/corpsDesc/appDetails',
- method: 'GET',
- data
- })
- }
- // 保存
- export function submit(data) {
- return http.request({
- url: '/gubersail-shop-app/corpsDesc/update',
- method: 'POST',
- data
- })
- }
- // 门店分类下拉
- export function selectType(data) {
- return http.request({
- url: '/gubersail-app/corpsDesc/selectType',
- method: 'GET',
- data
- })
- }
- // 门店标签下拉
- export function selectLabel(data) {
- return http.request({
- url: '/gubersail-app/corpsDesc/selectLabel',
- method: 'GET',
- data
- })
- }
- // 业务员
- export function salerList(data) {
- return http.request({
- url: '/blade-user/salerList',
- method: 'GET',
- data
- })
- }
- // 仓库
- export function storageList(data) {
- return http.request({
- url: '/gubersail-app/corpsDesc/selectStorage',
- method: 'GET',
- data
- })
- }
- export function generateQrCode(data) {
- return http.request({
- url: '/gubersail-app/corpsDesc/generateQrCode',
- method: 'GET',
- data
- })
- }
|