12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import requestWhite from '../utils/requestWhite.js';
- export function rechargeData(data) {
- var url='/mobile/otherRecharge/rechargeData';
- return requestWhite({
- method: 'post',
- data: data,
- url: url
- })
- }
- export function rechargeDetails(data) {
- var url='/mobile/otherRecharge/rechargeDetails';
- return requestWhite({
- method: 'post',
- data: data,
- url: url
- })
- }
- export function findByCard(data) {
- var url='/mobile/otherRecharge/findByCard';
- return requestWhite({
- method: 'post',
- data: data,
- url: url
- })
- }
- export function bindCard(data) {
- var url='/mobile/otherRecharge/bindCard';
- return requestWhite({
- method: 'post',
- data: data,
- url: url
- })
- }
- export function getVerifyCode(tel) {
-
- return requestWhite({
- method: 'post',
- data:{
- telephone:tel
- } ,
- url: '/mobile/regUser/getVerifyCode'
- })
- }
- export function findByPhone(data) {
- var url='/mobile/otherRecharge/findByPhone';
- return requestWhite({
- method: 'post',
- data: data,
- url: url
- })
- }
|