会员权益

This commit is contained in:
2026-04-29 15:33:58 +08:00
commit 54965243da
2787 changed files with 242809 additions and 0 deletions

118
common/api/activity.js Normal file
View File

@@ -0,0 +1,118 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 活动接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 活动列表
list: {
url: '/api/wdsxh/activity/activity/index',
method: 'GET',
},
// 活动详情
details: {
url: '/api/wdsxh/activity/activity/details',
method: 'GET',
},
//扫码签到接口
code:{
url: '/api/wdsxh/activity/activity_apply/checked_in',
method: 'GET',
},
// 活动报名字段
field: {
url: '/api/wdsxh/activity/activity_fieldset/field',
auth: true,
method: 'GET',
},
// 提交报名
submit: {
url: '/api/wdsxh/activity/activity_apply/submit',
auth: true,
method: 'POST',
},
// 订单列表
orderList: {
url: '/api/wdsxh/activity/activity/user_index',
auth: true,
method: 'GET',
},
// 订单详情
orderDetails: {
url: '/api/wdsxh/activity/activity_apply/details',
auth: true,
method: 'GET',
},
// 活动核销列表
verifyList: {
url: '/api/wdsxh/activity/verifying/activity_list',
auth: true,
method: 'GET',
},
// 核销会员列表
verifyMemberList: {
url: '/api/wdsxh/activity/verifying/verifying_member_list',
auth: true,
method: 'GET',
},
// 核销活动
verifying: {
url: '/api/wdsxh/activity/verifying/verifying',
auth: true,
method: 'POST',
},
// 申请退款
applyRefund: {
url: '/api/wdsxh/activity/activity/apply_refund',
auth: true,
method: 'POST',
},
// 取消参加
applyCancel: {
url: '/api/wdsxh/activity/activity_apply/cancel',
auth: true,
method: 'POST',
},
// 参会凭证
attendance: {
url: '/api/wdsxh/activity/activity/attendance_voucher',
auth: true,
method: 'GET',
},
// 扫码签到
scanSign: {
url: '/api/wdsxh/activity/verifying/self_service_check_in',
auth: true,
method: 'POST',
},
// 删除未支付订单
applyDel: {
url: '/api/wdsxh/activity/activity_apply/del',
auth: true,
method: 'POST',
},
// 签到码参数解析
decryptData: {
url: '/api/wdsxh/activity/verifying/get_decrypt_data',
auth: true,
method: 'GET',
},
// 参会证书
certificate: {
url: '/api/wdsxh/activity/activity_electronic_certificate/index',
auth: true,
method: 'GET',
},
// 活动权限
limit: {
url: '/api/wdsxh/activity/activity/activity_config',
method: 'GET',
},
};

34
common/api/album.js Normal file
View File

@@ -0,0 +1,34 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 商会相册接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 相册列表
albumList: {
url: '/api/wdsxh/album/index',
method: 'GET',
},
// 自定义装修相册列表
albumDiyList: {
url: '/api/wdsxh/album/diy_list',
method: 'GET',
},
// 相册详情
albumDetails: {
url: '/api/wdsxh/album/details',
method: 'GET',
},
// 相册权限
albumLimit: {
url: '/api/wdsxh/album/album_config',
method: 'GET',
},
};

85
common/api/card.js Normal file
View File

@@ -0,0 +1,85 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 电子名片接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 名片列表
list: {
url: '/api/wdsxh/corporate/card/index',
auth: true,
method: 'GET',
},
// 名片详情
details: {
url: '/api/wdsxh/corporate/card/details',
auth: true,
method: 'GET',
},
// 名片统计
statistics: {
url: '/api/wdsxh/corporate/card/center',
auth: true,
method: 'GET',
},
// 名片样式
background: {
url: '/api/wdsxh/corporate/card_background/index',
method: 'GET',
},
// 添加名片
add: {
url: '/api/wdsxh/corporate/card/add',
auth: true,
method: 'POST',
},
// 编辑名片
edit: {
url: '/api/wdsxh/corporate/card/edit',
auth: true,
method: 'POST',
},
// 编辑详情
editDetails: {
url: '/api/wdsxh/corporate/card/edit_details',
auth: true,
method: 'GET',
},
// 删除名片
delete: {
url: '/api/wdsxh/corporate/card/del',
auth: true,
method: 'POST',
},
// 设置默认名片
setDefault: {
url: '/api/wdsxh/corporate/card/set_default',
auth: true,
method: 'POST',
},
// 获取默认名片
getDefault: {
url: '/api/wdsxh/corporate/card/default_card',
auth: true,
method: 'GET',
},
// 设置名片靠谱
setReliable: {
url: '/api/wdsxh/corporate/reliable/reliable',
auth: true,
method: 'POST',
},
// 取消名片靠谱
cancelReliable: {
url: '/api/wdsxh/corporate/reliable/cancel',
auth: true,
method: 'POST',
},
};

69
common/api/demand.js Normal file
View File

@@ -0,0 +1,69 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 供需接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 商圈列表
businessIndexList: {
url: '/api/wdsxh/business/index',
method: 'GET',
},
// 自定义装修商圈列表
businessDiyList: {
url: '/api/wdsxh/business/diy_list',
method: 'GET',
},
// 商圈分类
businessCat: {
url: '/api/wdsxh/business/business_cat',
method: 'GET',
},
// 商圈详情
businessDetails: {
url: '/api/wdsxh/business/details',
method: 'GET',
},
// 发布
businessAdd: {
url: '/api/wdsxh/business/add',
auth: true,
method: 'POST',
},
// 发布列表
businessList: {
url: '/api/wdsxh/business/user_index',
auth: true,
method: 'GET',
},
// 发布删除
businessDel: {
url: '/api/wdsxh/business/del',
auth: true,
method: 'GET',
},
// 发布详情
businessUserDetails: {
url: '/api/wdsxh/business/user_details',
auth: true,
method: 'GET',
},
// 修改
businessEdit: {
url: '/api/wdsxh/business/edit',
auth: true,
method: 'POST',
},
// 商圈限制
businessLimit: {
url: '/api/wdsxh/business/business_config',
method: 'GET',
},
};

53
common/api/index.js Normal file
View File

@@ -0,0 +1,53 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
import main from "./main.js"
import login from "./login.js"
import mine from "./mine.js"
import member from "./member.js"
import mall from "./mall.js"
import demand from "./demand.js"
import activity from "./activity.js"
import album from "./album.js"
import sequence from "./sequence.js"
import questionnaire from "./questionnaire.js"
import card from "./card.js"
import institution from "./institution.js"
import points from "./points.js"
export default {
// 公共模块
main,
// 登录模块
login,
// 个人中心模块
mine,
// 会员模块
member,
// 商城模块
mall,
// 供需模块
demand,
// 活动模块
activity,
// 商会相册模块
album,
// 活动接龙模块
sequence,
// 问卷调查模块
questionnaire,
// 电子名片模块
card,
// 机构模块
institution,
// 积分模块
points,
};

51
common/api/institution.js Normal file
View File

@@ -0,0 +1,51 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 机构管理接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 机构列表
list: {
url: '/api/wdsxh/institution/institution/index',
method: 'GET',
},
// 机构详情
details: {
url: '/api/wdsxh/institution/institution/details',
method: 'GET',
},
// 成员列表
member: {
url: '/api/wdsxh/institution/member/index',
method: 'GET',
},
// 机构权限
limit: {
url: '/api/wdsxh/institution/institution/institution_config',
method: 'GET',
},
// 申请加入
apply: {
url: '/api/wdsxh/institution/institution_member_apply/submit',
auth: true,
method: 'POST',
},
// 机构级别
level: {
url: '/api/wdsxh/institution/level/index',
method: 'GET',
},
// 申请详情
applyDetails: {
url: '/api/wdsxh/institution/institution_member_apply/details',
auth: true,
method: 'GET',
},
};

51
common/api/login.js Normal file
View File

@@ -0,0 +1,51 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 登录接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 查询用户是否已注册-微信小程序
isAuth: {
url: '/api/wdsxh/applet_user_wechat/is_register',
method: 'GET',
},
// 绑定手机号-微信小程序
bindMobile: {
url: '/api/wdsxh/applet_user_wechat/bind_mobile',
auth: true,
method: 'POST',
},
// 登录-微信小程序
login: {
url: '/api/wdsxh/applet_user_wechat/login',
method: 'POST',
},
// 注册-微信小程序
register: {
url: '/api/wdsxh/applet_user_wechat/register',
method: 'POST',
},
// 登录-微信公众号
officialLogin: {
url: '/api/wdsxh/wananchi_user_wechat/mobile_login',
method: 'POST',
},
// 发送验证码-微信公众号
captcha: {
url: '/api/sms/send',
method: 'POST',
},
// 获取手机号
getMobile: {
url: '/api/wdsxh/user_wechat/get_mobile',
method: 'GET',
auth: true,
},
};

125
common/api/main.js Normal file
View File

@@ -0,0 +1,125 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 公共接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 系统配置
config: {
url: '/api/wdsxh/config/config',
method: 'GET',
},
// 底部导航
tabbar: {
url: '/api/wdsxh/index/tabbar_index',
method: 'GET',
},
// 底部导航详情
tabbarDetails: {
url: '/api/wdsxh/index/tabbar_details',
method: 'GET',
},
// 自定义装修数据
diyData: {
url: '/api/wdsxh/diy/getPage',
method: 'GET',
},
// 自定义搜索数据
diySearch: {
url: '/api/wdsxh/search/search_result',
method: 'GET',
},
// 首页轮播图
carousel: {
url: '/api/wdsxh/banner/index',
method: 'GET',
},
// 轮播图详情
carouselDetails: {
url: '/api/wdsxh/banner/details',
method: 'GET',
},
// 省市区管理
address: {
// 获取省份
province: {
url: '/api/wdsxh/goods/address/address_province',
method: 'GET',
},
// 获取城市
city: {
url: '/api/wdsxh/goods/address/address_city',
method: 'GET',
},
// 获取区县
area: {
url: '/api/wdsxh/goods/address/address_area',
method: 'GET',
},
},
// 需求建议提交
addDemand: {
url: '/api/wdsxh/demand/add',
method: 'POST',
},
// 商协信息
association: {
url: '/api/wdsxh/association/index',
method: 'GET',
},
// 文章管理
article: {
// 分类
category: {
url: '/api/wdsxh/article/article_cat',
method: 'GET',
},
// 列表
list: {
url: '/api/wdsxh/article/index',
method: 'GET',
},
// 详情
details: {
url: '/api/wdsxh/article/details',
method: 'GET',
},
// 增加阅读量
updateReadNum: {
url: '/api/wdsxh/article/update_read_num',
method: 'POST',
},
},
// 协议内容
agreement: {
url: '/api/wdsxh/config/agreement',
method: 'GET',
},
// 消息订阅
message: {
// 订阅数量
count: {
url: '/api/wdsxh/member/member/subscribe_count',
auth: true,
method: 'GET',
},
// 消息订阅
subscribe: {
url: '/api/wdsxh/member/member/submit_subscribe',
auth: true,
method: 'POST',
},
},
// 系统配置
WeChatConfig: {
url: '/api/wdsxh/wananchi_user_wechat/get_wechat_config',
method: 'GET',
},
};

173
common/api/mall.js Normal file
View File

@@ -0,0 +1,173 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 商城接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 地址管理
address: {
// 列表
list: {
url: '/api/wdsxh/goods/address/index',
auth: true,
method: 'GET',
},
// 添加
add: {
url: '/api/wdsxh/goods/address/add',
auth: true,
method: 'POST',
},
// 修改
edit: {
url: '/api/wdsxh/goods/address/edit',
auth: true,
method: 'POST',
},
// 删除
delete: {
url: '/api/wdsxh/goods/address/del',
auth: true,
method: 'POST',
},
// 设置默认
setDefault: {
url: '/api/wdsxh/goods/address/set_default',
auth: true,
method: 'POST',
},
},
// 轮播图
carousel: {
url: '/api/wdsxh/goods/goods/banner_index',
method: 'GET',
},
// 商城轮播图
carouselDetails: {
url: '/api/wdsxh/goods/goods/banner_details',
method: 'GET',
},
// 商品分类
categoay: {
url: '/api/wdsxh/goods/goods/category_index',
method: 'GET',
},
// 商品列表
goodsList: {
url: '/api/wdsxh/goods/goods/index',
method: 'GET',
},
// 商品详情
goodsDetails: {
url: '/api/wdsxh/goods/goods/details',
method: 'GET',
},
// 计算邮费
getPostage: {
url: '/api/wdsxh/goods/order/postage',
auth: true,
method: 'GET',
},
// 订单预支付
preparePay: {
url: '/api/wdsxh/goods/order/prepare_pay',
auth: true,
method: 'GET',
},
// 订单创建
createOrder: {
url: '/api/wdsxh/goods/order/create',
auth: true,
method: 'POST',
},
// 订单详情
orderDetails: {
url: '/api/wdsxh/goods/order/details',
auth: true,
method: 'GET',
},
// 订单列表
orderList: {
url: '/api/wdsxh/goods/order/index',
auth: true,
method: 'GET',
},
// 确认收货
orderCollect: {
url: '/api/wdsxh/goods/order/sing',
auth: true,
method: 'POST',
},
// 申请退款
orderRefund: {
url: '/api/wdsxh/goods/order/refund',
auth: true,
method: 'POST',
},
// 退款列表
refundList: {
url: '/api/wdsxh/goods/order/refund_index',
auth: true,
method: 'GET',
},
// 提交快递
receipt: {
url: '/api/wdsxh/goods/order/receipt',
auth: true,
method: 'POST',
},
// 取消退款
cancelRefund: {
url: '/api/wdsxh/goods/order/cancel_refund',
auth: true,
method: 'POST',
},
// 取消订单
delOrder: {
url: '/api/wdsxh/goods/order/del_order',
auth: true,
method: 'POST',
},
// 加入购物车
addCart: {
url: '/api/wdsxh/mall/cart/add',
auth: true,
method: 'POST',
},
// 购物车数量
cartNumber: {
url: '/api/wdsxh/mall/cart/cart_goods_number',
auth: true,
method: 'GET',
},
// 购物车列表
cartList: {
url: '/api/wdsxh/mall/cart/list',
auth: true,
method: 'GET',
},
// 更新购物车商品数量
updateCartNumber: {
url: '/api/wdsxh/mall/cart/update_goods_number',
auth: true,
method: 'POST',
},
// 删除购物车商品
deleteCart: {
url: '/api/wdsxh/mall/cart/del',
auth: true,
method: 'POST',
},
// 商城配置
config: {
url: '/api/wdsxh/mall/self_pickup/config',
method: 'GET',
},
};

252
common/api/member.js Normal file
View File

@@ -0,0 +1,252 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 会员接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 会员列表
list: {
url: '/api/wdsxh/member/member/index',
method: 'GET',
},
// 自定义装修会员列表
diyList: {
url: '/api/wdsxh/member/member/diy_list',
method: 'GET',
},
// 自定义装修搜索会员列表
diySearchList: {
url: '/api/wdsxh/search/search_member_name',
method: 'GET',
},
// 会员地图会员列表
memberMapList: {
url: '/api/wdsxh/member/member/member_map_list',
method: 'GET',
},
// 会员单位
units: {
url: '/api/wdsxh/member/member/unit',
method: 'GET',
},
// 会员详情
details: {
url: '/api/wdsxh/member/member/details',
auth: true,
method: 'GET',
},
// 企业详情
enterprise: {
url: '/api/wdsxh/member/member/company_details',
auth: true,
method: 'GET',
},
// 团体详情
organization: {
url: '/api/wdsxh/member/member/organize_details',
auth: true,
method: 'GET',
},
// 对外限制
limit: {
url: '/api/wdsxh/member/member/auth',
method: 'GET',
},
// 会员级别
level: {
url: '/api/wdsxh/member/member_apply/level_list',
method: 'GET',
},
// 入会类型
type: {
url: '/api/wdsxh/config/join_config',
method: 'GET',
},
// 会员状态
state: {
url: '/api/wdsxh/user_wechat/apply_member_state',
auth: true,
method: 'GET',
},
// 入会字段
field: {
url: '/api/wdsxh/member/join_config/custom_field',
auth: true,
method: 'GET',
},
// 入会申请
apply: {
url: '/api/wdsxh/member/member_apply/submit',
auth: true,
method: 'POST',
},
// 申请详情
applyDetails: {
url: '/api/wdsxh/member/member_apply/details',
auth: true,
method: 'GET',
},
// 入会申请验证
applyCheck: {
url: '/api/wdsxh/member/member_apply/check_mobile_use',
auth: true,
method: 'GET',
},
// 会员资料
information: {
url: '/api/wdsxh/member/member/information_details',
auth: true,
method: 'GET',
},
// 编辑资料
editInformation: {
url: '/api/wdsxh/member/member/submit_information',
auth: true,
method: 'POST',
},
// 会费缴纳详情
payDetails: {
url: '/api/wdsxh/member/member/membershipPayDetail',
auth: true,
method: 'GET',
},
// 线上缴费
accountInfo: {
url: '/api/wdsxh/association/public_account_information',
auth: true,
method: 'GET',
},
// 线上缴费
payOnline: {
url: '/api/wdsxh/member/member/membershipPay',
auth: true,
method: 'POST',
},
// 线下缴费
payOffline: {
url: '/api/wdsxh/member/member/submit_pay_voucher',
auth: true,
method: 'POST',
},
// 免费入会
payFree: {
url: '/api/wdsxh/member/member/freeMembershipPay',
auth: true,
method: 'POST',
},
// 证书查询
certificate: {
url: '/api/wdsxh/member/cert/index',
auth: true,
method: 'GET',
},
// 行业分类
industry: {
url: '/api/wdsxh/member/member_apply/industry_category_list',
method: 'GET',
},
// 通讯录
addressBook: {
url: '/api/wdsxh/member/member/address_book',
auth: true,
method: 'GET',
},
// 通讯录限制
addressBookLimit: {
url: '/api/wdsxh/member/member/address_book_auth',
auth: true,
method: 'GET',
},
// 推广会员列表
promotionList: {
url: '/api/wdsxh/member/promotion/index',
auth: true,
method: 'GET',
},
//会员权益
benefitsList: {
url: '/api/wdsxh/member/member_benefits/index',
method: 'GET',
},
//会员类型
typeList: {
url: '/api/wdsxh/member/member_benefits/join_config',
method: 'GET',
},
// 审核会员
examine: {
// 审核会员列表
list: {
url: '/api/wdsxh/member/member_apply_examine/index',
auth: true,
method: 'GET',
},
// 审核会员详情
details: {
url: '/api/wdsxh/member/member_apply_examine/details',
auth: true,
method: 'GET',
},
// 审核入会申请
examineApply: {
url: '/api/wdsxh/member/member_apply_examine/examine',
auth: true,
method: 'POST',
},
// 审核线下支付
examineOffline: {
url: '/api/wdsxh/member/member_apply_examine/offline_examine',
auth: true,
method: 'POST',
},
},
// 产品维护
product: {
// 产品列表
list: {
url: '/api/wdsxh/company_goods/index',
auth: true,
method: 'GET',
},
// 添加产品
add: {
url: '/api/wdsxh/company_goods/add',
auth: true,
method: 'POST',
},
// 删除产品
delete: {
url: '/api/wdsxh/company_goods/del',
auth: true,
method: 'POST',
},
// 修改产品
edit: {
url: '/api/wdsxh/company_goods/edit',
auth: true,
method: 'POST',
},
// 编辑详情
editDetails: {
url: '/api/wdsxh/company_goods/detail',
auth: true,
method: 'GET',
},
// 产品详情
details: {
url: '/api/wdsxh/member/member/companyGoodsDetail',
method: 'GET',
},
},
};

63
common/api/mine.js Normal file
View File

@@ -0,0 +1,63 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> 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',
},
},
};

58
common/api/points.js Normal file
View File

@@ -0,0 +1,58 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 积分商城接口列表文件 开发者: 麦沃德科技-半夏
// +----------------------------------------------------------------------
export default {
// 积分信息
info: {
url: '/api/wdsxh/points/my_points/index',
method: 'GET',
},
// 商品列表
goodsList: {
url: '/api/wdsxh/points/goods/index',
method: 'GET',
},
// 商品详情
goodsDetails: {
url: '/api/wdsxh/points/goods/detail',
method: 'GET',
},
// 订单创建
createOrder: {
url: '/api/wdsxh/points/order/submitSettlement',
auth: true,
method: 'POST',
},
// 订单列表
orderList: {
url: '/api/wdsxh/points/order/index',
auth: true,
method: 'GET',
},
// 订单详情
orderDetails: {
url: '/api/wdsxh/points/order/detail',
auth: true,
method: 'GET',
},
// 确认收货
orderConfirm: {
url: '/api/wdsxh/points/order/confirmReceipt',
auth: true,
method: 'POST',
},
// 积分明细
record: {
url: '/api/wdsxh/points/user_wechat_points_log/index',
method: 'GET',
},
};

View File

@@ -0,0 +1,47 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 问卷调查接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 问卷分类
questionCategory: {
url: '/api/wdsxh/questionnaire/category/index',
method: 'GET',
},
// 问卷列表
questionList: {
url: '/api/wdsxh/questionnaire/index/index',
method: 'GET',
},
// 问卷详情
questionDetails: {
url: '/api/wdsxh/questionnaire/index/details',
method: 'GET',
},
// 问卷提交
questionAdd: {
url: '/api/wdsxh/questionnaire/index/add_topic',
auth: true,
method: 'POST',
},
// 问卷反馈详情
renderDetails: {
url: '/api/wdsxh/questionnaire/index/render_details',
auth: true,
method: 'GET',
},
// 问卷权限
limit: {
url: '/api/wdsxh/questionnaire/index/answer_sheet_status',
auth: true,
method: 'GET',
},
};

54
common/api/sequence.js Normal file
View File

@@ -0,0 +1,54 @@
// +----------------------------------------------------------------------
// | 麦沃德科技赋能开发者,助力商协会发展
// +----------------------------------------------------------------------
// | Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
// +----------------------------------------------------------------------
// | 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
// +----------------------------------------------------------------------
// | Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
// +----------------------------------------------------------------------
// | 活动接龙接口列表文件 开发者: 麦沃德科技-暴雨
// +----------------------------------------------------------------------
export default {
// 接龙列表
chainsList: {
url: '/api/wdsxh/jielong/index',
method: 'GET',
},
// 接龙详情
chainsDetails: {
url: '/api/wdsxh/jielong/details',
method: 'GET',
},
// 限定接龙资格
chainsSeniority: {
url: '/api/wdsxh/jielong/jielong_state',
auth: true,
method: 'GET',
},
// 获取反馈结果
feedbackResult: {
url: '/api/wdsxh/jielong/feedback_state',
auth: true,
method: 'GET',
},
// 提交反馈
addFeedback: {
url: '/api/wdsxh/jielong/add',
auth: true,
method: 'POST',
},
// 反馈详情
feedbackDetails: {
url: '/api/wdsxh/jielong/feedback_details',
auth: true,
method: 'POST',
},
// 接龙权限
limit: {
url: '/api/wdsxh/jielong/jielong_config',
auth: true,
method: 'GET',
},
};