| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- declare(strict_types=1);
- return json_decode(<<<'JSON'
- [
- {
- "type": "switch",
- "title": "系统通知",
- "field": "system_notify",
- "value": true,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "活动通知",
- "field": "activity_notify",
- "value": true,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "订单通知",
- "field": "order_notify",
- "value": true,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "物流通知",
- "field": "logistics_notify",
- "value": false,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "私信",
- "field": "private_message",
- "value": true,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "邮件通知",
- "field": "email_notify",
- "value": false,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "短信通知",
- "field": "sms_notify",
- "value": false,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "switch",
- "title": "未读消息提醒",
- "field": "unread_reminder",
- "value": false,
- "props": {
- "activeText": "开启",
- "inactiveText": "关闭"
- }
- },
- {
- "type": "inputNumber",
- "title": "公告保留天数",
- "field": "announcement_retention_days",
- "value": 90,
- "props": {
- "min": 1,
- "max": 365,
- "placeholder": "请输入公告保留天数"
- }
- },
- {
- "type": "inputNumber",
- "title": "通知保留天数",
- "field": "notification_retention_days",
- "value": 30,
- "props": {
- "min": 1,
- "max": 365,
- "placeholder": "请输入通知保留天数"
- }
- },
- {
- "type": "inputNumber",
- "title": "私信保留天数",
- "field": "private_message_retention_days",
- "value": 180,
- "props": {
- "min": 1,
- "max": 365,
- "placeholder": "请输入私信保留天数"
- }
- }
- ]
- JSON, true);
|