Coming soon...
20 |在线IP
7 |显示表项: {include file='table/checkbox.tpl'}
17 |├── .gitmodules ├── public ├── assets │ ├── js │ │ └── login.js │ ├── public │ │ ├── img │ │ │ ├── blue.png │ │ │ └── blue@2x.png │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── css │ │ │ └── sticky-footer-navbar.css │ ├── fonts │ │ ├── bk_font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── source-sans-pro-300.woff2 │ │ └── source-sans-pro-600.woff2 │ ├── materialize │ │ ├── font │ │ │ ├── Material_Icons.woff2 │ │ │ ├── roboto │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ └── Roboto-Regular.woff2 │ │ │ └── material-design-icons │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ ├── Material-Design-Icons.woff2 │ │ │ │ └── cd-top-arrow.svg │ │ └── css │ │ │ └── style.css │ └── css │ │ ├── noscript.css │ │ └── ie9.css ├── theme │ └── material │ │ ├── js │ │ └── shake.js │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── bower.json │ │ │ └── LICENSE.md │ │ ├── css │ │ ├── images │ │ │ ├── arrow.png │ │ │ └── bg │ │ │ │ ├── red.jpg │ │ │ │ ├── amber.jpg │ │ │ │ ├── amber2.jpg │ │ │ │ ├── amber3.jpg │ │ │ │ ├── amber4.jpg │ │ │ │ ├── brand.jpg │ │ │ │ ├── green.jpg │ │ │ │ ├── purple.jpg │ │ │ │ └── teal.jpg │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ ├── flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 │ │ │ └── README.md │ │ └── icon.css │ │ ├── editor │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── logos │ │ │ │ ├── vi.png │ │ │ │ ├── editormd-logo-16x16.png │ │ │ │ ├── editormd-logo-24x24.png │ │ │ │ ├── editormd-logo-32x32.png │ │ │ │ ├── editormd-logo-48x48.png │ │ │ │ ├── editormd-logo-57x57.png │ │ │ │ ├── editormd-logo-64x64.png │ │ │ │ ├── editormd-logo-72x72.png │ │ │ │ ├── editormd-logo-96x96.png │ │ │ │ ├── editormd-favicon-16x16.ico │ │ │ │ ├── editormd-favicon-24x24.ico │ │ │ │ ├── editormd-favicon-32x32.ico │ │ │ │ ├── editormd-favicon-48x48.ico │ │ │ │ ├── editormd-favicon-64x64.ico │ │ │ │ ├── editormd-logo-114x114.png │ │ │ │ ├── editormd-logo-120x120.png │ │ │ │ ├── editormd-logo-144x144.png │ │ │ │ ├── editormd-logo-180x180.png │ │ │ │ ├── editormd-logo-240x240.png │ │ │ │ └── editormd-logo-320x320.png │ │ │ ├── loading@2x.gif │ │ │ └── loading@3x.gif │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── editormd-logo.eot │ │ │ ├── editormd-logo.ttf │ │ │ ├── editormd-logo.woff │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ └── editormd-logo.svg │ │ ├── lib │ │ │ ├── codemirror │ │ │ │ ├── theme │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── neo.css │ │ │ │ │ └── eclipse.css │ │ │ │ ├── addon │ │ │ │ │ ├── display │ │ │ │ │ │ └── fullscreen.css │ │ │ │ │ ├── search │ │ │ │ │ │ └── matchesonscrollbar.css │ │ │ │ │ ├── fold │ │ │ │ │ │ └── foldgutter.css │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialog.css │ │ │ │ │ ├── hint │ │ │ │ │ │ └── show-hint.css │ │ │ │ │ ├── mode │ │ │ │ │ │ └── multiplex_test.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── yaml-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ └── css-lint.js │ │ │ │ │ ├── edit │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ └── tern │ │ │ │ │ │ └── worker.js │ │ │ │ ├── mode │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ └── tiddlywiki.css │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ └── tiki.css │ │ │ │ │ └── diff │ │ │ │ │ │ └── diff.js │ │ │ │ ├── bower.json │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── LICENSE │ │ │ └── jquery.flowchart.min.js │ │ ├── .gitignore │ │ └── LICENSE │ │ ├── images │ │ ├── samples │ │ │ ├── landscape.jpg │ │ │ └── portrait.jpg │ │ └── users │ │ │ ├── avatar-001.jpg │ │ │ └── trafficbar.png │ │ └── assets │ │ ├── js │ │ ├── header.js │ │ ├── modal.js │ │ └── form-textarea.js │ │ └── js-project │ │ ├── ui-snackbar.js │ │ └── ui-progress.js ├── favicon.ico ├── images │ ├── bg.jpg │ ├── node.gif │ ├── qqpay.jpg │ ├── Avatar.jpg │ ├── alipay.jpg │ ├── authlogo.jpg │ ├── c_ios_1.jpg │ ├── c_ios_2.jpg │ ├── c_ios_3.jpg │ ├── c_ios_4.jpg │ ├── c_mac_1.png │ ├── c_mac_2.png │ ├── c_mac_3.png │ ├── c_mac_4.png │ ├── c_mac_5.png │ ├── c_mac_6.png │ ├── c_mac_7.png │ ├── c_win_1.png │ ├── c_win_2.png │ ├── c_win_3.png │ ├── c_win_4.png │ ├── c_win_5.png │ ├── c_win_6.png │ ├── c_win_7.png │ ├── c_win_8.png │ ├── overlay.png │ ├── weixin.jpg │ ├── c-linux-1.png │ ├── c-linux-2.png │ ├── c-linux-3.png │ ├── c-linux-4.png │ ├── c-linux-5.png │ ├── c-linux-6.png │ ├── c-linux-7.png │ ├── email_nrcy.jpg │ ├── logo_white.png │ ├── prefix │ │ ├── 不丹.png │ │ ├── 东帝汶.png │ │ ├── 中国.png │ │ ├── 中非.png │ │ ├── 丹麦.png │ │ ├── 乌克兰.png │ │ ├── 乌干达.png │ │ ├── 乌拉圭.png │ │ ├── 乍得.png │ │ ├── 也门.png │ │ ├── 以色列.png │ │ ├── 伊拉克.png │ │ ├── 伊朗.png │ │ ├── 伯利兹.png │ │ ├── 佛得角.png │ │ ├── 俄罗斯.png │ │ ├── 冈比亚.png │ │ ├── 冰岛.png │ │ ├── 刚果.png │ │ ├── 利比亚.png │ │ ├── 加拿大.png │ │ ├── 加纳.png │ │ ├── 加蓬.png │ │ ├── 匈牙利.png │ │ ├── 南苏丹.png │ │ ├── 南非洲.png │ │ ├── 卡塔尔.png │ │ ├── 卢旺达.png │ │ ├── 卢森堡.png │ │ ├── 印度.png │ │ ├── 叙利亚.png │ │ ├── 古巴.png │ │ ├── 台湾.png │ │ ├── 吉布提.png │ │ ├── 喀麦隆.png │ │ ├── 图瓦卢.png │ │ ├── 土耳其.png │ │ ├── 圣普.png │ │ ├── 圭亚那.png │ │ ├── 埃及.png │ │ ├── 塞舌尔.png │ │ ├── 墨西哥.png │ │ ├── 多哥.png │ │ ├── 奥地利.png │ │ ├── 安巴.png │ │ ├── 安道尔.png │ │ ├── 尼日尔.png │ │ ├── 尼泊尔.png │ │ ├── 巴哈马.png │ │ ├── 巴拉圭.png │ │ ├── 巴拿马.png │ │ ├── 巴林.png │ │ ├── 巴西.png │ │ ├── 布隆迪.png │ │ ├── 希腊.png │ │ ├── 帕劳.png │ │ ├── 德国.png │ │ ├── 意大利.png │ │ ├── 挪威.png │ │ ├── 摩洛哥.png │ │ ├── 摩纳哥.png │ │ ├── 文莱.png │ │ ├── 斐济.png │ │ ├── 新加坡.png │ │ ├── 新西兰.png │ │ ├── 日本.png │ │ ├── 智利.png │ │ ├── 朝鲜.png │ │ ├── 柬埔寨.png │ │ ├── 比利时.png │ │ ├── 汤加.png │ │ ├── 法国.png │ │ ├── 波兰.png │ │ ├── 波黑.png │ │ ├── 泰国.png │ │ ├── 海地.png │ │ ├── 爱尔兰.png │ │ ├── 牙买加.png │ │ ├── 特多.png │ │ ├── 瑙鲁.png │ │ ├── 瑞典.png │ │ ├── 瑞士.png │ │ ├── 科威特.png │ │ ├── 科摩罗.png │ │ ├── 科索沃.png │ │ ├── 秘鲁.png │ │ ├── 突尼斯.png │ │ ├── 立陶宛.png │ │ ├── 索马里.png │ │ ├── 约旦.png │ │ ├── 缅甸.png │ │ ├── 美国.png │ │ ├── 老挝.png │ │ ├── 肯尼亚.png │ │ ├── 芬兰.png │ │ ├── 苏丹.png │ │ ├── 苏里南.png │ │ ├── 英国.png │ │ ├── 荷兰.png │ │ ├── 莱索托.png │ │ ├── 菲律宾.png │ │ ├── 萨摩亚.png │ │ ├── 葡萄牙.png │ │ ├── 蒙古.png │ │ ├── 西班牙.png │ │ ├── 贝宁.png │ │ ├── 赞比亚.png │ │ ├── 越南.png │ │ ├── 阿富汗.png │ │ ├── 阿曼.png │ │ ├── 阿根廷.png │ │ ├── 阿联酋.png │ │ ├── 韩国.png │ │ ├── 香港.png │ │ ├── 马其顿.png │ │ ├── 马拉维.png │ │ ├── 马耳他.png │ │ ├── 马里.png │ │ ├── 黎巴嫩.png │ │ ├── 黑山.png │ │ ├── v2ray.png │ │ ├── 乌兹别克斯坦.png │ │ ├── 亚美尼亚.png │ │ ├── 保加利亚.png │ │ ├── 克罗地亚.png │ │ ├── 几内亚比绍.png │ │ ├── 列支敦士登.png │ │ ├── 刚果(金).png │ │ ├── 利比里亚.png │ │ ├── 博茨瓦纳.png │ │ ├── 印度尼西亚.png │ │ ├── 危地马拉.png │ │ ├── 厄瓜多尔.png │ │ ├── 厄立特里亚.png │ │ ├── 吉尔吉斯斯坦.png │ │ ├── 哈萨克斯坦.png │ │ ├── 哥伦比亚.png │ │ ├── 哥斯达黎加.png │ │ ├── 土库曼斯坦.png │ │ ├── 圣卢西亚.png │ │ ├── 圣马力诺.png │ │ ├── 坦桑尼亚.png │ │ ├── 埃塞俄比亚.png │ │ ├── 基里巴斯.png │ │ ├── 塔吉克斯坦.png │ │ ├── 塞内加尔.png │ │ ├── 塞尔维亚.png │ │ ├── 塞拉利昂.png │ │ ├── 塞浦路斯.png │ │ ├── 多米尼克.png │ │ ├── 多米尼加.png │ │ ├── 委内瑞拉.png │ │ ├── 孟加拉国.png │ │ ├── 密克罗尼西亚.png │ │ ├── 尼加拉瓜.png │ │ ├── 尼日利亚.png │ │ ├── 巴基斯坦.png │ │ ├── 巴巴多斯.png │ │ ├── 布基纳法索.png │ │ ├── 所罗门岛.png │ │ ├── 拉脱维亚.png │ │ ├── 捷克共和国.png │ │ ├── 摩尔多瓦.png │ │ ├── 斯威士兰.png │ │ ├── 斯洛伐克.png │ │ ├── 斯洛文尼亚.png │ │ ├── 斯里兰卡.png │ │ ├── 格林纳达.png │ │ ├── 格鲁吉亚.png │ │ ├── 梵蒂冈城.png │ │ ├── 毛里塔尼亚.png │ │ ├── 毛里求斯.png │ │ ├── 沙特阿拉伯.png │ │ ├── 津巴布韦.png │ │ ├── 洪都拉斯.png │ │ ├── 澳大利亚.png │ │ ├── 爱沙尼亚.png │ │ ├── 玻利维亚.png │ │ ├── 瓦努阿图.png │ │ ├── 白俄罗斯.png │ │ ├── 科特迪瓦.png │ │ ├── 纳米比亚.png │ │ ├── 罗马尼亚.png │ │ ├── 莫桑比克.png │ │ ├── 萨尔瓦多.png │ │ ├── 赤道几内亚.png │ │ ├── 阿塞拜疆.png │ │ ├── 阿尔及利亚.png │ │ ├── 阿尔巴尼亚.png │ │ ├── 马尔代夫.png │ │ ├── 马来西亚.png │ │ ├── 马绍尔群岛.png │ │ ├── 马达加斯加.png │ │ ├── unknown.png │ │ ├── 圣基茨和尼维斯.png │ │ ├── 巴布亚新几内亚.png │ │ └── 圣文森特和格林纳丁斯.png │ ├── c_android_1.jpg │ ├── c_android_2.jpg │ ├── c_android_3.jpg │ ├── c_android_4.jpg │ ├── c_android_5.jpg │ ├── c_android_6.jpg │ ├── c_android_7.jpg │ └── c_android_8.jpg ├── vuedist │ └── favicon.ico ├── index.php └── robots.txt ├── storage └── framework │ ├── views │ └── .gitignore │ └── smarty │ ├── cache │ └── .gitignore │ └── compile │ └── .gitignore ├── .gitattributes ├── composer.phar ├── app ├── Services │ ├── Cache.php │ ├── Auth │ │ ├── File.php │ │ ├── Base.php │ │ ├── Token.php │ │ └── JwtToken.php │ ├── Mail │ │ ├── Base.php │ │ ├── NullMail.php │ │ └── Ses.php │ ├── Token │ │ ├── Token.php │ │ └── Base.php │ ├── Gateway │ │ └── YftPayConfig.php │ ├── Aws │ │ ├── Client.php │ │ └── Factory.php │ ├── Auth.php │ ├── Jwt.php │ ├── Analytic.php │ ├── Boot.php │ ├── Slim.php │ ├── RedisClient.php │ ├── Factory.php │ ├── View.php │ └── Password.php ├── Utils │ ├── Discord.php │ ├── Telegram.php │ ├── Pay.php │ ├── Response.php │ ├── Check.php │ ├── ConfRender.php │ ├── Cookie.php │ ├── Helper.php │ └── Tuling.php ├── Models │ ├── Link.php │ ├── Config.php │ ├── Paylist.php │ ├── RadiusNas.php │ ├── Token.php │ ├── CheckInLog.php │ ├── RadiusBan.php │ ├── RadiusRadAcct.php │ ├── RadiusRadCheck.php │ ├── PasswordReset.php │ ├── RadiusRadPostauth.php │ ├── NodeOnlineLog.php │ ├── RadiusRadUserGroup.php │ ├── Role.php │ ├── DetectRule.php │ ├── Disconnect.php │ ├── EmailVerify.php │ ├── InviteCode.php │ ├── Model.php │ ├── Ann.php │ ├── YftOrder.php │ ├── Code.php │ ├── Auto.php │ ├── BlockIp.php │ ├── Payback.php │ ├── NodeInfoLog.php │ ├── Ticket.php │ ├── UnblockIp.php │ ├── LoginIp.php │ ├── TelegramSession.php │ ├── Coupon.php │ ├── Bought.php │ ├── Ip.php │ ├── DetectLog.php │ ├── TrafficLog.php │ └── Relay.php ├── Controllers │ ├── ResController.php │ └── BaseController.php └── Middleware │ ├── Guest.php │ ├── Admin.php │ ├── Auth.php │ └── Api.php ├── uim-index-dev ├── babel.config.js ├── public │ └── favicon.ico ├── src │ ├── assets │ │ └── logo.png │ ├── mixins │ │ ├── userSetMixin.js │ │ └── userMixin.js │ ├── views │ │ ├── User.vue │ │ ├── Password.vue │ │ └── Root.vue │ ├── components │ │ ├── panel │ │ │ ├── UserAnnouncement.vue │ │ │ └── UserSettings.vue │ │ ├── table.vue │ │ ├── tooltip.vue │ │ ├── messager.vue │ │ ├── anchor.vue │ │ └── payment │ │ │ └── code.vue │ └── directives │ │ └── uimclip.js ├── vue.config.js ├── createIndexTpl.sh ├── .editorconfig └── .gitignore ├── resources ├── lang │ └── en │ │ └── auth.php ├── views │ └── material │ │ ├── table │ │ ├── js_delete.tpl │ │ ├── js_1.tpl │ │ ├── table.tpl │ │ ├── checkbox.tpl │ │ ├── lang_chinese.tpl │ │ └── js_2.tpl │ │ ├── user │ │ ├── yft.tpl │ │ ├── sys.tpl │ │ ├── pay_success.tpl │ │ └── disable.tpl │ │ ├── reg_tos.tpl │ │ ├── mylivechat.tpl │ │ ├── email_nrcy.tpl │ │ ├── dialog.tpl │ │ └── admin │ │ ├── sys.tpl │ │ ├── ip │ │ ├── alive.tpl │ │ ├── login.tpl │ │ └── unblock.tpl │ │ ├── trafficlog.tpl │ │ ├── detect │ │ └── log.tpl │ │ └── ticket │ │ └── index.tpl └── email │ └── test.tpl ├── sql ├── fix_unable_to_reg.sql ├── clean.sql └── yft_order_info.sql ├── xcat ├── .gitignore ├── bootstrap.php ├── .project ├── .github └── issue_template.md ├── LICENSE ├── composer.json └── .travis.yml /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/login.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/theme/material/js/shake.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /storage/framework/smarty/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/smarty/compile/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/composer.phar -------------------------------------------------------------------------------- /app/Services/Cache.php: -------------------------------------------------------------------------------- 1 | 'Login', 6 | 'Register' => 'Register' 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/views/material/table/js_delete.tpl: -------------------------------------------------------------------------------- 1 | table_1 2 | .row('#row_1_' + deleteid) 3 | .remove() 4 | .draw(); 5 | -------------------------------------------------------------------------------- /uim-index-dev/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/uim-index-dev/public/favicon.ico -------------------------------------------------------------------------------- /uim-index-dev/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/uim-index-dev/src/assets/logo.png -------------------------------------------------------------------------------- /uim-index-dev/vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | publicPath: '/vuedist/', 3 | outputDir: '../public/vuedist/' 4 | } 5 | -------------------------------------------------------------------------------- /public/assets/public/img/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/public/img/blue@2x.png -------------------------------------------------------------------------------- /public/images/prefix/圣文森特和格林纳丁斯.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/images/prefix/圣文森特和格林纳丁斯.png -------------------------------------------------------------------------------- /uim-index-dev/createIndexTpl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | npm run build 4 | cp -u ../public/vuedist/index.html ../resources/views/material/index.tpl -------------------------------------------------------------------------------- /public/assets/fonts/bk_font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/bk_font/FontAwesome.otf -------------------------------------------------------------------------------- /public/theme/material/css/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/arrow.png -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/red.jpg -------------------------------------------------------------------------------- /public/assets/fonts/source-sans-pro-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/source-sans-pro-300.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/source-sans-pro-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/source-sans-pro-600.woff2 -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/amber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/amber.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/amber2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/amber2.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/amber3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/amber3.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/amber4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/amber4.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/brand.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/green.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/purple.jpg -------------------------------------------------------------------------------- /public/theme/material/css/images/bg/teal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/images/bg/teal.jpg -------------------------------------------------------------------------------- /sql/fix_unable_to_reg.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `user` CHANGE `plan` `plan` VARCHAR(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'A'; 2 | -------------------------------------------------------------------------------- /public/theme/material/editor/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/loading.gif -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/vi.png -------------------------------------------------------------------------------- /public/assets/fonts/bk_font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/bk_font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/fonts/bk_font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/bk_font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/materialize/font/Material_Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/Material_Icons.woff2 -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/theme/material/editor/images/loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/loading@2x.gif -------------------------------------------------------------------------------- /public/theme/material/editor/images/loading@3x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/loading@3x.gif -------------------------------------------------------------------------------- /public/theme/material/images/samples/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/images/samples/landscape.jpg -------------------------------------------------------------------------------- /public/theme/material/images/samples/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/images/samples/portrait.jpg -------------------------------------------------------------------------------- /public/theme/material/images/users/avatar-001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/images/users/avatar-001.jpg -------------------------------------------------------------------------------- /public/theme/material/images/users/trafficbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/images/users/trafficbar.png -------------------------------------------------------------------------------- /public/assets/fonts/bk_font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/bk_font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/fonts/bk_font/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/fonts/bk_font/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/editormd-logo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/editormd-logo.eot -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/editormd-logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/editormd-logo.ttf -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/editormd-logo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/editormd-logo.woff -------------------------------------------------------------------------------- /uim-index-dev/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,jsx,ts,tsx,vue}] 2 | indent_style = space 3 | indent_size = 2 4 | trim_trailing_whitespace = true 5 | insert_final_newline = true 6 | -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /public/assets/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /public/theme/material/css/fonts/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/fonts/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /public/theme/material/css/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /public/theme/material/css/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/assets/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/theme/material/css/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/theme/material/editor/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/theme/material/css/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/css/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-16x16.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-24x24.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-32x32.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-48x48.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-57x57.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-64x64.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-72x72.png -------------------------------------------------------------------------------- /public/theme/material/editor/images/logos/editormd-logo-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalaolala/sspanelv3moduim/HEAD/public/theme/material/editor/images/logos/editormd-logo-96x96.png -------------------------------------------------------------------------------- /public/theme/material/editor/lib/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /app/Models/Link.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |This is a testing mail.
8 |Send from {$config["appName"]}
9 |{$time}
10 | 11 | -------------------------------------------------------------------------------- /uim-index-dev/src/views/User.vue: -------------------------------------------------------------------------------- 1 | 2 |
3 | 如果发现“收信查询”中没有找到邮件,请联系管理员:
6 | {if $config["admin_contact1"]!=null} 7 || {$value} | 6 | {/foreach} 7 |
|---|
| {$value} | 13 | {/foreach} 14 |
12 | {{tip.name}}
8 |{{tip.content}}
9 |Coming soon...
20 |Coming soon...
20 |Additional information
Aliquam in pharetra leo. In congue, massa sed elementum dictum, justo quam efficitur risus, in posuere mi orci ultrices diam.
显示表项: {include file='table/checkbox.tpl'}
17 |这里是最近的登录记录。
17 |显示表项: {include file='table/checkbox.tpl'}
18 |这里是最近的解封IP记录。
17 |显示表项: {include file='table/checkbox.tpl'} 18 |
19 |部分节点不支持流量记录.
17 |显示表项: 18 | {include file='table/checkbox.tpl'} 19 |
20 |系统中所有审计记录。
23 |显示表项: 24 | {include file='table/checkbox.tpl'} 25 |
26 |系统中的工单
18 |显示表项: 19 | {include file='table/checkbox.tpl'} 20 |
21 |已充值成功 {$money} 元!请进入 套餐购买 页面来选购您的套餐。
25 | {else} 26 |正在处理您的支付,请您稍等。此页面会自动刷新,或者您可以选择关闭此页面,余额将自动到账
27 | 30 | {/if} 31 |您由于某些原因而被管理员禁用了账户,请联系管理员。
19 | {if $config["enable_admin_contact"] == 'true'} 20 |管理员联系方式:
21 | {if $config["admin_contact1"]!=null} 22 |