diff --git a/.env.development b/.env.development index 3875c7d..866b9f5 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ NODE_ENV = 'development' VITE_NOW_TYPE = 'dist' # Base API -# VITE_APP_BASE_URL='http://192.168.1.16:8546' +# VITE_APP_BASE_URL='http://192.168.1.21:8546' VITE_APP_BASE_URL='https://erp.lihaink.cn' \ No newline at end of file diff --git a/src/api/merchant_withdraw.ts b/src/api/merchant_withdraw.ts new file mode 100644 index 0000000..3201e96 --- /dev/null +++ b/src/api/merchant_withdraw.ts @@ -0,0 +1,36 @@ +import request from '@/utils/request' + +// 商户供应商提现表列表 +export function apiMerchantWithdrawLists(params: any) { + return request.get({ url: '/withdraw/merchantwithdraw/lists', params }) +} + +// 添加商户供应商提现表 +export function apiMerchantWithdrawAdd(params: any) { + return request.post({ url: '/withdraw/merchantwithdraw/add', params }) +} + +// 编辑商户供应商提现表 +export function apiMerchantWithdrawEdit(params: any) { + return request.post({ url: '/withdraw/merchantwithdraw/edit', params }) +} + +// 删除商户供应商提现表 +export function apiMerchantWithdrawDelete(params: any) { + return request.post({ url: '/withdraw/merchantwithdraw/delete', params }) +} + +// 商户供应商提现表详情 +export function apiMerchantWithdrawDetail(params: any) { + return request.get({ url: '/withdraw/merchantwithdraw/detail', params }) +} + + +// 删除商户供应商提现表 +export function apimerchantwithdrawCheck(params: any) { + return request.post({ url: '/withdraw/merchantwithdraw/check', params }) +} + +export function apimerchantwithdraw(params: any) { + return request.post({ url: '/withdraw/merchantwithdraw/arrival', params }) +} diff --git a/src/components/material/picker.vue b/src/components/material/picker.vue index 92673e8..33d9c51 100644 --- a/src/components/material/picker.vue +++ b/src/components/material/picker.vue @@ -1,31 +1,18 @@