1
jhzh
2025-04-20 d157d0892f1ab5517dbe3a08328ccb9c4e446615
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
import Serve from '@/api/serve'
 
class Subscribe {
    /**
     * 请求数据
    */
    static subscribeTokenList(data){
        return Serve.post('/user/subscribeTokenList',data)
    }
    static activity(data){
        return Serve.get('/subscribe/activity',data)
    }
   static subscribe(data){
       return Serve.post('/user/subscribe',data)
   }
   static subscribeCoinList(data){
       return Serve.post('/user/subscribeCoinList',data)
   }
    /**
     * 提交数据
     * @param {object} data
     * @param {string} data.amount
     * @param {string} data.coin_name
    */
   static subscribeNow(data){
        return Serve.post('/user/subscribeNow',data)
   }
   static changePurchaseCode(data){
        return Serve.post('/user/changePurchaseCode',data)
   }
}
 
export default Subscribe;