多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ### 用户自定义到期提示 #### URL > web/index.php?c=user&a=expire&do=setting #### 请求方式 > GET #### 请求参数 无 #### 返回数据 ``` { "message": { "errno": 0, "message": { "status_store_button": 0, //是否显示商城续费的按钮:0不显示;1显示 "status_store_redirect": 0, //自动跳转商城开关:0关闭;1开启 "notice": "您的账号已到期,请前往商城购买续费" //自定义到期提示语 } }, "redirect": "", "type": "ajax" } ``` ### 更改用户自定义到期提示语 #### URL > web/index.php?c=user&a=expire&do=save_expire&type=notice #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | notice | string | 否 | 提示语(可以为空) | - | #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "设置成功" }, "redirect": "", "type": "ajax" } ``` 错误: ``` { "message": { "errno": -1, "message": "设置失败" }, "redirect": "", "type": "ajax" } ``` ### 更改用户自定义到期状态(商城续费的按钮、自动跳转商城) #### URL > web/index.php?c=user&a=expire&do=change_status&type=status_store_redirect #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | type | string | 是 | 要更改的类型 | 商城续费的按钮:status_store_redirect;自动跳转商城:status_store_button | #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "设置成功" }, "redirect": "./index.php?c=user&a=expire&do=setting&", "type": "ajax" } ``` 错误: ``` { "message": { "errno": -1, "message": "设置失败" }, "redirect": "", "type": "ajax" } ```