import request from '@/utils/request' export function bindApplet(data = {}) { return request({ 'url': '/common/app/bind/applet', headers: { isToken: false }, method: 'post', data, timeout: 20000 }) } export function SendCode(data = {}) { return request({ 'url': '/common/sendCode', headers: { isToken: false }, method: 'post', data, timeout: 20000 }) }