12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import fetch from '@/api/fetch.js'
- export default {
-
- getTagsList(params) {
- return fetch('/blade-pc-applet/tags/tagsList', params)
- },
-
- getBigCount(params) {
- return fetch('/blade-pc-applet/wechat/count/getBigCount', params)
- },
-
- getDebtList(params) {
- return fetch('/blade-pc-applet/debt/bigPage', params)
- },
-
- getUserLoginCount(params) {
- return fetch('/wutong-base/wxuser/getUserLoginCount', params)
- },
-
- getUserCountByCity(params) {
- return fetch(
- '/blade-pc-applet/userarea/getUserCountByCity',
- params,
- 'post',
- 'json'
- )
-
- },
-
- getAddUserCountByMonth(params) {
- return fetch('/wutong-base/wxuser/getAddUserCountByMonth', params)
- },
-
- getUserCountByTenant(params) {
- return fetch('/wutong-base/wxuser/getUserCountByTenant', params)
- },
-
- bigList(params) {
- return fetch('/blade-pc-applet/informationinfo/bigList', params)
- }
- }
|