This commit is contained in:
张成
2025-10-09 23:18:09 +08:00
parent 1d3eb75c64
commit b81e768035
43 changed files with 39 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class SysAdServer {
async getAll(param) {

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取球局评论列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
const gameParticipantsServer = {
// 获取球局参与者列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
// 获取资源列表(分页)
export function getList(params) {

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取热门城市二维码配置列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取列表(分页)

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class HomeServer {
// 获取订单统计
async getOderCount() {

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取消息通知列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取冻结资金列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取订单状态列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取支付订单列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取支付统计数据

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取钱包交易记录列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取用户钱包列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取提现审核列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
// 获取球局统计列表
export const getList = (params) => {

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取资源列表

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
// 获取营收统计列表
export const getList = (params) => {

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class FileServe {
async upload_oos_img(row) {
let res = await window.framework.http.postFormData("/sys_file/upload_oos_img", row);

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http';
;
/**
* 热门城市二维码配置相关API

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取所有平台账户

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
class RolePermissionServer {
async getRoles(callback) {
let res = await window.framework.http.get('/SysRolePermission/Query', {})

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class RoleServer {
async list() {
let res = await window.framework.http.get("/sys_role/index", {});

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
class ShpProfitServer {
async report(param) {
let res = await window.framework.http.post('/shpProfit/report', param)

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
class SpecificationServer {
async list() {
let res = await window.framework.http.post('/specification/list', {})

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class SysAddress {
async index(param) {
let res = await window.framework.http.get("/sys_address/index", param);

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class SysModuleServer {
async all() {
let res = await window.framework.http.get("/sys_menu/all", {});

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class SysLogServe {
async all(param) {
let res = await window.framework.http.get("/sys_log/all", param);

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
class TableServer {
async getAll(callback) {
return await window.framework.http.get('/table/index', {})

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class UserServer {
async login(row) {
let res = await window.framework.http.post("/sys_user/login", row);

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取职业列表

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class FormFieldServer {
async all(param) {
let res = await window.framework.http.get("/sys_form_field/all", param);

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class FormServer {
async all(param) {
let res = await window.framework.http.get("/sys_form/all", param);

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class MenuServer {
async list(row) {

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class ModelFieldServer {
async all(row) {
let res = await window.framework.http.get("/sys_model_field/all", row);

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class ModelServer {
async interface(row) {
let res = await window.framework.http.post("/sys_model/interface", row);

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class ParamSetupServer {
async getAll() {
return await window.framework.http.get("/sys_parameter/index", {});

View File

@@ -1,4 +1,4 @@
import http from "@/libs/http";
class SysControlTypeServer {
async all(param) {
let res = await window.framework.http.get("/sys_control_type/all", param);

View File

@@ -1,4 +1,4 @@
import http from '@/libs/http'
export default {
// 获取城市列表

View File

View File

@@ -28,7 +28,6 @@
<script>
import menuServer from '@/api/system_high/menuServer.js'
import user_followsServer from '@/api/users/user_follows_server.js'
export default {
data() {