// +---------------------------------------------------------------------- // | 麦沃德科技赋能开发者,助力商协会发展 // +---------------------------------------------------------------------- // | Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved. // +---------------------------------------------------------------------- // | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用 // +---------------------------------------------------------------------- // | Author: MY WORLD Team www.maiwd.cn // +---------------------------------------------------------------------- // | 个人中心接口列表文件 开发者: 麦沃德科技-半夏 // +---------------------------------------------------------------------- export default { // 用户信息 user: { url: '/api/wdsxh/user_wechat/center', auth: true, method: 'GET', }, // 个人中心自定义数据 diyData: { url: '/api/wdsxh/person_center_diy_page/details', method: 'GET', }, // 电子会牌 poster: { url: '/api/wdsxh/willbrand/index', auth: true, method: 'GET', }, // 更新用户信息 updateUser: { url: '/api/wdsxh/user_wechat/update_nickname_avatar', auth: true, method: 'POST', }, // 常见问题 problem: { // 列表 list: { url: '/api/wdsxh/faq/index', method: 'GET', }, // 详情 details: { url: '/api/wdsxh/faq/details', method: 'GET', }, }, // 消息通知 notice: { // 列表 list: { url: '/api/wdsxh/message/member_notification/index', method: 'GET', }, // 详情 details: { url: '/api/wdsxh/message/member_notification/detail', method: 'GET', }, }, };