123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import request from '@/utils/request'
- //* ******************** 收款账户 *********************
- // 收款账户信息查询
- export function accountGetById(data) {
- return request({
- url: '/bank/getById',
- method: 'post',
- data
- })
- }
- // 选择所属银行查询
- export function getSelect(data) {
- return request({
- url: '/dict/getSelect',
- method: 'post',
- data
- })
- }
- // 解绑账户
- export function bankDelete(data) {
- return request({
- url: '/bank/delete',
- method: 'post',
- data
- })
- }
- // 更换账户
- export function bankUpdate(data) {
- return request({
- url: '/bank/update',
- method: 'post',
- data
- })
- }
- // 绑定账户
- export function bankAdd(data) {
- return request({
- url: '/bank/save',
- method: 'post',
- data
- })
- }
- // 获取短信验证码
- export function getCode(phone,data) {
- return request({
- url: `/business/getCode?phone=${phone}`,
- method: 'post',
- data
- })
- }
- // 获取验证码
- export function getVerificationImageCaptchaApi(params) {
- return request({
- url: `/captcha/get/verification/image`,
- method: 'get',
- params
- })
- }
|